@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');*/

html{
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}
body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
.top-bar{
    background: #cc4d91;
    display: flex;
    padding: 5px 0;
}
.top-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar .top-left img{
    width: 25px;
}
.top-left{
    display: flex;
    align-items: center;
}
.top-left span{
    color: #f4f4f4;
    font-size: 18px;
    margin: 0px 5px;
}
.top-right{
    display: flex;
    align-items: center;
}
.top-right ul{
    display: flex;
}
.top-right ul li a{
    color: #f4f4f4;
    font-size: 16px;
}
.top-right ul li .hr-white{
    border-left: 2px solid #f4f4f4;
    height: 16px;
    margin: 0px 10px;
}
.web .hr-white{
    border-left: 2px solid #ca4b95;
    height: 25px;
}
.navbar{
    background: #f6c1d8;
    padding: 15px 0;
    transition: 2s ease-in-out;
}
.navbar.sticky{
    position: fixed;
    top: 0; left: 0;
    box-shadow: 0 0 15px #898989;
    width: 100%;
    z-index: 100;
    transition: 2s ease-in-out;
}

.alert{
    padding: 10px;
    background: red;
}
.alert li{
    color: white;
    font-size: 18px;
}
.message{
    padding: 10px;
    background: #52e352;
    color: white;
    font-size: 18px;
}


/*MOBİL NAV*/

