*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #e7e7e9;
    width: 100%;
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
nav{
    padding: 0 50px;
    width: 100%;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap{
    flex-wrap: wrap;
}
.pixel{
    width: 1300px;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
.margin{
    margin: 0px 10px;
}
.line{
    border-right: 2px solid #1a5768;
    float: left;
    height: 30px;
}
.wrapper{
    padding: 50px;
    position: relative;
    animation: up 1.5s ease;
}


/*TOP-BAR START*/
#top-bar{
    background: #e7e7e9;
}
.navbar-one{
    color: #000;
    height: 80px;
}
.navbar-one-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.logo h1{
    font-size: 30px;
    color: #1a5768;
}
.left{
    left: 50px;
    position: absolute;
}
.right{
    right: 50px;
    position: absolute;
}
.right .icons{
    padding: 0rem 1rem;
}
.right .icons p{
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    text-align: start;
}
.icons span{
    font-size: 14px;
    color: #1a5768;
}
.icons img.social
{
    width: 25px;
    height: 25px;
}
.nav-links{
    width: 100%;
}



.navbar-second{
    background-color: #038793;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.alt{
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alt li{
    margin: 17px;
    line-height: 0.5;
}

.alt li a{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    margin: 20px;
    color: #fff;
    font-weight: 400;
    justify-content: center;
}
.alt li a h1{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    margin: 0px 20px;
    color: #e7e7e9;
    font-weight: 400;
    justify-content: center;

}
.randevu{
    background-color: #1a5768;
    padding: 10px 20px;
    border-radius: 20px;
}
.nav-links ul li.bottom::after{
    content: '';
    width: 0%;
    border-bottom: 2px dashed white;
    display: block;
    margin: auto;
    transition: 0.5s ease;
}
.nav-links ul li:hover::after{
    width: 80%;
}

.icons img{
    width: 30px;
    height: 30px;
    margin: 5px;
}
.navbar.sticky{
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
}
.space.sticky{
    height: 60px;
}
/*TOP-BAR END*/

.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: -50px;
    background-image: linear-gradient(#158b96, #137db2);
    transform: rotate(-90deg);
    border-radius: 10px;
    margin-top: 0;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    height: 30px;
    width: 150px;
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
    animation: btn 1.5s ease;
}
@keyframes btn {
    0%{
        right: -100px;
        opacity: 0;
    }
    100%{
        right: -50px;
        opacity: 1;
    }
}
.btn-1 a{
    color: white;
}


.bottom-nav{
    display: none;
}

/*home*/

.header{
    height: auto;
    width: 100%;
    position: relative;
}

.header-con{
    position: relative;
    height: auto;
    width: 100%;
}

.header .sliders{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.header .sliders img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.header .form{
    width: 50%;
    height: 650px;
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
}
.header form{
    width: 375px;
    height: 475px;
    background: #1a5768;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    animation: right 1.5s ease;
}

@keyframes right {
    0%{
        right: -100px;
        opacity: 0;
    }
    100%{
        right: 0;
        opacity: 1;
    }
}

.header .form h2{
    text-align: center;
    color:#e7e7e9;
    font-size: 22px;
    border-radius: 10px;
    margin: 2px;
    padding: 8px;
}
.header .formBox{
    width: 100%;
    margin: 25px 0px;
    z-index: 100;
    position: relative;
}
.header form input:focus,
.header form select:focus{
    outline: none;
}
.header form input,
.header form select{
    width: 100%;
    height: 35px;
    background: transparent;
    border-bottom: 2px solid #093a48;
    border-radius: 2px;
    padding: 5px;
    box-shadow: none;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #e7e7e9;
    font-size: 16px;
}
.header form input::placeholder,
.header form select::placeholder{
    color: #e7e7e9;
    font-size: 16px;
}
.header form select option{
    color: #e7e7e9;
    background: #1a5768;
    padding: 10px;
    font-size: 16px;
}
.header input[type=submit]{
    margin-top: 10px;
}
.header input[type=date]{
    color: #e7e7e9;
    font-size: 16px;
}
.header form input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    font-size: 26px;
}
.header form button{
    width: 100%;
    height: 40px;
    background: #093a48;
    border: none;
    margin-top: 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    color: #e7e7e9;
    position: relative;
    transition: 0.4s ease;
    z-index: 1;
}
.header form img{
    width: 250px;
    height: 250px;
    opacity: 0.1;
    transform: rotate(-45deg);
    position: absolute;
    bottom: -20px;
    right: 0px;
}
.alert-danger li{
    color: red;
}

/* ABOUT */
.about-wrapper{
    position: relative;
    animation: up 1.5s ease;
}

@keyframes up {
    0%{
        bottom: -100px;
        opacity: 0;
    }
    100%{
        bottom: 0;
        opacity: 1;
    }
}

#about{
    height: auto;
    background: #1a5768;
    width: 100%;
    padding: 50px 0;
}
#about h1{
    color: #a0aec0;
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
}
#about .white-hr{
    width: 100px;
    border-bottom:3px solid #a0aec0;
}
#about p{
    padding: 10px;
    color: #a0aec0;
}
#about{
    color: #a0aec0;
}
.col-1{
    width: 425px;
    padding: 5px;
}
.col-2{
    width: 450px;
    display: flex;
    justify-content: center;
    position: relative;
}
.col-2 .img-1{
    width: 250px;
    height: 300px;
    object-fit: cover;
    top: -60px;
    right: 10px;
    position: absolute;
}
.col-2 .img-2{
    bottom: -60px;
    width: 250px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    left: 10px;
}
.col-2 video source{
}
.col-3{
    width: 425px;
    padding: 5px;
}
.col-3 ul{
    padding: 10px;
}
.col-3 ul li{
    color: #a0aec0;
    font-size: 18px;
    margin: 10px;
}