.site{
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}
nav{
    border-top: 2px solid white;
    position: relative;
    width: 100%;
    background-color: #ECBC11;
}
nav ul{
    justify-content: center;
    display: flex;
    align-items: center;
    padding-inline-start: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
}
nav :where(li, li a){
    position: relative;
    text-align: center;
}
.has-child{
    width: 100%;
    padding: 4px 0;
}
nav li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: translateX(19px);
    font-size: 2em;
    transition: transform .3s, text-shadow .3s;
}
nav li a i{
    color: #f4f4f4;
    font-size: 25px;
}
nav li span{
    color: #f4f4f4;
    font-size: 12px;
}
nav ul li.active > a.sub-a{
    background-color: #042038;
    border-radius: 50%;
    margin-left: 20px;
}
nav li.has-child.active > a {
    animation: jump 1s both;
    transition: transform .3s 1s, background-color .1s 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes jump {
    0%{transform: translateY(-20px);}
    20%{transform: translateY(-40px);}
    40%{transform: translateY(-40px);}
    60%{transform: translateY(-75px);}
    80%{transform: translateY(-75px) scale(1.4);}
    97%{transform: translateY(-75px) scale(1.4);background-color: #1fbed0
    }
    100%{transform: translateY(-75px) scale(1);background-color: #1fbed0
    }
}
nav li.active > a > i {
    transform : scale(0.9);
    transition: transform .1s 1s;
}
nav li.has-child.active > a i{
    transform: scale(0);
}
nav .sub-menu{
    position: absolute;
    background-color: #11439c;
    left: -100%;
    top: -75px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    z-index: 10;
    transform: scale(1.5);
    clip-path: inset(0 120px 0 round 60px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
nav ul li.has-child.active > .sub-menu{
    clip-path: inset(0 0 0 0);
    transition: clip-path .3s;
    transition-delay: 1s;
}
nav .sub-menu li a{
    color: white;
    font-size: 2.5em;
    opacity: 0;
    border-radius: 50%;
    margin: 0;
    clip-path: inset(10px round 20px);
    transition: background-color .3s, color .3s, clip-path .3s;
}
nav .sub-menu li a.sub-li{
    transform: translateX(0px);
}

nav .sub-menu li{
    position: relative;
    border-radius: 100%;
}
nav .sub-menu li span{
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    font-size: 10px;
    color: #f4f4f4;
    font-weight: 500;
}

nav .sub-menu li a:hover{
    background-color: rgb(255 255 255 / 20%);
}

nav :where(li:nth-child(1)) .sub-menu{
    left: 30px;
    right: auto;
    clip-path: inset(0 100% 0 0);
}
nav :where(li:nth-child(2)) .sub-menu{
    left: 30px;
    right: auto;
    clip-path: inset(0 100% 0 0);
}

/*MOBİL NAV*/




#scrollToTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background-color: #d4b36c;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}
#scrollToTopBtn:hover {background-color: #555;}
.floating-btn {
    position: fixed;
    left: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}
.floating-btn img {width: 28px;height: 28px;}
.whatsapp {bottom: 100px;background-color: #fdf0f6;}
.phone {bottom: 25px;background-color: #cc4d91;}

.video-card{
    position: relative;
    width: 100%;
}
.slider-video{
    width: 100%;
    height: 700px;
    object-fit: cover;
}
.video-filter{
    width: 100%;
    background: black;
    opacity: 0.3;
    position: absolute;
    top: 0;
    bottom: 0;
}
.space.sticky{
    margin-top: 100px;
}
.navbar-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pixel{
    width: 92%;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar .logo img{
    width: 220px;
}
.navbar ul{
    display: flex;
    align-items: center;
}
.navbar ul >li >a{
    display: block;
    color: #ca4b95;
    font-size: 18px;
    font-weight: 500;
}
.navbar ul >li{
    margin-right: 25px;
    position: relative;
    display: flex;
    align-items: center;
}
.navbar ul ul{
    background: #f4f4f4;
    position: absolute;
    bottom: -150px;
    left: -15px;
    padding: 10px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    width: 250px;
    display: block;
    transition: 0.5s ease-in;
}
.navbar ul ul li{
    line-height: 3;
    height: auto;
}
.menu-hr{
    width: 100%;
    border-bottom: 2px solid #1FBFD1;
}
.navbar ul ul li a{
    color: #898989;
    font-size: 16px;
}
.navbar ul >li:hover ul{
    opacity: 1;
    visibility: initial;
}
.lang{
    position: relative;
}
.lang a{
    color: #f4f4f4;
    font-size: 14px;
    transform: translateY(-28px);
}
.lang img{
    width: 23px;
    height: 23px;
}
#world{
    background: #ECBC11;
    position: absolute;
    top: -26px;
    left: -35px;
    border-bottom-left-radius: 40%;
    border-bottom-right-radius: 40%;
    padding: 5px;
    height: 35px;
    display: flex;
    align-items: end;
}
.menu{
    display: grid;
}
.menu a{
    color: #cc4d91;
}
.menu img{
    width: 40px;
}

/*İNDEX*/
.slider-wrapper{
    width: 100%;
    height: auto;
    background: #fff;
}
.slider-wrapper img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.index-randevu{
    transform: translateY(-40px);
}
.randevu-img-container{
    background: #ECBC11;
    padding: 20px;
    width: 550px;
    height: 360px;
    margin: 0px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.randevu-img-card{
    position: relative;
    height: 100%;
    border: 2px solid #1FBFD1;
}
.randevu-img-card img{
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: 0;
    left: -55px;
}
.randevu-text{
    position: absolute;
    right: 5px;
    top: 10px;
    display: grid;
    width: 40%;
    text-align: end;
    justify-content: end;
    align-items: center;
    height: 88%;
}
.randevu-button{
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f4f4f4;
    display: flex;
    width: 100%;
    height: 40px;
}
.randevu-text h1{
    color: #f4f4f4;
    font-weight: 200;
    font-style: italic;
    font-size: 30px;
}
.randevu-text h2{
    color: #f4f4f4;
    font-weight: 600;
    font-style: italic;
    font-size: 22px;
}
.randevu-button-left a{
    color: #898989;
}
.randevu-text h1 strong{
    text-transform: uppercase;
}
.randevu-button-right{
    background: #1FBFD1;
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f4f4f4;
    font-size: 20px;
    font-style: italic;
}
.randevu-button-left{
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-style: italic;
}
.lang #google_element{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: -5px;
    left: -70px;
    transition: .5s ease-in;
}
.lang:hover #google_element{
    opacity: 1;
    visibility: initial;
}
.online-container{
    background: #cc4d91;
    height: 357px;
    width: 100%;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.online-card{
    position: relative;
    height: calc(100% - 45px);
    border: 3px solid #f6c1d8;
    padding: 20px;
}
.online-card h1{
    color: #f4f4f4;
    margin: 0;
    font-weight: 500;
    padding: 2px 10px;
}
.online-card span{
    font-size: 16px;
    padding: 2px 10px;
    color: #f4f4f4;
    font-weight: 200;
    font-style: italic;
}
.online-card form{
    margin-top: 40px;
}
.online-card input{
    padding: 8px;
    margin: 8px 0;
    width: 28%;
    height: 35px;
    outline: none;
    border: none;
    color: rgba(0,0,0,0.5);
    font-style: italic;
}
.online-card select{
    padding: 8px;
    margin: 8px 0;
    width: 60%;
    height: 45px;
    outline: none;
    border: none;
    color: rgba(0,0,0,0.5);
    font-style: italic;
}
.online-button{
    padding: 8px;
    margin: 8px 0;
    width: 30%;
    height: 45px;
    font-style: italic;
    color: #fff;
    background: #cc4d91;
    border: 2px solid #f6c1d8;
}
.online-card select.online-select{
    width: 30%;
    height: 50px;
}
#container{
    padding: 15px 0;
    background-image: url(../images/bg.jpg);
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.container-2{
    display: flex;
}
.text-card h1{
    text-align: end;
    font-size: 45px;
    color: #5b5b5b;
    font-style: italic;
    font-weight: 600;
    margin: 0;
}
.text-card p{
    text-align: justify;
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
}
.text-card{
    width: 55%;
    padding: 0px 40px;
    display: flex;
    justify-content: end;
    align-items: center;
}
.card-text{
    width: 90%;
}
.image-card{
    width: 45%;
}
.image-card img{
    width: 100%;
    transform: translate(-36px,-40px);
    filter: grayscale(1);
}
#image{
    padding: 15px 0;
    background: #fbfbfb;
}
.carousel-cell{
    width: 20%;
    height: 200px;
    margin: 0px 10px;
}
.carousel-cell img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
#genesiste{
    background: #f9d8e7;
    padding: 50px 0;
}
#genesiste.images{
    background: #f3c0d9;
    padding: 110px 0 110px 0;
}
#genesis{
    background: #e6e6e6;
}
.genesis-title{
    padding: 10px;
}
.genesis-title h1{
    font-size: 25px;
    font-style: italic;
    letter-spacing: 1.5px;
    color: #c05589;
    margin: 0;
    font-weight: 600;
}
.genesis-alt{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}
.genesis-button{
    background: #c6478a;
    height: 40px;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.genesis-button a{
    color: #f4f4f4;
    font-size: 20px;
    font-style: italic;
}
.genesis-cell{
    width: 25%;
    height: 275px;
    margin: 30px 10px;
}
.genesis-img img{
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: 0;
    z-index: 10;
    left: -40px;
}
.genesis-bg{
    background: #ECBC11;
    width: 78%;
    height: 80%;
    position: absolute;
    border: 2px solid #1FBFD1;
    z-index: 1;
    bottom: 26px;
    right: 10px;
    display: flex;
    justify-content: end;
}
.genesis-card{
    position: relative;
    background: #ECBC11;
    width: 100%;
    height:275px;
}
.genesis-hekim{
    height: 80%;
    width: 60%;
    padding: 10px;
    display: block;
    justify-content: end;
    align-items: center;
}
.genesis-hekim h1{
    color: #f4f4f4;
    font-style: italic;
    font-size: 25px;
    font-weight: 300;
    text-align: end;
    text-transform: capitalize;
}
.genesis-hekim h1 strong{
    font-size: 30px;
    border-top: 2px solid #f4f4f4;
    text-transform: uppercase;
}
.bottom-title{
    color: #f4f4f4;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    margin: 4px;
    text-align: end;
}
#rakam{
    background: #ECBC11;
    padding: 45px 0;
    background-image: url(../images/bg-2.jpg);
    background-size: 60%;
    background-blend-mode: multiply;
}
.rakam-text{
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 50px 0;
    flex-wrap: wrap;
}
.col-1{
    margin: 0 50px;
}
.col-1 h1{
    font-size: 80px;
    font-weight: 600;
    font-style: italic;
    color: #f4f4f4;
    text-align: center;
    margin: 0;
}
.col-1 h2{
    font-size: 20px;
    color: #f4f4f4;
    font-style: italic;
    font-weight: 400;
    text-align: center;
}
#section{
    padding: 75px 0;
}
.section-container{
    display: flex;
    justify-content: space-between;
}
.section-card{
    display: flex;
}
.section-card img{
    width: 325px;
}
.section-hr{
    height: 80px;
    border-right: 3px solid #ECBC11;
}