/* ABOUT */


/* BLOG */

#blog{
    height: auto;
    background:  #e7e7e9;
    width: 100%;
    padding: 75px 0;
}
.blog-wrapper{
    height: 300px;
}
.blog-card{
    width: 255px;
    height: auto;
    max-height: 280px;
    margin: 15px;
    cursor: pointer;
}
.blog-image img{
    width: 255px;
    height: 170px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.blog-card h1{
    color: #1a5768;
    font-size: 20px;
    margin: 5px;
}
.blog-card .number{
    font-size: 40px;
    margin: 5px;
    color: #1a5768;
}
.blog-card p{
    color: #0f6848;
    font-size: 15px;
}
.blog-title h1{
    color: #0f6848;
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
}
.blog-hr{
    width: 100px;
    border-bottom:3px solid #0f6848;
}
.blog-container{
    width: 1300px;
}


/* BLOG */
.single-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 40px 0;
}
.single-hekim{
    display: flex;
    justify-content: start;
    align-items: center;
    height: auto;
    position: relative;
    border-bottom-left-radius: 100%;
}
.single-content{
    position: absolute;

}
.single-content h1{
    color: #898989;
    font-weight: 400;
    font-size: 55px;
    margin: 0;
    font-style: italic;
}
.single-content h2{
    color: #898989;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
    font-size: 40px;
    font-style: italic;
    margin-bottom: 20px;
}
/* SSS */

#sss{
    height: auto;
    background:  #038793;
    width: 100%;
    padding: 100px 0;
}
.sss-hr{
    width: 100px;
    border-bottom:3px solid #a0aec0;
}
#sss h1{
    color: #e7e7e9;
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
}.accordian{
    width: 100%;
    margin:auto;
    flex-wrap: wrap;
    padding: 30px 0px;
 }
.accordian .card{
    width: 630px;
    margin: 10px;
}
.accordian .card .card-header h3{
    color: #0f6848;
    position: relative;
    background-color: #e7e7e9;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    padding: 15px  20px;

}

.accordian .card .card-header .fa{
    position: absolute;
    right: 20px;
    top: 12px;
    height: 25px;
    width: 25px;
    cursor: pointer;
    background-color: #e7e7e9;
    text-align: center;
    line-height: 25px;
    font-size: 13px;
    border-radius: 40px;
}
.accordian .card .card-header{
    position: relative;
}
.accordian .card .card-body{
    padding: 20px;
}
.accordian .card .card-body{
    display: none;
}


.accordian .card .card-body p{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    color: #e7e7e9;
    margin: 0px;
}
/* SSS */



/* ABOUT */


#info{
    height: auto;
    background: #e7e7e9;
    width: 100%;
    padding: 75px 0;
}
#info img{
    width: 50px;
    margin: 5px 0px;
}
#info .card{
    width: 300px;
    height: 200px;
    padding: 10px;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
#info h1{
    color: #1a5768;
    font-size: 22px;
    padding: 5px 0px;
}
#info h2{
    font-size: 17px;
    color: #1a5768;
}
.clock{
    display: flex;
    align-items:center;
}
.clock p{
    color: #0f6848;
    font-size: 17px;
    margin: 0px 5px;
}


/* ABOUT */




/* SINGLE BLOG */

.article{
    width: 1000px;
    padding: 0 15px;
}
.article img{
    width: 100%;
}
.article .category img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.article h1{
    font-size: 40px;
    font-weight: 500;
    color: #1a5768;
    padding: 10px 0px;
}
.article p{
    font-size: 19px;
    font-weight: 400;
    color: #1a5768;
    padding: 10px 0px;
}
.category{
    font-size: 19px;
    font-weight: 400;
    color: #1a5768;
    padding: 10px 0px;
}
.middleware-hr{
    width: 100%;
    border-bottom: 2px solid #1a5768;
    margin: 10px 0px 20px;
}
.example{
    width: 300px;
    padding: 30px 15px;
    border-left: 2px dashed rgba(0,0,0,0.2);
}
.example-card img{
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.example-card h1{
    font-size: 20px;
    font-weight: 400;
    color: #898989;
    text-align: center;
    padding: 10px;
}
.single-article{
    padding: 30px;
}
/* SINGLE BLOG */


/* LIST BLOG */

.blog-card-list{
    width: 295px;
    height: auto;
    margin: 5px;
    background: white;
    padding: 10px;
}
.blog-card-list img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-list h1{
    font-size: 20px;
    font-weight: 400;
    color: #898989;
    text-align: center;
    padding: 10px;
}
.blog-card-list hr{
    width: 100%;
    color: #898989;
    margin: 10px;
}
.blog-card-list span{
    color: #898989;
    font-size: 15px;
    font-weight: 200;
}
/* LIST BLOG */


/* ABOUT SINGLE */
.hakkimizda{
    background: #e7e7e9;
    padding: 50px 0;
}
.about-content{
    width: 750px;
    font-size: 19px;
    font-weight: 400;
    color: #1a5768;
    padding: 10px 0;
    position: relative;
    animation: left 1.5s ease;
}
@keyframes left {
    0%{
        left: -100px;
        opacity: 0;
    }
    100%{
        left: 0;
        opacity: 1;
    }
}
.about-content h1{
    line-height: 1;
    color: #0f6848;
    font-size: 30px;
    font-weight: 500;
}
.about-content p{
    color: #1a5768;
    font-size: 20px;
    font-weight: 200;
    z-index: 1;
}
.about-image{
    width: 550px;
    position: relative;
    animation: right 1.5s ease;
}
.about-image img{
    width: 385px;
    padding: 50px;
}
.misyon{
    background: #1a5768;
    padding: 50px;
}
.misyon h1{
    color: #e7e7e9;
    font-size: 30px;
    font-weight: 500;
}
.misyon p{
    color: #e7e7e9;
    font-weight: 200;
    font-size: 18px;
}
.misyon-container{
    padding: 50px;
}
.vizyon-container{
    padding: 50px;
}

/* ABOUT SINGLE */



/* SERTİFİKALAR */


.sertifika-card{
    width: 250px;
    height: 370px;
    margin: 20px;
}
.sertifika-card img{
    width: 100%;
    height: 370px;
    object-fit: contain;
}
.sertifika-card h1{
    font-size: 20px;
    color: #1a5768;
    font-weight: 500;
}


/* SERTİFİKALAR */


/* CONTACT */


.box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas:
        "form info"
        "form map";
    grid-gap: 20px;
    margin-top: 20px;
    animation: up 1.5s ease;
}