.blog-carousel{
    display: flex;
}
.blog-card{
    margin: 10px;
    width: 25%;
}
.blog-card img{
    width: 100%;
    height: 225px;
    object-fit: cover;
}
.blog-card h1{
    margin: 0;
    text-align: end;
    font-size: 20px;
    color: #c6478a;
    font-weight: 500;
}

.plug{position: relative;width: 100%;top: 0;height: 10px}
.plug-container{display: flex;justify-content: space-between;background: #c6478a;align-items: center;clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 3% 100%);border-radius: 25px;}
.plug-card{width: 25%;text-align: center;padding: 10px 0}
.plug-card.in{background: linear-gradient(0deg, rgb(200 75 145) 0%, rgb(187 58 125) 100%);}
.plug-card.first{border-top-left-radius: 25px;}
.plug-card.out{background: linear-gradient(0deg, rgb(188 60 127) 0%, rgb(203 76 145) 100%);}
.plug-card.end{border-top-right-radius: 25px;}
.plug-container.btn{width: 35%;    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);}
.plug-card.btn{border-top-right-radius: 25px;border-top-left-radius: 25px;width: 100%}
.plug-hr{width: 0;height: 60px;border-right: 3px solid white}
.plug-card h1{font-size: 20px;color: white;font-weight: 400}

/*İNDEX*/


.referance-wrapper{
    margin: 20px 0;
}

.referance-card{
    width: 295px;
    height: 150px;
    border: 2px solid rgba(0,0,0,0.2);
    padding: 5px;
    margin: 5px;
}

.referance-container{
    flex-wrap: wrap;
}

.referance-card img{
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.referance-card h1{
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
}


/*FOOTER*/
#footer{
    background: #cc4d91;
    padding: 70px 0;
}
.footer-wrapper{
    display: flex;
    align-items: center;
}
.footer-content{
    width: 65%;
    display: flex;
    justify-content: space-around;
}
.footer-image{
    width: 35%;
    height: 200px;
}
.footer-image img{
    width: 220px;
}
#footer ul li a{
    color: #f4f4f4;
    font-size: 17px;
    font-style: italic;
}
#footer ul li{
    margin: 7px 0px;
}
.content-title{
    font-style: italic;
    font-weight: 700;
    color: #f4f4f4;
    font-size: 22px;
    margin: 20px 0;
}
.footer-hr{
    height: auto;
    border-left: 3px solid #f9d8e7;
}
.bottom-site{
    background: #f9d8e7;
    padding: 20px;
    text-align: center;
}
.bottom-site h1{
    color: #bf3f83;
    font-size: 17px;
    margin: 0;
    font-weight: 400;
}


/*FOOTER*/



/*ONLINE RANDEVU*/

.sitemap-wrapper{
    padding: 10px;
    background: #EBECEC;
}
.sitemap-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title-map h1{
    font-weight: 500;
    font-size: 15px;
    opacity: 1;
    left: 0;
    position: relative;
    animation: left-top 1s ease-in-out;
}
@keyframes left-top {
    0%{
        opacity: 0;
        left: -200px;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}
.search{
    width: 15%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0px 5px;
    opacity: 1;
    position: relative;
    right: 0;
    animation: right-top 1s ease-in-out;
}
@keyframes right-top {
    0%{
        opacity: 0;
        right: -200px;
    }
    100%{
        opacity: 1;
        right: 0;
    }
}
.search-bar{
    height: 40px;
    border-radius: 30px;
    display: flex;
    border: none;
    background: #cc4d91;
    padding: 0px 10px;
    align-items: center;
}
.search-bar input{
    background: transparent;
    flex: 1;
    height: 60%;
    border: 0;
    outline: none;
    font-size: 14px;
    color: #F4F4F4;
}
.search-bar input::placeholder{
    color: #f4f4f4;
}
.search-bar button img{
    width: 18px;
}
.search-bar button{
    border: 0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background: #cc4d91;
    cursor: pointer;
}

.online-randevu{
    padding: 25px 0;
    background: #C5C6C6;
}
.online-randevu h1{
    color: #fff;
    margin: 0;
    font-weight: 400;
}
.input1{
    display: flex;
}
.input1 select.form-control2{
    height: 50px;
    width: 500px;
    margin: 0px 15px;
    border: none;
    color: rgba(0,0,0,0.6);
    font-size: 16px;
    outline: none;
    padding: 0px 5px;
}
.input1 input.form-control1{
    height: 50px;
    width: 250px;
    border: none;
    outline: none;
    padding: 0px 5px;
    font-size: 16px;
    color: rgba(0,0,0,0.6);
}

.hekim-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 0;
}
.hekim-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/*ONLINE RANDEVU*/