#contact{
    padding: 50px;
}

#contact .contact{
    padding: 40px;
    background: rgba(0,0,0,0.0);
    box-shadow: 0 5px 35px rgba(0,0,0,0.15);
}

#contact .contact h3{
    color: #1a5768;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    font-size: 1.4em;
}

#contact .formBox{
    position: relative;
    width: 100%;
}
#contact .formBox .row50{
    display: flex;
    gap: 20px;
}
#contact .inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}
#contact .formBox .row100 .inputBox{
    width: 100%;
}

#contact .inputBox span{
    color: #1a5768;
    margin-top: 10px;
    margin-bottom: 5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#contact .inputBox input{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    text-transform: none;
    border: 1px solid #1a5768;
}
#contact .inputBox textarea{
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #1a5768;
    resize: none;
    margin-bottom: 10px;
    text-transform: none;
    min-height: 220px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#contact .inputBox textarea::placeholder{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#contact .inputBox input[type="submit"]
{
    background: #1a5768;
    color: #e7e7e9;
    border: none;
    font-size: 1.1em;
    text-transform: none;
    max-width: 120px;
    font-family: 'Exo 2', sans-serif;
    cursor: pointer;
    padding: 14px 15px;
}
#contact .inputBox ::placeholder{
    color: #1a5768;
}
#contact .info{
}
#contact .info h3{
    color: #1a5768;
}
#contact .info .infoBox div{
    display: flex;
    align-items: center;
    margin: 25px 0;
}
#contact .info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    border: 2px solid #1a5768;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-family: 'Exo 2', sans-serif;
    border-radius: 50%;
    margin-right: 15px;
}
#contact .info .infoBox img{
    width: 32px;
    height: 32px;
}
#contact .info .infoBox div p{
    color: rgba(0,0,0,0.5);
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1em;
}
#contact .info .infoBox div a{
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    text-transform: none;
    font-size: 1.1em;
}
#contact .sci{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
#contact .sci li{
    list-style: none;
    margin-right: 15px;
}
#contact .sci li a{

    font-size: 2em;
    color: #ccc;
}
#contact .sci li a:hover{
    color: #dfae51;
}
#contact .map{
    padding: 0;
}
#contact .map iframe{
    height: 100%;
    width: 100%;
}


.contact.form{
    grid-area: form;
}

.contact.form.ilk{
    display: none;
}

.contact.info{
    grid-area: info;
}

.contact.map{
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

.contact.map img{
    width: 300px;
}


/* CONTACT */




/* FOOTER */


#footer{
    background: #1a5768;
    width: 100%;
    padding: 20px;
}
.social-footer{
    padding: 20px;
}
.social-footer a{
    background: #e7e7e9;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 10px;
}
.social-footer img{
    width: 27px;
}
.menu-footer{
    padding: 20px;
    flex-wrap: wrap;
}
.menu-footer a{
    color: #e7e7e9;
    margin: 15px 10px;
    font-size: 18px;
}
.footer-bottom{
    padding: 20px 0px 0;
}
.footer-bottom a{
    color: #e7e7e9;
}
.footer-bottom a h1{
    font-size: 18px;
    font-weight: 400;
}


/* FOOTER */



.navbar-one .menu{
    display: none;
}



.example .example-card{
    margin: 5px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    background: #efefef;
}

.alt-con{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1300px;
}





.online-container{
    background: #048893;
    height: auto;
    width: 100%;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}
.online-card{
    position: relative;
    height: auto;
    border: 3px solid #e7e7e9;
    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::placeholder{
    color: rgba(0,0,0,0.7);
}
.online-card input{
    padding: 8px;
    margin: 8px 0;
    width: 45%;
    height: 35px;
    outline: none;
    border: none;
    color: rgba(0,0,0,0.7);
    font-style: italic;
}
.online-card select{
    padding: 8px;
    margin: 8px 0;
    width: 60%;
    height: 35px;
    outline: none;
    border: none;
    color: rgba(0,0,0,0.7);
    font-style: italic;
}
.online-button{
    padding: 8px;
    margin: 8px 0;
    width: 30%;
    height: 35px;
    font-style: italic;
    color: #f4f4f4;
    background: #1a5768;
    border: none;
    cursor: pointer;
}
.online-card select.online-select{
    width: 30%;
    height: 50px;
}


.alert{
    padding: 10px;
    background: red;
}
.alert li{
    color: white;
    font-size: 18px;
}
.message{
    padding: 10px;
    background: #52e352;
    color: white;
    font-size: 18px;
}

.single-wp{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #02bb00;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.single-wp i{
    color: white;
    font-size: 35px;
}



@media only screen and (max-width: 1360px) {
    .header {
        height: 450px;
    }
    .header .sliders img{
        height: 450px;
    }
    .header-con{
        height: 450px;
    }
    .header .sliders{
        height: 450px;
    }
    .header form{
        width: 350px;
        height: 450px;
        top: 200px;
        box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    }
    nav {
        padding: 0px;
        transition: 0.4s;
    }

    .left {
        left: 5px;
        transition: 0.4s;
    }

    .right {
        right: 5px;
        transition: 0.4s;
    }

    .icons img.social {
        width: 20px;
        height: 20px;
        transition: 0.4s;
    }

    .icons span {
        font-size: 13px;
        transition: 0.4s;
    }

    .icons img {
        width: 25px;
        height: 25px;
        transition: 0.4s;
    }

    .logo h1 {
        font-size: 27px;
        transition: 0.4s;
    }

    .alt li {
        margin: 5px;
        transition: 0.4s;
    }

    .alt li a {
        font-size: 13px;
        margin: 10px;
        transition: 0.4s;
    }

    .header .form {
        width: 100%;
        align-items: end;
        height: 450px;
    }

    .header .form h2 {
        font-size: 21px;
        margin: 0px;
        padding: 6px;
    }

    .header .formBox {
        margin: 23px 0px;
    }

    .pixel-2 {
        width: 754px;
        padding: 4px;
    }

    #about {
        height: auto;
    }

    .about-wrapper {
        flex-wrap: wrap;
    }

    .col-1 {
        margin-top: 100px;
        padding: 15px 0px;
    }

    .col-2 {
        width: 100%;
    }

    .col-2 .img-1 {
        display: none;
    }
    .col-2 .img-2{
        width: 400px;
        position: initial;
    }
    .col-3{
        padding: 15px 10px;
        margin-top: 15px;
    }
    #info .card{
        width: 225px;
    }
    .pixel{
        width: 100%;
    }
    .blog-title{
        padding: 20px;
    }
    .blog-wrapper{
        padding: 10px;
    }

    .sss-title{
        width: 100%;
        padding: 20px;
    }
    .sss-wrapper{
        width: 100%;
    }
    .sss-container{
        width: 100%;
    }
    .accordian .card{
        width: 47%;
    }
    .about-content{
        width: 100%;
    }
    .about-image{
        width: 100%;
    }
    .misyon-container{
        padding: 0px;
    }
    .vizyon-container{
        padding: 0px;
    }
    .example{
        width: 100%;
        border-left: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .example-card img{
        width: 250px;
    }
    .example-card{
        margin: 10px;
    }
    .single-article{
        padding: 0px;
    }
    #contact .box{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "form"
            "info"
            "map";
    }
    #contact .map{
        min-height: 300px;
    }

    #contact .formBox .row50{
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    #contact .inputBox{
        width: 100%;
    }
}
@media only screen and (max-width: 780px){
    .alt li a{
        font-size: 12px;
        margin: 5px;
    }
    .right .icons{
        padding: 0rem 0.4rem;
    }
}
@media only screen and (max-width: 700px){
    .online-card h1{
        font-size: 28px;
    }
    .online-card input{
        width: 100%;
    }
    body{
        overflow-x: hidden;
    }
    .blog-card-list{
        width: 320px;
        margin: 10px 0;
    }
    .blog-card-list img{
        width: 300px;
        height: 150px;
    }
    .article h1{
        font-size: 35px;
    }
    .single-content{
        padding: 10px;
    }
    .single-wrapper{
        margin-top: 30px;
    }
    .single-content h1{
        font-size: 35px;
    }
    .single-content h2{
        font-size: 20px;
    }
    #contact .contact{
        padding: 40px 20px;
    }
    .example{
        display: none;
    }
    .yan-btn{
        display: none;
    }
    .alt-con{
        display: block;
        width: 100%;
    }
    .navbar.sticky{
        top: 80px;
    }
    .header form{
        width: 300px;
        height: 370px;
        transform: translateY(25px);
    }
    .header .form h2{
        font-size: 18px;
        margin: 0px;
        padding: 0px;
    }
    .header .formBox{
        margin: 15px 0px;
    }
    .header form input, form select{
        height: 32px;
        font-size: 12px;
        padding: 5px;
    }
    .header form button{
        height: 35px;
        font-size: 14px;
    }
    .right{
        display: none;
    }
    form input::placeholder,
    form select::placeholder{
        color: #e7e7e9;
        font-size: 13px;
    }
    .pixel-2{
        width: 640px;
        margin-top: 5%;
    }
    .navbar-one .menu img{
        width: 55px;
        position: absolute;
        top: -27px;
        right: 10px;
    }
    .navbar-one .menu{
        display: initial;
    }
    #top-bar{
        border-bottom: 1px solid #1a5768;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        height: 82px;
    }
    .navbar-second{
        visibility: hidden;
        opacity: 0;
        width: 0;
        position: absolute;
        right: 0;
        height: 100vh;
    }
    .navbar-second.active{
        display: block;
        height: 100vh;
        width: 60%;
        visibility: initial;
        position: absolute;
        right: 0;
        opacity: 1;
    }
    .alt{
        height: 100vh;
        width: 100%;
        display: block;
    }
    .space{
        height: 82px;
    }
    .alt li{
        margin: 15px 15px;
        width: 100%;
        line-height: .5;
    }
    .alt li.ilet{
        margin-bottom: 40px;
    }
    .alt li a{
        font-size: 16px;
    }
    .alt li a h1{
        margin: 15px;
    }
    .nav-links ul li.bottom::after{
        border-bottom: none;
    }
}