/*Single Hekim*/
.single-wrapper{
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}
.single-container{
    width: 1300px;
}
.single-hekim{
    background: #c23e82;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}
.single-hekim img{
    width: 370px;
    position: absolute;
    bottom: 0;
}
.single-content{
    position: absolute;
    text-align: end;
}
.single-content h1{
    color: #f4f4f4;
    font-weight: 400;
    font-size: 35px;
    margin: 0;
    font-style: italic;
}
.single-content h1 span{
    text-transform: uppercase;
    font-weight: 600;
}
.single-content h2{
    color: #f4f4f4;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
    font-size: 30px;
    font-style: italic;
    margin-bottom: 20px;
}
.single-content a{
    color: #f4f4f4;
    font-size: 25px;
    font-style: italic;
    background: #1FBFD1;
    padding: 8px 30px;
    font-weight: 500;
    cursor: pointer;
}
.single-info{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.info-container{
    border: 2px solid #898989;
    position: relative;
    padding: 50px 0;
}
.info-title{
    position: absolute;
    top: -20px;
    left: 10px;
}
.info-title h1{
    background: #fff;
    margin: 0;
    font-weight: 500;
    color: #898989;
    font-style: normal;
}
.info-container ul{
    padding: 50px 20px;
}
.info-container ul li{
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    margin: 10px 0;
    color: #898989;
}
.info-container ul h1{
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    color: #898989;
}
.info-container ul p{
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    color: #898989;
}

/*Single Hekim*/

/*POPUP*/

.randevu-popup{
    background: rgba(0,0,0,0.7);
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-container{
    width: 475px;
    height: 600px;
    background: #1FBFD1;
    padding: 20px;
    position: relative;
}
.popup-container .fa-close{
    position: absolute;
    top: 5px;
    right: -5px;
    color: #f4f4f4;
    background: #ECBC11;
    padding: 10px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    cursor: pointer;
}
.popup-card{
    border: 2px solid #ECBC11;
    padding: 10px 25px;
}
.popup-card h1{
    color: #f4f4f4;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}
.popup-card span{
    color: #f4f4f4;
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
}
.popup-hekim{
    display: flex;
    align-items: end;
    margin: 10px 0px;
}
.popup-hekim-content{
    width: 100%;
    text-align: end;
}
.popup-hekim-content h1{
    margin: 0;
    color: #f4f4f4;
    font-weight: 300;
    font-style: italic;
    font-size: 24px;
}
.popup-hekim-content h2{
    margin: 0;
    color: #f4f4f4;
    font-weight: 300;
    font-style: italic;
    font-size: 19px;
}
.popup-hekim-img{
    width: 150px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: end;
    background: #ECBC11;
}
.popup-hekim img{
    width: 185px;
}
.popup-card form{
    width: 100%;
    display: block;
}
.popup-card form input{
    width: 96%;
    height: 20px;
    padding: 9px;
    font-size: 18px;
    color: rgba(0,0,0,0.7);
    margin: 3px 0px;
    outline: none;
    border: none;
}
.popup-card form select{
    height: 40px;
    font-size: 18px;
    padding: 5px;
    width: 100%;
    border: none;
    outline: none;
    color: rgba(0,0,0,0.6);
    margin: 3px 0px;
}
.popup-button{
    text-align: end;
}
.popup-btn{
    color: #f4f4f4;
    background: #ECBC11;
    padding: 5px 70px;
    border: none;
    font-size: 17px;
    font-style: italic;
    font-weight: 200;
    margin: 3px 0px;
    cursor: pointer;
}
/*POPUP*/

.tekno{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 120px 0;
}
.sorular{
    display: flex;
    justify-content: start;
    margin-left: 90px;
}
.accordian{
    width: 900px;
    display: block;
}
.accordian .card{
    margin-bottom: 20px;
    width: 100%;
    border-bottom: 2px solid #EBECEC;
    cursor: pointer;
    position: relative;
    bottom: 0;
    opacity: 1;
    animation: up 1s ease-in-out;
}
.accordian .card .card-header h3{
    color: #898989;
    position: relative;
    font-weight: 200;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    padding: 15px  20px;
}
.accordian .card .card-header .fa{
    position: absolute;
    right: 20px;
    top: 12px;
    height: 25px;
    width: 25px;
    cursor: pointer;
    color: #898989;
    background-color: transparent;
    text-align: center;
    line-height: 25px;
    font-size: 20px;
    border-radius: 40px;
}
.title-map a{
    color: #000;
}
.accordian .card .card-header{
    position: relative;
    padding: 20px 0;

}
.accordian .card .card-body{
    padding: 20px;
}
.accordian .card .card-body{
    display: none;
}
.accordian .card .card-body p{
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    color: #898989;
    margin: 0;
}
.kurumsal{
    margin-bottom: 50px;
    padding: 50px 0px;
    opacity: 1;
    bottom: 0;
    position: relative;
    animation: up 1s ease-in-out;
}
@keyframes up {
    0%{
        bottom: -30px;
        opacity: 0;
    }
    100%{
        bottom: 0;
        opacity: 1;
    }
}
.kurumsal-hr{
    width: 300px;
    margin-bottom: 40px;
    border-bottom: 3px solid #898989;
}
.kurumsal-title h1{
    color: #898989;
    margin: 5px;
    font-size: 35px;
    font-weight: 500;
}
.kurumsal-description{
    font-size: 19px;
    color: #898989;
    padding: 10px;
    line-height: 1.5;
}
.bolum-wrapper{
    padding: 0 0 50px;
}
.bolum-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0;
}
.bolum-card{
    width: 295px;
    height: auto;
    margin: 5px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    position: relative;
    bottom: 0;
    opacity: 1;
    animation: up 1s ease-in-out;
}
.bolum-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.bolum-card h1{
    font-size: 20px;
    font-weight: 400;
    color: #898989;
    text-align: center;
    padding: 10px;
}
.bolum-card span{
    color: #898989;
    font-size: 15px;
    font-weight: 200;
}
.bolum-card hr{
    width: 100%;
    color: #898989;
}
.bolum-single span{
    font-size: 19px;
    color: #898989;
    font-weight: 400;
    line-height: 1.5;
}
.bolum-single{
    padding: 50px 10px;
}
.kaynak-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.kaynak-container{
    width: 1400px;
    position: relative;
    bottom: 0;
    opacity: 1;
    animation: up 1s ease-in-out;
}
.info-kaynak span{
    color: #898989;
    font-size: 19px;
    font-style: italic;
    font-weight: 400;
}
.flex-form{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 0;
}
.flex-form .form-group{
    display: grid;
    width: 440px;
    margin: 12px;
}
.flex-form .form-textarea{
    display: grid;
    width: 100%;
    margin: 12px;
}
.form-image{
    width: 100%;
    display: grid;
}
.form-image label{
    font-style: italic;
    font-size: 22px;
    color: #898989;
    padding: 10px 20px;
    text-transform: uppercase;
}
.form-image input{
    height: 30px;
    padding: 0 20px;
}
.flex-form .form-group label{
    font-style: italic;
    font-size: 22px;
    color: #898989;
    padding: 10px 0px;
    text-transform: uppercase;
}
.flex-form .form-group2{
    display: grid;
    width: 255px;
    margin: 12px;
}
.flex-form .form-group2 input{
    width: 100%;
    height: 25px;
    padding: 7px;
    border: none;
    outline: none;
    color: #898989;
    background: #EBECEC;
    font-size: 18px;
}
.flex-form .form-group2 label{
    font-style: italic;
    font-size: 22px;
    color: #898989;
    padding: 10px 0px;
    text-transform: uppercase;
}
.flex-form .form-group input{
    width: 100%;
    height: 25px;
    padding: 7px;
    border: none;
    outline: none;
    color: #898989;
    background: #EBECEC;
    font-size: 18px;
}
.flex-form .form-textarea textarea{
    width: 100%;
    padding: 7px;
    border: none;
    outline: none;
    color: #898989;
    background: #EBECEC;
    font-size: 18px;
}
.flex-form .form-group select{
    width: 100%;
    height: 37px;
    border: none;
    outline: none;
    color: #898989;
    background: #EBECEC;
    font-size: 18px;
}
.egitim{
    width: 100%;
}
.egitim h1{
    text-align: center;
    color: #898989;
    font-size: 30px;
    font-style: italic;
    font-weight: 500;
}
.egitim h2{
    text-align: center;
    color: #898989;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
}

.single-content{
    right: 70px;
    opacity: 1;
    animation: content 1s ease-in-out;
}
@keyframes content {
    0%{
        right: -100px;
        opacity: 0;
    }
    100%{
        right: 70px;
        opacity: 1;
    }
}
.single-hekim img{
    width: 410px;
    left: 70px;
    bottom: 0;
    opacity: 1;
    animation: move 1s ease-in-out;
}

@keyframes move {
    0%{
        left: -100px;
        opacity: 0;
    }
    100%{
        left: 70px;
        opacity: 1;
    }
}

.yan-menu{
    top: 0;
    right: 0;
    width: 0;
    position: fixed;
    background: rgba(0,0,0,0.7);
    z-index: 100;
    height: 100vh;
    opacity: 0;
    transition: 0.7s cubic-bezier(
        .74,-0.03,.83,.67
    );
    display: flex;
    justify-content: end;
    overflow: hidden;
}

.yan-menu-bg{
    width: 30%;
    background: #ebedec;
    text-align: center;
    font-size: 1.3em;
    height: 100vh;
}

.yan-menu-open{
    width: 100% ;
    opacity: 1;
}
#menu-btn-second{
    cursor: pointer;
    display: none;
}
#menu-btn-second2{
    cursor: pointer;
}
.yan-nav{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 55px;
    position: relative;
}
.yan-nav a#menu-btn-second2{
    background: #cc4d91;
    border-radius: 100%;
    width: 55px;
    height: 55px;
    position: absolute;
    left: -30px;
    border: 4px solid #fff;
}
.yan-nav h1{
    font-size: 18px;
    font-weight: 500;
    color: #f4f4f4;
    margin-left: 40px;
}
.yan-nav img{
    width: 35px;
    margin: 10px;
}
.yan-nav i{
    color: #f4f4f4;
    font-size: 30px;
}
.yan-menu ul{
    display: block;
    padding: 20px 0px;
}