@media only screen and (max-width: 450px){
    .single-wp{
        bottom: 65px;
        right: 10px;
    }
    .bottom-nav{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: block;
        height: 50px;
        z-index: 10;
        background: #e7e7e9;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }
    .bottom-container{
        display: flex;
        align-items: center;
    }
    .bottom-container .fast-calling{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        border-right: 1px solid #6c757d;
    }

    .fast-calling i{
        color: #03989e;
        font-size: 20px;
        margin: 10px;
    }
    .fast-calling span{
        font-size: 20px;
        color: #03989e;
        font-weight: 700;
    }
    .header .sliders img{
        height: 210px;
    }
    .header .sliders{
        height: 210px;
    }
    .header-con{
        height: 210px;
    }
    .header{
        height: 210px;
    }
    .blog-container{
        width: 95%;
    }
    .online-card select{
        width: 67%;
    }

    .menu-hr{
        width: 100%;
        height: 0;
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }
    #contact{
        padding: 10px;
    }
    .col-1{
        margin-top: 0;
        padding: 10px;
    }
    .col-2 .img-2{
        width: 90%;
        position: initial;
    }
    .pixel{
        width: 100%;
    }
    .about-wrapper{
        width: 100%;
    }
    #info{
        height: auto;
        padding: 20px 0px;
    }
    .info-wrapper{
        flex-wrap: wrap;
    }
    #info .card{
        width: 90%;
    }
    #info .adress p{
        width: 220px;
    }
    .accordian .card{
        width: 90%;
    }
    #sss{
        height: auto;
    }
    .vizyon-container{
        padding: 50px 0px;
    }
    .about-content{
        padding: 25px;
    }
    .about-image img{
        padding: 25px;
    }
    .misyon{
        padding: 25px;
    }
    .wrapper{
        padding: 10px;
    }
    .article .category img{
        height: 350px;
    }
    .example a{
        width: 50%;
    }
    .example-card img{
        height: 135px;
        width: 100%;
    }
    .article{
        padding: 0 5px;
    }

}