.yan-menu ul li{
    width: 70%;
    margin: 0px;
    font-weight: 500;
    text-align: start;
    border-bottom: 1px solid #d9dbda;
    padding: 8px 20px;

    text-transform: uppercase;
    font-size: 20px;
}
.yan-menu ul li a{
    color: #494b4a;
}

/*Hasta Görüş*/
.gorus{
    padding: 50px 0;
}
.gorus-container{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: rgba(0,0,0,0.01);
}
.gorus-card{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    bottom: 0;
    position: relative;
    animation: up 1s ease-in-out;
}
.gorus-content{
    width: 50%;
    position: relative;
}
.form-1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.gorus-content img{
    width: 450px;
    z-index: -1;
    opacity: 0.3;
    position: absolute;
}
.gorus-card form{
    width: 50%;
    padding: 30px;
}
.gorus-content h1{
    font-size: 60px;
    font-weight: 600;
    color: #898989;
    font-style: italic;
    width: 65%;
}
.div-1{
    display: grid;
    width: 100%;
    margin: 10px;
}
.div-2{
    display: grid;
    width: 97%;
    margin: 10px;
}
.div-1 .form-control,
.div-2 .form-control{
    outline: none;
    border: none;
    background: rgba(0,0,0,0.1);
    height: 45px;
    color: #898989;
    font-weight: 300;
    font-size: 18px;
    padding: 0 5px;
}
.div-2 textarea{
    outline: none;
    border: none;
    background: rgba(0,0,0,0.1);
    margin-top: 10px;
    color: #898989;
    font-weight: 400;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    padding: 0 5px;
}
textarea::placeholder{
    color: #898989;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}
.form-gorus label{
    color: #898989;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
}
.gorus-btn{
    padding: 10px;
}
.gorus-btn button{
    padding: 10px;
    width: 100%;
    border: none;
    height: 45px;
    background: #cc4d91;
    font-size: 18px;
    color: #f4f4f4;
    font-weight: 600;
    border-radius: 20px;
}
/*Hasta Görüş*/


.widget{
    width: 350px;
    opacity: 1;
    right: 0;
    position: relative;
    animation: right-top 1s ease-in-out;
}
.widget h1{
    font-size: 45px;
    color: #111;
    font-weight: 500;
    margin: 10px;
    padding: 0;
}
.widget ul li a{
    color: #898989;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}
.widget ul li{
    margin: 10px;
    border-bottom: 1px solid #898989;
}
.left-1{
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-left: 90px;
    opacity: 1;
    animation: up 1s ease-in-out;
}
.left-1 h1{
    color: #54595f;
    font-size: 25px;
    margin: 10px 8px;
    padding: 10px 0;
    border: none;
}
.left-1 h2{
    color: #7a7a7a;
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.left-1 p{
    color: #7a7a7a;
    font-size: 16px;
    margin: 0;
    padding: 10px;
}
.middle-1{
    display: flex;
    justify-content: center;
    align-items: start;
}
.contact-wrapper{
    padding: 100px 0;
}
.contact-title{
    text-align: center;
}
.contact-title span{
    color: #898989;
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    font-weight: 300;
}
.contact-info{
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.contact-card{
    padding: 10px;
    background: #EBECEC;
    width: 21%;
    margin:15px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.card-icon{
    width: 50px;
    height: 50px;
    object-fit: cover;
    position: absolute;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    top: -23px;
    border: 5px solid #ebecec;
    left: -20px;
}
.contact-card .card-icon img{
    width: 100%;
    opacity: 0.7;
    filter: grayscale(1);
    transition: 0.5s ease;
}
.contact-card .contact-image{
    width: 275px;
    filter: grayscale(1);
}
.contact-card h1 a{
    font-size: 20px;
    color: #898989;
    font-weight: 500;
}
.contact-card-a{
    color: #1fbfd1;
    position: relative;
    z-index: 10;
}

.contact-card p{
    font-size: 17px;
    font-weight: 400;
    color: #898989;
    line-height: 1.7;
    z-index: 10;
    position: relative;
}
.contact-map{
    height: 500px;
    padding: 0px 50px 50px;
}
.contact-map iframe{
    width: 100%;
    height: 500px;
}

.yan-btn{
    position: fixed;
    z-index: 100;
    width: 4%;
    display: flex;
    height: 100vh;
    top: 0;
    right: 0;
    align-items: center;
}
.btn-1{
    position: absolute;
    right: -35px;
    background-image: linear-gradient(#ed8fbc, #d292b0);
    transform: rotate(-90deg);
    border-radius: 10px;
    margin-top: -140px;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    height: 30px;
    width: 125px;
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
    animation: btn 1.5s ease;
}
@keyframes btn {
    0%{
        right: -100px;
        opacity: 0;
    }
    100%{
        right: -35px;
        opacity: 1;
    }
}
.btn-1 a{
    color: white;
}
.btn-2{
    position: absolute;
    right: -35px;
    background: #ecbc11;
    background-image: linear-gradient(#0d3f9b, #2a55a6);
    transform: rotate(-90deg);
    border-radius: 10px;
    margin-top: 140px;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    height: 30px;
    width: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: btn 2.5s ease;
    cursor: pointer;
}
.btn-2 a{
    color: white;
}
#session{
    position: fixed;
    background: #c593a9;
    padding: 20px 30px;
    bottom: 0;
    z-index: 1000;
    left: 0;
    width: 100%;
    display: none;
    align-items: center;
    opacity: 0.9;
    animation: session 4s ease-in;
}
@keyframes session {
    0%{
        bottom: -250px;
        opacity: 0;
    }
    80%{
        bottom: -250px;
        opacity: 0;
    }
    100%{
        bottom: 0;
        opacity: 0.9;
    }
}
.session-container{
    width: 66%;
}
.session-container h1{
    margin: 7px 0;
    padding: 0;
    font-size: 18px;
    color: white;
    font-weight: 500;
}
.session-container span{
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: white;
    font-weight: 300;
    line-height: 1.4;
}
.session .session-btn{
    background: #cc4d91;
    padding: 8px;
    color: #ffffff;
    font-size: 17px;
    margin: 0 10px;
    cursor: pointer;
}
.session .gizli{
    color: #fafeff;
    font-size: 17px;
}
.session-link{
    position: absolute;
    right: 100px;
}

.check-paket-title{
    text-align: center;
}
.check-paket-title h1{
    color: #898989;
    font-weight: 500;
    font-size: 30px;
}
.check-paket{
    flex-wrap: wrap;
    padding: 10px 0 50px;
}
.paket-card{
    background: #ebecec;
    width: 475px;
    margin: 10px;
}
.paket-title{
    padding: 20px 20px 0;
}

.paket-title h2{
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}
.bg-gri{
    background: #898989;
    padding: 5px 10px;
    border-top-right-radius: 40px;
    width: 295px;
}
.paket-title h1{
    margin: 0;
    font-size: 30px;
    color: white;
    font-weight: 400;
}
.bg-sari{
    background: #ECBC11;
    padding: 10px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.paket-title h3{
    margin: 0;
    font-size: 17px;
    color: #fff;
    font-weight: 400;
}
.bg-sari-2{
    background: #898989;
    padding: 5px 10px;
    width: 30px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
}
.paket-card ul{
    padding: 20px;
}
.paket-card ul li{
    margin: 16px 0;
}
.paket-card ul li h2{
    font-size: 17px;
    font-weight: 400;
    margin: 2px 0;
}
.paket-card ul li span{
    font-size: 15px;
    font-weight: 400;
    margin: 2px 0;
}
.check-btn-div{
    width: 100%;
    text-align: center;
    margin: 20px 0;
}
.check-btn{
    background: white;
    padding: 10px;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.content-btn{
    display: none;
}

.menu-social a{
    margin: 5px;
}
.menu-social a i{
    color: #cc4d91;
    padding: 10px;
    width: 30px;
    border-radius: 10px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in;
}
.menu-social a:hover i{
    color: #f4bfd6;
    transition: 0.4s ease-in;
}
.menu-number{
    width: 100%;
}
.menu-number img{
    width: 400px;
    height: 70px;
    object-fit: cover;
}
.sonuc-popup{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
}
.sonuc-card{
    width: 50%;
    height: 50%;
    background: white;
    position: relative;
}
.sonuc-card iframe{
    width: 100%;
    height: 100%;
}

.sonuc-popup a{
    position: absolute;
    bottom: 5px;
    color: #f4f4f4;
    background: #ECBC11;
    padding: 5px 20px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}
.youtube-card{
    flex-wrap: wrap;
}
.yvideo-box{

}
.yvideo-box iframe{
    width: 560px;
    height: 300px;
    margin: 10px;
}

@media(max-width:991px){
    #scrollToTopBtn{bottom: 60px;right: 25px;padding: 5px 12px}
    .plug-card h1{font-size: 12px}
    #menu-btn-second{display: grid}
    .genesis-title h1{font-size: 20px}
    .slider-video{
        height: 500px;
    }
    .sorular{
        margin-left: 0;
    }
    .menu-number{
        display: none;
    }
    .tekno{
        padding: 80px 0;
    }
    .pixel-online{
        width: 96%;
    }

    #world{
        top: -10px;
    }
    .sitemap-container{
        width: 96%;
        margin-left: 0;
    }
    .navbar-container{
        margin-left: 0px;
        width: 98%;
    }
    .accordian{
        width: 100%;
    }
    .online-card select.online-select{
        height: 37px;
    }
    .yan-btn{
        display: none;
    }
    .check-col-3{
        display: none;
    }
    .check-col-1{
        width: 100%;
    }
    .contact-card{
        width: 270px;
    }
    .carousel-cell{
        width: 25%;
        height: 200px;
        margin: 0px 10px;
    }
    .carousel-cell img{
        width: 100%;
    }
    .gorus-content h1{
        font-size: 40px;
        width: 95%;
    }
    .gorus-content img{
        width: 350px;
        z-index: -1;
        opacity: 0.3;
        position: absolute;
    }
    .form-1{
        display: block;
    }
    .div-1{
        width: 100%;
        margin: 10px;
    }
    .div-2{
        width: 100%;
    }
    .gorus-card form{
        padding: 30px;
    }
    .navbar-container{
        padding: 0 15px;
    }
    .yan-menu-bg{
        width: 35%;
    }
    .navbar ul.web{
        display: none;
    }
    .pixel{
        width: 98%;
    }
    .navbar ul li{
        margin-right: 15px;
    }
    .navbar ul li a{
        font-size: 15px;
        font-weight: 400;
        padding: 10px 0;
    }
    .navbar .logo img{
        width: 190px;
        padding: 0;
    }
    .lang a{
        font-size: 12px;
        transform: translate(15px,-28px);
    }
    .menu img{
        width: 35px;
    }
    .menu a{
        font-size: 15px;
    }
    .randevu-img-container{
        padding: 10px;
        height: 265px;
        width: 425px;
        margin: 0 5px;
    }
    .randevu-img-card img{
        width: 240px;
        height: 240px;
        left: -60px;
    }
    .randevu-text{
        right: 5px;
        width: 40%;
    }
    .randevu-text h1{
        font-size: 20px;
    }
    .randevu-text h2{
        font-size: 16px;
    }
    .randevu-button-left{
        font-size: 13px;
    }
    .randevu-button-right{
        font-size: 14px;
    }
    .single-content a{
        font-size: 20px;
    }
    .online-container{
        height: 245px;
        padding: 20px;
    }
    .online-card{
        padding: 19px;
    }
    .online-card h1{
        font-size: 20px;
        padding: 2px 0;
    }
    .online-card span{
        font-size: 15px;
        padding: 2px 0;
        font-weight: 200;
    }
    .online-card form{
        margin-top: 5px;
    }
    .online-card input{
        padding: 8px;
        margin: 5px;
        width: 25%;
        height: 20px;
    }
    .online-card select{
        padding: 8px;
        margin: 5px;
        width: 60%;
        height: 35px;
    }
    .online-button{
        padding: 8px;
        margin: 5px;
        width: 29%;
        height: 35px;
    }
    .text-card h1{
        font-size: 35px;
    }
    .check-flex{
        margin-left: 0;
    }
    .left-1{
        margin-left: 0;
    }
    .text-card p{
        font-size: 20px;
    }
    #image{
        padding: 15px 0;
    }
    .genesis-img img{
        width: 230px;
        height: 230px;
        filter: grayscale(0%);
    }
    .genesis-cell{
        width: 32%;
        height: 275px;
        margin: 20px 5px;
    }
    .genesis-bg{
        width: 90%;
        height: 81%;
    }
    .genesis-hekim{
        height: 80%;
        width: 49%;
        padding: 10px 0px;
    }
    .genesis-hekim h1{
        font-size: 20px;
    }
    .bottom-title{
        font-size: 16px;
        margin: 4px;
    }
    .section-card img{
        width: 100%;
    }
    .footer-image{
        display: flex;
        align-items: center;
    }
    .footer-image img{
        width: 275px;
    }
    .content-title{
        font-size: 18px;
    }
    .footer-hr{
        border-left: none;
    }
    #footer ul li a{
        font-size: 16px;
    }
    .footer-content{
        flex-wrap: wrap;
        justify-content: center;
    }
    .single-wrapper{
        padding: 10px 0;
    }
    .single-content{
        right: 10px;
        animation: content 1s ease-in-out;
    }
    @keyframes content {
        0%{
            right: -40px;
            opacity: 0;
        }
        100%{
            right: 10px;
            opacity: 1;
        }
    }
    .single-hekim{
        height: 350px;
    }
    .single-hekim img{
        left: 10px;
        width: 350px;
        animation: move 1s ease-in-out;
    }
    @keyframes move {
        0%{
            left: -40px;
            opacity: 0;
        }
        100%{
            left: 10px;
            opacity: 1;
        }
    }
    .single-content h1{
        font-size: 45px;
    }
    .single-content h2{
        font-size: 25px;
    }
    .blog-carousel{
        flex-wrap: wrap;
    }
    .bolum-card{
        width: 29%;
        margin: 5px;
    }
    .blog-card{
        width: 45%;
        margin: 15px;
    }
    .flex-form .form-group{
        width: 47%;
    }
    .input1 input.form-control1{
        width: 215px;
    }
    .input1 select.form-control2{
        width: 335px;
        text-transform: capitalize;
    }
    .space.sticky{
        margin-top: 80px;
    }
}
@media(max-width:500px){
    .site{
        display: flex;
    }

    .floating-btn{left: 15px;width: 50px;height: 50px}
    .whatsapp{bottom: 75px}
    .phone{bottom: 15px}
    .floating-btn img{width: 24px;height: 24px}
    #scrollToTopBtn{bottom: 50px;right: 15px;padding: 5px 12px}

    .plug.mobil{top: 45px;height: 90px}
    .plug-container{flex-wrap: wrap}
    .plug-card{width: 49.5%}
    .plug-card.mobil-end{border-top-right-radius: 25px;}
    .plug-container.btn{width: 50%}
    #genesiste.images{padding: 110px 0 55px 0 }
    .plug-hr{height: 35px;border-right: 1px solid white;}
    nav li a{
        transform: translateX(26px);
    }
    nav ul li.active > a.sub-a{
        margin-left: 26px;
    }
    .yvideo-box{
        width: 100%;
    }
    .yvideo-box iframe{
        width: 100%;
        margin: 0;
    }
    .slider-video{
        height: 325px;
    }
    .bottom-site{
        padding: 20px 0 90px;
    }
    .menu-social{
        display: none;
    }
    .content-btn{
        display: block;
        text-align: end;
        padding: 5px 10px;
        background: #ebecec;
    }
    .content-btn a{
        color: #898989;
    }
    .content-btn a i{
        padding: 10px;
        margin: 0 5px;
        color: white;
        background: #cc4d91;
        border-radius: 2px;
    }
    .widget{
        padding: 70px 0;
    }
    #session{
        padding: 20px 10px;
        flex-wrap: wrap;
    }
    .session-container{
        width: 90%;
    }
    .session-link{
        width: 100%;
        margin: 10px 0;
        position: relative;
        right: 10px;
    }
    .flex-form .form-group2{
        width: 90%;
    }
    .top-right ul li a i{
        font-size: 18px;
    }
    .web{
        display: none;
    }
    .contact-title span{
        font-size: 20px;
        line-height: 1.4;
    }
    .contact-info{
        padding: 50px 0;
    }
    .contact-card{
        width: 85%;
    }
    .card-icon{
        width: 55px;
        height: 55px;
    }
    .contact-map iframe{
        height: 350px;
    }
    .contact-map{
        height: 350px;
        padding: 0 20px 50px;
    }
    #genesiste{
        background-size: cover;
        background-repeat: no-repeat;
    }
    #rakam{
        background-size: cover;
        background-repeat: no-repeat;
    }
    .popup-container{
        width: 85%;
        height: 90%;
        display: flex;
        align-items: center;
        background: #1FBFD1;
        padding: 20px;
        position: relative;
    }
    #container{
        background-size: cover;
        padding: 10px 0;
    }
    .carousel-cell img{
        height: 150px;
        object-fit: cover;
    }
    .gorus-container{
        background: none;
        box-shadow: none;
    }
    .space.sticky{
        margin-top: 70px;
    }
    .single-hekim{
        height: 300px;
    }
    .gorus-card{
        display: block;
    }
    .gorus-content{
        width: 100%;
    }
    .gorus-card form{
        padding: 10px;
        width: 92%;
    }
    .navbar .logo img{
        width: 160px;
    }
    .navbar-container{
        padding: 0;
    }
    .online-randevu h1{
        font-size: 20px;
    }
    .info-title{
        top: -15px;
    }
    .info-title h1{
        font-size: 20px;
    }
    .input1 input.form-control1{
        display: none;
    }
    .input1 select.form-control2{
        height: 35px;
        width: 220px;
        margin: 0;
        color: #f4f4f4;
        background: #1fbfd1;
        border-radius: 20px;
        font-size: 12px;
        padding: 0px 5px;
    }
    .info-container ul li{
        font-size: 18px;
        margin: 5px 0;
    }
    .menu{
        margin-right: 20px;
    }
    .navbar ul.web{
        display: none;
    }
    .yan-menu-bg{
        width: 75%;
    }
    .index-randevu{
        flex-wrap: wrap;
        transform: translateY(0px);
    }
    .randevu-img-container{
        padding: 20px;
        margin: 0;
    }
    .randevu-img-card img{
        width: 260px;
        height: 260px;
    }
    .randevu-text{
        width: 45%;
        top: 0;
        height: 80%;
    }
    .randevu-text h1{
        font-size: 25px;
    }
    .randevu-text h2{
        font-size: 18px;
    }
    .randevu-button-left{
        font-size: 15px;
    }
    .randevu-button-right{
        font-size: 16px;
    }
    .online-container{
        height: auto;
        margin-top: 10px;
    }
    .online-card{
        padding: 10px;
    }
    .online-card input{
        width: 89%;
    }
    .container-2{
        flex-wrap: wrap;
    }
    .text-card{
        width: 100%;
        padding: 15px;
        justify-content: center;
    }
    .image-card{
        width: 100%;
    }
    .image-card img{
        transform: none;
    }
    .carousel-cell{
        width: 50%;
        height: 180px;
    }
    .genesis-cell{
        width: 100%;
    }
    .genesis-img img{
        width: 260px;
        height: 260px;
    }
    .genesis-hekim{
        padding: 10px;
    }
    .genesis-hekim h1{
        font-size: 23px;
    }
    .bottom-title{
        font-size: 20px;
        margin: 4px;
    }
    .blog-carousel{
        flex-wrap: wrap;
    }
    .blog-card{
        margin: 15px;
        width: 100%;
    }
    .blog-card img{
        height: 200px;
        width: 100%;
    }
    .blog-card h1{
        font-size: 20px;
    }
    .rakam-text{
        flex-wrap: wrap;
    }
    .col-1{
        width: 50%;
    }
    .col-1 h2{
        font-size: 25px;
    }
    .section-container{
        flex-wrap: wrap;
    }
    #section{
        padding: 15px 0;
    }
    .section-hr{
        border-right: none;
    }
    .section-card{
        width: 50%;
        margin: 20px 0;
    }
    .footer-wrapper{
        flex-wrap: wrap;
    }
    .footer-image{
        width: 100%;
        height: auto;
        justify-content: center;
    }
    .footer-content{
        width: 100%;
        padding: 20px;
    }
    .footer-kurumsal{
        width: 100%;
    }
    .bottom-site h1{
        font-size: 12px;
    }
    .rakam-text{
        justify-content: center;
    }
    .single-content{
        right: 10px;
        top: 15px;
        z-index: 1;
    }
    .single-hekim img{
        left: 0;
        width: 230px;
        animation: move 1s ease-in-out;
    }
    @keyframes move {
        0%{
            left: -30px;
            opacity: 0;
        }
        100%{
            left: 0;
            opacity: 1;
        }
    }
    .single-content h1{
        font-size: 40px;
    }
    .search-bar{
        height: 35px;
    }
    .single-content h2{
        font-size: 20px;
    }
    .single-hekim{
        align-items: start;
    }
    .single-content a{
        padding: 8px 15px;
        font-size: 16px;
    }
    .search-bar input{
        font-size: 12px;
        padding: 0;
        width: 75px;
    }
    .search{
        margin: 0;
    }
    .sitemap-wrapper{
        padding: 10px 0;
    }
    .title-map h1{
        font-size: 14px;
    }
    .kurumsal-title h1{
        font-size: 35px;
    }
    .kurumsal-hr{
        width: 230px;
    }
    .accordian .card .card-header .fa{
        top: 25px;
        font-size: 15px;
        color: #898989;
    }
    .bolum-card{
        width: 90%;
        margin: 5px;
        padding: 5px;
    }
    .bolum-card img{
        height: 250px;
    }
    .bolum-card h1{
        font-size: 18px;
    }
    .flex-form .form-group input{
        padding: 7px 0;
    }
    .flex-form .form-group{
        width: 95%;
    }
    .info-kaynak span{
        font-size: 18px;
    }
    .accordian .card .card-header h3{
        font-size: 17px;
        padding: 15px 5px;
    }
    .gorus-content img{
        display: none;
    }
    .gorus-content h1{
        margin: 0;
        font-size: 27px;
    }

}

@media(max-width:391px){
    nav li a{
        transform: translateX(23px);
    }
    nav ul li.active > a.sub-a{
        margin-left: 23px;
    }
}

@media(max-width:380px){
    nav li a{
        transform: translateX(20px);
    }
    nav ul li.active > a.sub-a{
        margin-left: 20px;
    }
}
