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

/* 
font-family: 'Poppins', sans-serif; */


/* font-family: 'Poppins', sans-serif;*/


/*TYPOGRAPHY*/

html {
    scroll-behavior: smooth;
}


/* SCROLL BAR */

::-webkit-scrollbar {
    width: 8px;
}

*:focus {
    outline: none;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #013970;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #4b50de;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'poppins', sans-serif;
    color: #262626;
    font-weight: 700;
    letter-spacing: normal;
}

h1 {
    font-size: 38px;
    margin: 10px 0;
    color: #003970;
}

h2 {
    font-size: 26px;
    line-height: 1;
    color: #002d70;
}

h3 {
    font-size: 24px;
    letter-spacing: 0;
    color: #003970
}

h4 {
    font-size: 18px;
    letter-spacing: 0;
    color: #003970;
}

h5 {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.2;
    color: #96A2B8;
}

h6 {
    font-size: 13px;
    letter-spacing: 0;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.25;
    color: rgb(69, 69, 69);
    font-weight: 300;
}

.login-heading {
    font-size: 16px;
    letter-spacing: 0;
    color: #003970;
    font-weight: 700;
    padding-bottom: 5px;
    line-height: -44px;
    margin: 0;
}

article p {
    text-indent: 40px;
}

a:hover {
    color: #4C51E0;
}

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

strong {
    font-weight: 600;
}


/* TOOLTIP */

#tt {
    position: absolute;
    display: block;
    background-color: #1e80dc;
    color: #000000;
    font-size: 12px;
    padding: 8px;
    border-radius: 10px;
    color: white;
    z-index: 99;
}

.border-button {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: .5s ease-in-out;
    margin: 4px 0;
}

.border-button:hover {
    background: linear-gradient(270deg, #1262ad, #ee18ae);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
}

.border-button-form {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: .5s ease-in-out;
    margin: 4px 0;
}

.border-button-form:hover {
    opacity: 0.9;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #fff;
}

.read-more-button {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    padding: 12px 34px 12px 34px;
    margin: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.read-more-button:hover {
    opacity: 0.9;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #fff;
}

.border-white-button {
    background: linear-gradient(270deg, #ffffff, #ffffff);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: rgb(53, 53, 53);
    border-radius: 30px;
    font-size: 14px;
    padding: 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: .5s ease-in-out;
    border: 2px solid rgba(35, 35, 35, 0.1);
}

.border-white-button:hover {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: rgb(226, 226, 226);
    border-radius: 30px;
    font-size: 14px;
    padding: 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: .5s ease-in-out;
    border: 2px solid rgba(35, 35, 35, 0.1);
}

.sss-button {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    padding: 8px 22px;
    margin: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.sss-button:hover {
    opacity: 0.9;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #fff;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 1;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #003970;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #4c51e0;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.pt20 {
    padding-top: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pb30 {
    padding-bottom: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pb40 {
    padding-bottom: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pb60 {
    padding-bottom: 60px;
}

.pt70 {
    padding-top: 70px;
}

.pb70 {
    padding-bottom: 70px;
}

.pt80 {
    padding-top: 80px;
}

.pb80 {
    padding-bottom: 80px;
}

.pt90 {
    padding-top: 90px;
}

.pb90 {
    padding-bottom: 90px;
}

#bg-gray {
    background-color: #f5f5f5;
}

#width11 {
    max-width: 1170px;
}

.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .breadcrumb {
        display: none;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        float: none;
        padding-right: 0;
        color: none;
        content: none;
    }
}

.breading {
    padding: 60px 0;
    background: rgb(219, 220, 218);
    background: linear-gradient(90deg, rgba(219, 220, 218, 1) 0%, rgba(233, 194, 250, 1) 49%, rgba(239, 213, 209, 1) 68%, rgba(240, 215, 205, 1) 100%);
    color: #fff;
}

.bread-title {
    text-align: center;
    padding-bottom: 10px;
}

.bread-title h2 {
    font-size: 42px;
    color: #002d70;
}

.breading .breadcrumb a {
    font-family: 'Poppins', sans-serif;
    color: #2b2a2a;
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .bread-title {
        padding: 40px 40px 0px 40px;
    }

}


/**Forms*/


.bilgi_al {
    position: fixed;
    top: 60%;
    right: 0;
    transform: rotate(270deg);
    transform-origin: 65%;
    padding: 8px 14px;
    background-color: darkorange;
    color: #fff;
    font-size: 15px;
    border-radius: 8px;
    z-index: 999999;
    box-shadow: rgb(0 0 0 / 19%) 0px 10px 20px, rgb(0 0 0 / 23%) 0px 6px 6px;
    transition: .3s ease-in-out;
}


.bilgi_al:hover {
    color: rgb(37, 37, 37);
}

@media screen and (max-width: 768px) {
    .bilgi_al {
        display: none;
    }


}

.form-area .php-email-form {
    background: #fff;
}

.form-area .php-email-form input,
.form-area .php-email-form textarea {
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
}

.form-area .php-email-form input:focus,
.form-area .php-email-form textarea:focus {
    border-color: #4c51e0;
}

.form-area .php-email-form input {
    padding: 10px 15px;
}

.form-area .php-email-form textarea {
    padding: 12px 15px;
}

.form-area .php-email-form button[type=submit] {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: .5s ease-in-out;
    margin: 4px 0;
    border: none;
}

.form-area .php-email-form .enrollment {
    background: darkorange;
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: .5s ease-in-out;
    margin: 4px 0;
    border: none;
}

.form-area .php-email-form button[type=submit]:hover {
    opacity: 0.9;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #fff;
}

.form-area .php-email-form .enrollment:hover {
    opacity: 0.9;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #fff;
}


/*DESKTOP NAVIGATION*/

.desktop-navigation {
    position: sticky;
    top: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.top-bar {
    background-color: #002d70;
    padding: 15px 0;
}

.top-bar .top-social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
    margin-top: 3px;
    font-size: 20px;
}

.top-bar .top-social-links a:hover {
    color: darkorange;
}

.top-bar .contact-info i {
    font-style: normal;
    color: #fff;

}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 0px 10px;
}

.top-bar .contact-info i a,
.top-bar .contact-info i span {
    padding-left: 5px;
    color: #fff;
    font-size: 13 Spx;
}

.top-bar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
    font-size: 18px;
}

.top-bar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

.top-header-right a:first-child {
    background-color: #fff;
    color: #002d70;
    border-radius: 6px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 12px;
}

.top-header-right a:nth-child(2) {
    background-color: darkorange;
    color: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    font-weight: 600;
    margin-left: 10px;
    font-size: 12px;
}


.top-header-right a:nth-child(3) {
    background-color: #4C51E0;
    color: #fff;
    border-radius: 6px;
    padding: 4px 12px;
    font-weight: 600;
    margin-left: 10px;
    font-size: 12px;
}


.navigation-area {
    background-color: #fff;
}

.navigation-area .logo {
    width: 70px;
    height: 70px;

}

.navigation-area img {
    width: 92px;
    height: 92px;
    margin-top: 4px;
    margin-left: 7px;
}

.navbar {
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 12px;
    font-weight: 500;
    color: #011d36;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: darkorange;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #002d70;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 225px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
    font-size: 12px;
}

.ulke-row-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    justify-content: center;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #044a75;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}


/********Mobile Menu******/

.mobil_nav {
    display: none;
}

@media screen and (max-width: 992px) {
    .desktop-navigation {
        display: none;
    }

    .mobil_nav {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .header-mobil-login a {
        font-size: 8px;
    }

    .navigation-area .logo img {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 333px) {
    .header-mobil-login a {
        font-size: 8px;
    }
}


/************ HOME PAGE *****/

.home-compare {
    padding: 0px 0;
}

.home-compare-content h2 {
    color: #3362cc;
}

@media screen and (max-width: 767px) {
    .home-compare-img {
        margin-top: 40px;
    }
}

.new-intro {
    background: rgb(219, 220, 218);
    background: linear-gradient(90deg, rgba(219, 220, 218, 1) 0%, rgba(233, 194, 250, 1) 49%, rgba(239, 213, 209, 1) 68%, rgba(240, 215, 205, 1) 100%);
}

.new-intro .intro-sol {
    padding: 50px 0;
}

.intro-sol select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='black' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.new-intro img {
    margin-top: 0px;
    height: 100%;
    width: auto;
}

select option {
    background-color: #e7e7e7;
    color: rgb(41, 41, 41);
}

.intro-sol .form-select {
    margin: 14px 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(223, 223, 223, 1) 100%);
    font-family: 'Poppins', sans-serif;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(77, 77, 77);
    border: 1px solid darkorange;
    border-radius: 12px;
    width: 75%;
}

.intro-sol .form-control {
    margin: 14px 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(223, 223, 223, 1) 100%);
    font-family: 'Poppins', sans-serif;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid darkorange;
    border-radius: 12px;
    color: rgb(77, 77, 77);
    width: 75%;
}

.intro-sol .form-control::placeholder {
    color: rgb(77, 77, 77);
    font-weight: 400;
}

.intro-sol p {
    color: #000;
    font-weight: 400;
}

@media screen and (max-width: 1424px) {
    .intro-sol .form-control {
        width: 100%;
    }

    .intro-sol {
        margin-top: 0px;
    }

    .intro-sol .form-select {
        width: 100%;
    }

    .new-intro img {
        margin-top: 0px;
        height: 100%;
        width: auto;
    }
}

@media screen and (max-width: 1199px) {
    .intro-sol .form-control {
        width: 100%;
    }

    .intro-sol {
        margin-top: 80px;
    }

    .intro-sol .form-select {
        width: 100%;
    }

    .new-intro img {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .intro-sol .form-control {
        width: 100%;
    }

    .intro-sol {
        margin-top: 80px;
    }

    .intro-sol .form-select {
        width: 100%;
    }

    .new-intro img {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .new-intro img {
        display: none;
    }

    .intro-sol {
        margin-top: 80px;
    }

    .intro-sol .form-control {
        width: 100%;
    }

    .intro-sol .form-select {
        width: 100%;
    }

    .home-counter {
        display: none;
    }
}


/******************************/

.color-heading {
    color: #3362cc;
    font-weight: 600;
    line-height: 30px;
}

.home-about {
    padding: 40px 0;
    background-color: #f7f7f7;
}

.home-counter {
    text-align: center;
    margin-bottom: 10px;
    min-height: 130px;
    padding: 20px;
    background-color: #dce6e8;
    border-radius: 10px;
}

.home-about .home-about-content {
    text-align: center;
    padding-top: 20px;
}

.home-about-content h1 {
    text-align: center;
}

.home-about .lead {
    text-align: center;
    color: darkorange;
    font-weight: 600;
}

.home-about strong {
    color: #444444;
}

.home-counter p {
    color: #2E2E2E;
    margin-top: 14px;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0px;
    opacity: .7;
    letter-spacing: 1px;
}

.home-about-content .lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #FA8B25;
}


/******************************/

.ulkesehir {
    padding: 20px 0;
}

.sag-p {
    margin-left: 10px;
    margin-top: 10px;
}

.ulkesehir select {
    width: 75%;
    background: rgb(101, 25, 206);
    background: linear-gradient(90deg, rgba(101, 25, 206, 1) 24%, rgba(41, 111, 249, 1) 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 10px;
    border: 2px solid #fff;
    font-family: 'Poppins', sans-serif;
}

.ulkesehir-form-control {
    width: 75%;
    background: rgb(101, 25, 206);
    background: linear-gradient(90deg, rgba(101, 25, 206, 1) 24%, rgba(41, 111, 249, 1) 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 12px;
    border: 2px solid #fff;
    font-family: 'Poppins', sans-serif;
}

.ulkesehir-form-control::placeholder {
    color: #fff;
}


/******************************/

.meslek {
    padding: 40px 0;
    background-color: #f7f7f7;
}

.meslek-content {
    padding: 70px 0;
}

.meslek-p {
    color: #3362cc;
    font-weight: 600;
    font-size: 17px;
}

@media screen and (max-width: 992px) {
    .meslek img {
        padding: 120px 0;
    }
}

@media screen and (max-width: 768px) {
    .meslek img {
        padding: 0;
    }
}

.universite-bolumleri {
    padding: 40px 0;
}

.universite-bolumleri h2 {
    color: #aebdd0;
    padding-bottom: 10px;
}

.universite-bolumleri p {
    color: darkorange;
    font-weight: 500;
    padding-bottom: 20px;
}


/******************************/

.unibolum {
    padding: 30px 0;
}

.uni-icon-slider {
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 6px;
}

@media screen and (max-width: 992px) {
    .uni-icon-slider {
        margin: 0px 70px;
    }
}

@media screen and (max-width: 992px) {
    .uni-icon-slider {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}

.asagiok {
    font-size: 42px;
    color: #4c51e0;
}

.uni-icon-slider img {
    width: 64px;
    height: 64px;
}

.uni-icon-slider-alt {
    display: flex;
    justify-content: space-between;
    min-height: 80px;
}

.uni-icon-slider-alt .icon-wrapper {
    margin-top: 20px;
}

.uni-icon-slider-alt i {
    background-color: #4c51e0;
    padding: 8px;
    margin-top: 0px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.uni-icon-slider-alt i:hover {
    background-color: #666af3;
}

.uni-icon-slider h2 {
    color: #000;
    font-size: 14px;
    margin-top: 20px;
}

.unibolum .swiper-button-prev {
    color: #161733ab;
}

.unibolum .swiper-button-next {
    color: #44454cad;
}

.home-ucretiz-bilgi {
    background-color: #f5f5f5;
    padding: 0;
}

.blog-sol {
    padding: 80px 0;
}


/******************************/

.new-home-blog {
    padding: 30px 0;
}


/***BLOG GRID**/

.blog-area {
    background-color: #f7f7f7;
    padding: 40px 0;
}

.blog-box {
    margin-bottom: 20px;
    background-color: #fff;
    padding-bottom: 20px;
    min-height: 480px;
}

.blog-image {
    position: relative;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
}

.blog-content {
    background-color: #fff;
    padding: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.blog-content .intro {
    min-height: 80px;
}

.blog-content .intro i {
    font-style: normal;
}

.blog-content time {
    float: right;
    padding: 4px 14px;
    border-radius: 20px;
    text-align: center;
    background: #FA8B25;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-top: -25px;
    position: relative;
}

.blog-header {
    margin-top: 10px;
}

.blog-header h4 {
    font-size: 18px;
}

.blog-content p {
    font-size: 14px;
    text-align: left;
    color: rgb(81, 81, 81);
    font-weight: 400;
    min-height: 70px;
    line-height: normal;
}

.blog-content a {
    font-size: 14px;
    font-weight: 400;
}

.blog-content .read-more {
    background-color: #fff;
    color: darkorange;
    font-weight: 500;
    font-size: 12px;
}

.blog-content span {
    text-align: left;
    font-size: 10px;
    padding: 5px;
    border-radius: 10px;
    color: white;
    background-color: #4D5FE3;
    font-weight: 200;
}


/*INSIDE BLOG GRID **/

.inside-blog-area {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.inside-blog-box {
    margin-bottom: 20px;
}

.blog-post {
    text-align: justify;
}

.blog-post p {
    font-size: 14px;
}

.blog-post img {
    border-radius: 5px;
    width: 100%;
}

.inside-blog-img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.inside-blog-content {
    position: relative;
    background-color: #fff;
    padding: 20px 10px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    min-height: 250px;
    text-align: center;
}

.inside-blog-content time {
    width: 70px;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 20px;
    text-align: center;
    background: #FA8B25;
    color: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: right;
    position: absolute;
    top: 0;
    right: 0%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.inside-blog-content .read {
    font-size: 11px;
    color: #4C51E0;
    font-family: 'poppins', sans-serif;
    font-weight: 700;
}

.inside-blog-content h3 {
    font-size: 18px;
    min-height: 60px;
}

.inside-blog-content .button-area {
    padding-top: 30px;
}

.inside-blog-intro {
    min-height: 110px;
}

.inside-blog-intro p {
    font-size: 15px;
}

.blog-inpage {
    margin-top: 0px;
}

.blog-inpage-form {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 20px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 5px;
}

.blog-inpage-form p {
    font-weight: 600;
    color: darkorange;
    padding-bottom: 10px;
    text-align: left;
}

.blog-inpage input {
    background-color: #3362cc;
    border-radius: 8px;
    color: #fff;
}

.blog-inpage button {
    text-align: center;
}

.blog-inpage input::placeholder {
    color: #fff;
}

.blog-inpage button {
    background-color: #000;
    color: #fff;
    border-radius: 7px;
    padding: 5px 20px;
}

.blog-inpage-latest {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: left;
}

.blog-inpage-latest p {
    font-weight: 600;
    color: darkorange;
    padding-bottom: 10px;
    text-align: left;
}

.blog-inpage-latest {
    list-style-type: none;
}

.blog-inpage-latest li {
    padding: 5px 4px 4px 9px;
    /* box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px; */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
    margin: 8px 0;
    line-height: 14px;
    height: 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-left: 4px solid #6bb4f5;
    background-color: rgb(252, 250, 250);

}

.blog-inpage-latest li img {
    width: 40px;
}

.blog-inpage-latest span {
    color: #4D5FE3;
    font-size: 9px;
}

.blog-inpage-latest a {
    font-size: 12px;
    font-weight: 400;
    color: #828282;


}


.blog-inpage-interest {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.blog-inpage-interest h2 {
    color: darkorange;
    font-size: 16px;
    font-weight: 700;
}

.blog-interest-content {
    margin-bottom: 20px;
    text-align: center;
}

.blog-interest-content img {
    border-radius: 15px;

}

.blog-inpage-interest h3 {
    font-size: 16px;
    color: #1e80dc;
    font-weight: 400;
    padding: 0;
    margin-top: 6px;
}

.blog-inpage-social-area {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.blog-inpage-social-area p {
    font-weight: 600;
    color: darkorange;
    padding-bottom: 10px;
}

.blog-inpage-social {
    display: flex;
    justify-content: space-around;
}

.blog-inpage-social img {
    width: 36px;
    height: 36px;
}

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

    .blog-mobil {
        font-size: 22px;
    }

    .blog-post {
        text-align: left;
    }

    .blog-inpage-latest li {
        height: 50px;
    }


    .blog-inpage-social img {
        height: 24px;
        width: 24px;
    }

}

/***HABER GRID**/

.haber-area {
    background-color: #ffffff;
    padding: 40px 0;
}

.haber-box {
    margin-bottom: 20px;
    background-color: #f5f5f5;
    padding-bottom: 20px;
    min-height: 480px;
}

.haber-image {
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.haber-content {
    background-color: #f5f5f5;
    padding: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.haber-header {
    margin-top: 10px;
    margin-left: 10px;
}

.haber-header h4 {
    font-size: 18px;
}

.haber-content {
    background-color: #f5f5f5;
    padding: 10px;
    border-bottom-left-radius: 12x;
    border-bottom-right-radius: 12px;
    margin-top: -7px;
}

.haber-content h5 {
    font-size: 12px;
    color: #000;
}

.haber-content h5 i {
    color: darkorange;
    padding: 0px 5px;
}

.haber-content h5 span {
    font-size: 10px;
    font-weight: 300;
    color: rgb(41, 40, 40);
}

.haber-content p {
    font-size: 13px;
    text-align: justify;
    color: #000;
    font-weight: 400;
}

.haber-content .read-more {
    background-color: darkorange;
    color: #fff;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
}


/********************************/

.basari-hikayeleri {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.basari-box {
    background-color: #003970;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
    border-radius: 12px;
    min-height: 300px;
    margin: 5px;
}

.basari-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px;
}

.basari-box p {
    color: rgb(228, 228, 228);
    padding: 0px 50px;
}

.basari-box .name {
    font-weight: 700;
}

.basari-box .coll {
    font-size: 14px;
    color: #ddd;
}

.basari-hikayeleri .swiper-button-prev {
    color: #fff;
}

.basari-hikayeleri .swiper-button-next {
    color: #fff;
}


/*********************/

.home-contact {
    padding: 40px 0;
}


/***********************/

.dreambig-index {
    min-height: 500px;
}

#bottom_nav {
    border: 0px solid rgb(58, 58, 58);
    text-align: center;
}

#bottom_nav .navi_list {
    text-align: left;
}


/* Style the tab */

.tab {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #707070;
    background-color: #fff;
}


/* Style the buttons inside the tab */

.tab button {
    background-color: inherit;
    text-align: center;
    border: none;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    padding: 4px 10px;
    transition: 0.3s;
    color: #002d70;
    font-size: 14px;
    border-bottom: 6px solid #fff;
}


/* Change background color of buttons on hover */

.tab button:hover {
    border-bottom: 6px solid #4C51E0;
}


/* Create an active/current tablink class */

.tab button.active {
    border-bottom: 6px solid #4C51E0;
}


/* Style the tab content */

.tabcontent {
    display: none;
    padding: 6px 12px;
    margin-top: 40px;
    border-top: none;
    text-align: left;
}

.tabcontent p {
    color: #4C51E0;
    font-size: 16px;
    font-weight: bold;
}

.tabcontent li {
    line-height: 18px;
    list-style-type: disc;
    padding: 0;
    margin: -1px;
}

.tabcontent li a {
    color: #828282;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.tabcontent img {
    width: 100%;
    height: auto;
}


/********************************/

.footer {
    padding: 40px 0;
    background-color: #f7f7f7;
}

.footer-box {
    padding: 50px;
}

.footer-box h3 {
    padding-bottom: 10px;
}

.footer-box p {
    color: #828282;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-box a {
    color: #828282;
    font-size: 13px;
}

.bottom-footer a {
    color: #828282;
    font-size: 12px;
}

.bottom-footer p {
    color: #828282;
    font-size: 12px;
}

.footerSocial {
    text-align: center;
    margin-bottom: 40px;
}

.footerSocial a {
    margin: 0 10px 0 10px;
    font-size: 20px;
}

/******UNI CARD*****/

.uni-card-section {
    padding: 60px 0;
}

.uni-card {
    margin-bottom: 20px;
    position: relative;
    z-index: 20;
}

.uni-card .up-utilty {
    text-align: right;
    position: absolute;
    top: -14px;
    right: 0;
}

.uni-card .up-utilty .label-ucretsiz-basvuru {
    background-color: #f0ad4e;
    font-size: 10.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1;
    padding: 2px 4px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    box-shadow: 2px 2px 1px 0 rgb(0 0 0 / 30%);
    margin-right: 6px;
}

.uni-card .up-utilty .label-burs {
    background-color: #5bc0de;
    font-size: 10.5px;
    font-family: 'Poppins', sans-serif;
    padding: 2px 4px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    box-shadow: 2px 2px 1px 0 rgb(0 0 0 / 30%);
    margin-right: 20px;
}

.uni-card .uni-background img {
    border: 0px solid;
    border-radius: 25px 25px 25px 25px;
    z-index: -1;
}

.uni-card .uni-logo {
    position: relative;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0.5rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-top: -2rem;
    height: 60px;
    width: 100px;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    order: -1;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 1px 1px 0 rgb(48 50 100 / 14%), 0 2px 1px -1px rgb(48 50 100 / 14%), 0 1px 8px 0 rgb(48 50 100 / 14%);
}

.uni-card .uni-specs {
    border: 0px solid;
    border-radius: 25px 25px 25px 25px;
    padding: 20px;
    background-color: #fff;
    margin-top: -55px;
    padding: 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}

.uni-card .uni-specs .uni-heading {
    min-height: 90px;
    margin-top: 20px;
}

.uni-heading h3 {
    font-size: 24px;
}

.uni-mini-icons {
    display: flex;
    justify-content: space-between;
}

.uni-mini-icons .left-area span {
    font-size: 20px;
    color: #6f6f6f;
}

.uni-mini-icons .left-area p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.uni-mini-icons .right-area {
    display: flex;
    justify-content: space-between;
}

.uni-mini-icons .right-area a {
    margin: 0px 4px;
    font-size: 20px;
    color: #707070;
}

.uni-mini-icons .right-area i {
    margin: 0px 4px;
    font-size: 20px;
    color: #707070;
}

.uni-mini-content {
    text-align: left;
    min-height: 195px;
}

.uni-mini-content {
    line-height: 1px;
    margin-top: 10px;
}

.uni-mini-content p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #444;
    margin: 0 0 10px;
}

.uni-mini-content p strong {
    font-weight: 700;
}

.uni-card .button-area {
    margin-top: -10px;
}

.button-area .border-button {
    padding: 10px 40px;
}


/*******ÜLKE BOX *****/

.ulke-section {
    padding: 60px 0;
}

.ulke-box {
    text-align: center;
}

.ulke-box img {
    border-radius: 4px;
    filter: grayscale(100);
    transition: .1s ease-in;
}

.ulke-box h2 {
    font-size: 22px;
    color: #1e80dc;
}

.ulke-box img:hover {
    filter: grayscale(0);
}


/***********SEARCH BOX***********/

.search-box {
    margin: 20px 0;
}

.search-box .row {
    padding: 10px;
    background: rgb(219, 220, 218);
    background: linear-gradient(90deg, rgba(219, 220, 218, 1) 0%, rgba(233, 194, 250, 1) 49%, rgba(239, 213, 209, 1) 68%, rgba(240, 215, 205, 1) 100%);
    height: 70px;
}

.search-box select {
    padding: 14px 18px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    border: 0px;
    font-weight: 600;
    font-size: 13px;
    line-height: 22px;
    color: #555;
    width: 100%;
    margin-bottom: 14px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 0px;
    outline: none;
    border-right: 1px solid #ddd;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.search-box input {
    padding: 14px 18px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    border: 0px;
    font-weight: 300;
    font-size: 13px;
    line-height: 22px;
    color: #555;
    width: 100%;
    margin-bottom: 14px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 0px;
    outline: none;
    -webkit-appearance: textfield;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    border-right: 1px solid #ddd;
}

.search-box button {
    border-radius: 0px;
    height: 50px;
    background-color: #4C51E0;
    color: white;
    width: 100%;
    font-weight: bold;
    border: none;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

@media screen and (max-width: 768px) {
    .search-box .row {
        padding: 10px;
        background: rgb(219, 220, 218);
        background: linear-gradient(90deg, rgba(219, 220, 218, 1) 0%, rgba(233, 194, 250, 1) 49%, rgba(239, 213, 209, 1) 68%, rgba(240, 215, 205, 1) 100%);
        height: 270px;
    }
}

/****Universite Logo Slider Sıralama********/

.uni-siralama-slider .swiper-wrapper {
    margin: 10px 0;
}

.uni-logo-slider {
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 7px;
    text-align: center;
}

.uni-logo-slider h1 {
    font-size: 20px;
}

.uni-logo-slider img {
    max-height: 130px;
}

.uni-logo-slider h2 {
    font-size: 16px;
    color: #000;
    margin-top: -2px;
    min-height: 34px;
}

.uni-logo-slider h3 {
    font-size: 14px;
    margin-top: -1px;
}

.btn-uni-logo {
    background-color: #003970;
    color: #fff;
    padding: 5px 30px;
    font-size: 18px;
    border-radius: 7px;
    margin-top: 20px;
    position: relative;
}

.uni-logo-slider .btn-uni-logo span {
    font-size: 15px;
}

.uni-logo-alt {
    min-height: 180px;
}


/********FAQ*************/

.faq {
    padding: 40px 0;
}

.faq .row {
    border: 0px solid;
    border-radius: 25px 25px 25px 25px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    padding: 30px;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-button {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    color: #53575d;
    background-color: #f5f5f5ef;
    font-family: 'poppins', sans-serif;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    color: #fff;
}


/**********************/

.breading-universite {
    padding: 60px 0;
    background-color: #002d70;
}

.breading-universite .bread-title {
    text-align: center;
    padding-bottom: 20px;
}

.breading-universite .bread-title h1 {
    color: #fff;
}

.breading-universite .breadcrumb a {
    font-family: 'Open Sans', sans-serif;
    color: #eeeeee;
    font-weight: 700;
    font-size: 14px;
}

@media screen and (max-width: 992px) {
    .breading-universite .bread-title {
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .breading-universite .bread-title {
        padding: 40px 40px 0px 40px;
    }
}

.uni-intro-sticky {
    position: sticky;
    top: 7.5rem;
    background-color: #fff;
    padding: 30px 0;
    z-index: 4;
}

.uni-intro-icon-area {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .uni-intro-sticky {
        position: relative;
        z-index: 1;
        margin-bottom: 120px;
        margin-top: -120px;
    }

    .uni-intro-icon-area {
        display: grid;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        grid-template-columns: 100px 100px 100px;
        padding: 20px;
        margin: 0;
    }
}

.uni-intro-icon img {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

.uni-intro-icon h2 {
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: 12px;
}

.uni-intro-icon p {
    padding-top: 8px;
    font-size: 12px;
}

.uni-intro-icon .mor {
    color: #4C51E0;
    font-weight: 600;
    margin-top: -12px;
}

.universite-main {
    padding: 20px;
}

.uni-title {
    text-align: center;
    padding-bottom: 10px;
}

.uni-left-menu {
    max-height: 640px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: -10px;
    position: sticky;
    top: 14rem;
}

.left-menu-img {
    margin-top: 0px;
    padding: 40px 0;
}

.uni-left-menu::-webkit-scrollbar {
    width: 2px;
}

.uni-left-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.uni-left-menu::-webkit-scrollbar-thumb {
    background: #747474;
}

.uni-left-menu::-webkit-scrollbar-thumb:hover {
    background-color: #4b50de;
}

.tepe {
    height: 50px;
    background-color: white;
}

#uni-mobil-menu-sticky {
    position: sticky;
    top: 59px;
    z-index: 101;
}

.uni-mobil-menu {
    background-color: #4C51E0;
    white-space: nowrap;
    overflow-x: scroll;
    z-index: 999999;
    padding: 20px 0;
    margin-bottom: 20px;
    width: 100%;
    display: none;
}

.uni-mobil-menu::-webkit-scrollbar {
    height: 6px;
}

.uni-mobil-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.uni-mobil-menu::-webkit-scrollbar-thumb {
    background: #747474;
}

.uni-mobil-menu::-webkit-scrollbar-thumb:hover {
    background-color: #4b50de;
}

.uni-mobil-menu a {
    font-size: 14px;
    padding: 0px 10px;
    color: #fff;
    font-weight: 700;
}

.tepe {
    display: none;
}

@media screen and (max-width: 992px) {
    .uni-left-menu .uni-navigation {
        display: none;
    }

    .uni-mobil-menu {
        display: block;
    }

    .uni-bilgiler {
        text-align: justify;
    }
}

@media screen and (max-width: 768px) {
    .left-menu-img {
        display: none;
    }

    .tepe {
        text-align: center;
        display: block;
    }
}


.uni-navigation {
    list-style-type: none;
    margin-top: -30px;
    padding-bottom: 20px;
}

.uni-navigation span {
    color: #a8a8a8;
    font-size: 12px;
}

.uni-navigation li {
    padding: 0px 0;
    border-bottom: 1px solid #E8E8E8;
    font-weight: 300;
    font-size: 13px;
    line-height: 32px;
    padding-left: 5px;
}

.uni-navigation a {
    font-size: 13px;
    color: #4C51E0;
    font-weight: 500;
}

.uni-bilgiler {
    list-style-type: none;
    padding-bottom: 30px;
}

.uni-bilgiler span {
    color: #4C51E0;
}

.uni-bilgiler li {
    padding: 3px 0;
    font-size: 13px;
}

.uni-bilgiler strong {
    color: #070a6e;
}

.solid-color {
    color: #96A2B8;
}

.uni-tags {
    margin-top: -14px;
    padding-bottom: 10px;
}

.uni-tags li {
    display: inline-block;
    list-style-type: none;
    padding: 4px 0;
    font-size: 12px;
    margin: 4px;
}

.uni-tags li a {
    padding: 7px 10px 5px 10px;
    border: 1px solid #e9e9e9;
    color: #777;
    font-size: 11px;
    font-weight: 300;
    text-decoration: none
}

.uni-social-media {
    padding-bottom: 15px;
}

.uni-social-media span {
    color: #4c51E0;
}

.uni-social-media li {
    display: inline-block;
    padding: 0px 4px;
}

.country {
    font-size: 12px;
    font-family: "Hind", sans-serif;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: capitalize;
    color: #999;
}

.uni-slider img {
    border-radius: 33px;
    display: block;
    width: 100%;
}

.uni-mobile-alt {
    display: none;
}

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


    #mobil_uni_bilgi {
        display: none;
    }

    #mobil_uni_tags {
        display: none;
    }

    #mobil_uni_social {
        display: none;
    }

    .uni-mobile-alt {
        display: block;
    }
}

.uni-slider .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    border: white solid 1px;
    background-color: transparent;
}

.uni-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: white;
}

.uni-slider .swiper-button-next {
    color: #fff;
}

.uni-slider .swiper-button-prev {
    color: #fff;
}

.uni-section {
    border: 0px solid;
    border-radius: 25px 25px 25px 25px;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .05);
    padding: 30px;
}

.tt p {
    text-indent: 40px;
}

.unidetay p {
    text-indent: 0;
}

.accordion_baslik strong {
    color: #1e80dc;
    font-weight: 700;
}

.rank-box {
    text-align: center;
    background-color: #ecedef;
    padding: 20px 0;
    border-radius: 8px;
    margin-bottom: 15px;
    min-height: 150px;
}


.rank-box h3 {
    font-size: 32px;
}

.rank-box p {
    font-weight: bold;
    color: #000;
    text-indent: 0px;
}

.uni-giris-content {
    padding-bottom: 30px;
}

.uni-giris-content p {
    text-indent: 40px;
}

.uni-giris-button-area {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

@media only screen and (max-width: 768px) {
    .uni-giris-button-area {
        display: flex;
        justify-content: space-around;
        flex-direction: column;
    }

    .uni-giris-button-area .border-button {
        padding: 8px 12px;
        font-size: 12px;
    }

    .uni-giris-button-area .right-side {
        padding: 20px;
    }
}

.uni-giris-content i {
    font-size: 22px;
    padding: 4px;
}

.basvuru-box {
    background-color: #dedede;
    padding: 20px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.basvuru-box h3 {
    color: #4C51E0;
    font-weight: 700;
}

.fiyat-box {
    background-color: #dedede;
    padding: 20px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.fiyat-box h3 {
    color: #4c51e0;
    font-weight: 700;
    font-size: 14px;
}

.fiyat-box p {
    color: #002d70;
    font-weight: 500;
}

.fakulteler {
    padding: 40px 0;
}

.fakulte-box {
    padding: 10px 0;
    margin-bottom: 15px;
}

.fakulte-box .fakulte-bg img {
    border-radius: 25px 25px 0px 0px;
}

.fakulte-box .uni-logo {
    position: relative;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0.5rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-top: -2rem;
    height: 60px;
    width: 100px;
    margin-bottom: 1.5rem;
    margin-left: 12px;
    order: -1;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 1px 1px 0 rgb(48 50 100 / 14%), 0 2px 1px -1px rgb(48 50 100 / 14%), 0 1px 8px 0 rgb(48 50 100 / 14%);
}

.fakulte-box-alt {
    background-color: #fff;
    padding-top: 60px;
    margin-top: -72px;
    padding-bottom: 30px;
    box-shadow: 0px 0px 80px 0px rgb(0 0 0 / 10%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.university-heading {
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    min-height: 60px;
}

.university-heading h3 {
    color: #5f5f5f;
    font-size: 14px;
}

.fakulte-bolum {
    padding-bottom: 0px;
    min-height: 80px;
    text-align: center;
}

.fakulte-bolum p {
    font-size: 13px;
    font-weight: 700;
}

.fakulte-heading {
    padding: 10px 0;
    text-align: center;
}

.fakulte-heading h2 {
    font-size: 15px;
}

.button-area {
    text-align: center;
    padding-bottom: 4px;
}

.search-result {
    padding: 20px 0;
    background-color: #f5f5f5;
}

.search-result h2 {
    color: #4C51E0;
}

.hakkimizda {
    padding: 30px 0;
}

.hizmetlerimiz {
    padding: 30px 0;
}

.sayfalama {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sayfalama a {
    text-align: center;
    background-color: #002d70;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
    margin: 5px 4px;
}

.sayfalama .aktif {
    background-color: #4b50de
}

.sayfalama a:hover {
    background-color: #001324;
    color: #fff;
}

.mg-accordion,
.mg-accordion ul {
    list-style-type: none;
}

.mg-accordion ul li {
    list-style-type: none;
}

.mg-accordion .submenu {
    display: none;
    margin-top: 10px;
}

.my-menu,
.mg-flat {
    position: relative;
    width: 100%;
    list-style-type: none;
}

.my-menu .dropdown {
    width: 100%;
}

.justify-items-evenly {
    justify-content: space-between;
}

.mg-flat span.toggler {
    float: right;
}

.mg-flat a {
    text-decoration: none;
    display: block;
}

.my-menu ul li {
    list-style-type: none;
}

.mg-flat li.dropdown a {
    padding: 10px 45px;
    background: #f4f4f4;
    color: #412604;
    border-radius: 4px;
    font-weight: 700;
}

.mg-flat li ul li.dropdown a {
    width: 100%;
    border: 0px solid rgb(255, 255, 255);
    background: #f8f8f8;
    color: #53575d;
    font-size: 12px;
    font-weight: 100;
}

.mg-flat li ul li.dropdown a.openItem {
    padding: 10px 45px;
    border: 0px solid rgb(255, 255, 255);
    background: #f8f8f8;
    color: #53575d;
    font-size: 12px;
    font-weight: 100;
}

@media only screen and (max-width: 992px) {
    .mg-flat li.dropdown a {
        width: 100%;
        background: #f4f4f4;
        color: #53575d;
        border-radius: 4px;
        font-weight: 700;
        font-size: 12px;
    }

    .mg-flat li ul li.dropdown a {
        width: 100%;
        border: 0px solid rgb(255, 255, 255);
        background: #f8f8f8;
        color: #53575d;
        font-size: 12px;
        font-weight: 100;
    }

    .mg-flat li ul li.dropdown a.openItem {
        width: 100%;
        border: 0px solid rgb(255, 255, 255);
        background: #f8f8f8;
        color: #53575d;
        font-size: 12px;
        font-weight: 100;
    }
}

@media only screen and (max-width: 415px) {
    .mg-flat li.dropdown a {
        font-size: 10px;
    }

    .mg-flat li ul li.dropdown a {
        width: 100%;
        border: 0px solid rgb(255, 255, 255);
        background: #f8f8f8;
        color: #53575d;
        font-size: 10px;
        font-weight: 100;
    }

    .mg-flat li ul li.dropdown a.openItem {
        width: 100%;
        border: 0px solid rgb(255, 255, 255);
        background: #f8f8f8;
        color: #53575d;
        font-size: 10px;
        font-weight: 100;
    }

    .mg-flat li.dropdown a.openItem {
        background: rgb(119, 71, 179);
        background: linear-gradient(90deg, rgba(119, 71, 179, 1) 0%, rgba(65, 106, 204, 1) 100%);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
    }
}

.mg-flat li ul {
    width: 100%;
}

.mg-flat li ul li ul li p {
    color: rgb(88, 88, 88);
    font-size: 12px;
}

.mg-flat li.dropdown a.openItem {
    background: rgb(119, 71, 179);
    background: linear-gradient(90deg, rgba(119, 71, 179, 1) 0%, rgba(65, 106, 204, 1) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.openItem span {
    transform: rotate(180deg);
    color: #d4d4d4;
}

.social-share a i {
    font-size: 23px;
    border-radius: 10px;
    background-color: #4D5FE3;
    color: #fff;
    padding: 8px;
    margin: 0px 10px;
}

.iletisim {
    padding: 30px 0;
    background-color: #f5f5f5;
}

.iletisim-box {
    padding: 10px 2px;
}

.iletisim-box2 {
    padding: 10px 2px;
    min-height: 285px;
}

.iletisim-box2 h2 {
    padding-bottom: 20px;
}

.iletisim-box h2 {
    padding-bottom: 20px;
}

.iletisim-box a {
    color: #252525;
    font-weight: 600;
}

.iletisim-box2 a {
    color: #252525;
    font-weight: 600;
}

.iletisim-box2 p {
    color: #252525;
    font-weight: 600;
    font-size: 14px;
}

.iletisim-box2 i {
    color: #1e80dc;
}

.iletisim-box i {
    color: #1e80dc;
}

.contact {
    padding: 30px 0;
}

.contact p {
    color: darkorange;
    font-weight: 700;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #4c51e0;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 24px;
}

.contact .php-email-form button[type=submit]:hover {
    opacity: 0.9;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #fff;
}

.register {
    padding: 30px 0;
}

.register-form .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}

.register-form .php-email-form select,
.register-form .php-email-form input,
.register-form .php-email-form textarea {
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
}

.register-form .php-email-form input:focus,
.register-form .php-email-form select:focus,
.register-form .php-email-form textarea:focus {
    border-color: #4c51e0;
}

.register-form .php-email-form input:focus,
.register-form .php-email-form textarea:focus {
    border-color: #4c51e0;
}

.register-form .php-email-form input {
    padding: 10px 15px;
}

.register-form .php-email-form select {
    padding: 10px 15px;
    color: #212529;
    opacity: 0.9;
}

.register-form .php-email-form option {
    color: #212529;
    opacity: 0.9;
    background-color: #fff;
}

.form-area-login label h4 {
    margin-top: 10px;
}

.register-form .php-email-form button[type=submit] {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    border-radius: 24px;
    font-weight: 600;
}

.register-form .php-email-form button[type=submit]:hover {
    opacity: 0.9;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #fff;
}

.filtre {
    background-color: #f5f5f5;
    padding-top: 20px;
}

.filtre-sol-menu {
    position: sticky;
    top: 140px;
    padding: 0px 10px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 680px;
    border-radius: 20px;
    background-color: #5177b0;
}

.filtre-sol-menu::-webkit-scrollbar {
    width: 1px;
}

.filtre-sol-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.filtre-sol-menu::-webkit-scrollbar-thumb {
    background: #9b9b9b;
}

.filtre-sol-menu::-webkit-scrollbar-thumb:hover {
    background-color: #030644;
}

.form-filter-reset {
    padding-top: 10px;
    text-align: center;
    margin: 0px 0px 26px 0px;
}

.form-filter h2 {
    color: white;
}

.form-filter-reset a {
    color: #fff;
    font-weight: 700;
    width: 100%;
    background-color: rgb(15 106 225);
    border-radius: 4px;
    padding: 10px;
}

.form-filter-reset a:hover {
    color: black;
}

.fd {
    display: none;
}

#filtershow {
    border: none;
    margin-bottom: 10px;
    position: sticky;
    top: 40px;
    display: none;
}


.form-filter {
    padding: 10px 0;

}

.form-filter h2 {
    font-size: 14px;
    text-transform: uppercase;
}

.form-filter .form-control {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.form-filter .form-select {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.form-filter .row {
    padding-top: 6px;
}

.form-filter select,
.form-filter input {
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
}

.form-filter input:focus,
.form-filter select:focus,
.form-filter textarea:focus {
    border-color: #4c51e0;
}

.form-filter input:focus,
.form-filter textarea:focus {
    border-color: #4c51e0;
}

.form-filter-btn {
    text-align: center;
    padding: 12px;
}

.form-filter-btn #buton {
    text-align: center;
    background: #4c51e0;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 24px;
}

.form-filter-btn #buton2 {
    text-align: center;
    background: #4c51e0;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 24px;
}

@media screen and (max-width: 992px) {
    #filtre-sol-menu {
        position: sticky;
        top: 0px;
        z-index: 10000000;
        margin-bottom: 50px;
    }
}


.ajs-message.ajs-custom {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #31708f;
}

.hakkimizda {
    background-color: #f7f7f7;
}

.hakkimizda-ust-content p {
    color: darkorange;
    font-size: 20px;
}

.hakkimizda-box {
    margin: 40px 0;
    position: relative;
}

.hakkimizda-box > .hakkimizda-content {
    padding-left: 0px;
}

.hakkimizda-box i {
    position: absolute;
}

.back-icon {
    opacity: 0.1;
    padding-left: 0px;
    font-size: 80px;
    left: 0;
}

.size-3x {
    font-size: 3em !important;
}

.size-2x {
    font-size: 2.5em !important;
}

.color {
    color: #4c51e0;
}

.hizmetlerimiz {
    background-color: #f7f7f7;
}

.hizmetlerimiz .hizmetler-intro p {
    color: darkorange;
    font-size: 20px;
}

.hizmetler-box {
    margin: 40px 0;
    position: relative;
}

.hizmetler-content .italic {
    font-style: italic;
}

.hizmetler-content p {
    padding-right: 15px;
}

.hizmetler-box > .hizmetler-content {
    display: table-cell;
    padding-left: 84px;
}

.hizmetler-box i {
    position: absolute;
}

.form-group label h4 {
    font-size: 16px;
}

.users-menu {
    position: fixed;
    width: 450px;
    right: 0px;
    top: 0px;
    padding: 13px 14px;
    background-color: #023d96;
    color: #fff;
    text-align: right;
    border-radius: 20px 0px 0px 20px;
    -webkit-box-shadow: -12px 0px 15px -5px rgba(0, 0, 0, 0.44);
    box-shadow: -12px 0px 15px -5px rgba(0, 0, 0, 0.44);
    z-index: 100;
    display: none;
    text-align: center;
}

.users-menu strong {
    font-size: 12px;
}

.users-menu strong a {
    font-size: 12px;
    color: #fff;
    margin-left: 4px;
    font-weight: 400;
}

.users-menu span {
    font-weight: 400;
}


.users-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.users-menu a:hover {
    text-decoration: none;
    color: rgb(4, 11, 77);
}

@media screen and (max-width: 992px) {
    .users-menu {
        display: block;
        top: 0px;
        width: 100%;
        border-radius: 0;
    }

    .users-menu a {
        text-decoration: none;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
    }
}


/************PROFİL***********/

.profil {
    padding: 30px 0;
}

.profil-left-menu {
    list-style-type: none;
    margin-bottom: 20px;
    position: sticky;
    top: 160px;
}

.profil-left-menu li {
    padding: 8px 0;
    /* border-bottom: 1px solid #ddd; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 6px 0;
    border-radius: 4px;
}

.profil-left-menu li a {
    font-size: 14px;
    font-weight: 700;
    color: #4c51E0;
    margin-left: 4px;
}

.profil-right-area {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 10px 20px;
    min-height: 253px;
    margin-bottom: 20px;
}

.profil-submit {
    background: #4c51e0;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    border-radius: 24px;
    font-weight: 600;
}

.favori-uni-profil {
    background-color: rgb(13, 47, 148);
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    margin: 4px 0;
    min-height: 67px;
    font-size: 14px;
}

.favori-uni-profil span {
    color: #f3f3f3;
}

.favori-uni-profil:hover {
    background-color: #4b50de;
    transition: .3s ease-in-out;
}

.profil_fav_remove {
    position: absolute;
    top: 10px;
    right: 22px;
    color: rgba(255, 255, 255, 0.705);
}

.notfound {
    padding: 60px 0;
    background: rgb(219, 220, 218);
    background: linear-gradient(90deg, rgba(219, 220, 218, 1) 0%, rgba(233, 194, 250, 1) 49%, rgba(239, 213, 209, 1) 68%, rgba(240, 215, 205, 1) 100%);
}

.not-found-content {
    text-align: center;
}

.not-found-content a {
    background-color: darkorange;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 8px;
}

.filtre-card-uni {
    margin-bottom: 20px;
}

.filtre-card-uni img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.filtre-alt-content {
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.filtre-title {
    min-height: 40px;
}

.filtre-title h3 {
    color: #707070;
    font-size: 15px;
    letter-spacing: 0px;
    font-weight: 400;
}

.filtre-ulke-sehir {
    min-height: 30px;
}

.filtre-ulke-sehir p {
    font-size: 12px;
    color: #4C51E0;
    letter-spacing: 0px;
    font-weight: 400;
    font-family: 'poppins', sans-serif;
}

.filter-buttons {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border-top: 1px solid rgba(150, 150, 150, 0.342);
    margin-bottom: 10px;
    padding: 10px 12px 4px;
}

.filter-buttons i {
    color: #707070;
    font-size: 20px;
}

.session_right_side {
    padding: 0 10px;
}

.session_right_side a {
    padding: 0px 4px;
    margin: 0px 2px;
    color: rgb(216, 216, 216);
    border-right: 1px solid #ddd;
    font-size: 12px;
}

.session_right_side a:last-child {
    border: none;
}

.header-mobil-login_session {
    line-height: 55px;
}

.header-mobil-login_session a {
    color: #fff;
    font-size: 14px;
    padding: 4px 16px;
    margin: 0px 2px;
    background-color: #053d92;
    border-radius: 2px;
}

.header-mobil-login_session a:last-child {
    border: none;
}

.filtre-login {
    background-color: #4b50de;
    color: #fff;
    padding: 10px 24px;
    border-radius: 7px;
    font-size: 14px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    transition: .3s ease-in-out;
    margin-bottom: 5px;
}

.filtre-login:hover {
    background-color: rgb(20, 20, 20);
    color: #fff;
}

.filtre-register {
    background-color: darkorange;
    color: #fff;
    padding: 10px 24px;
    border-radius: 7px;
    font-size: 14px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    transition: .3s ease-in-out;
    margin-bottom: 5px;
}

.filtre-register:hover {
    background-color: #0c0c0c;
    color: #fff;
}

.filtre-more {
    font-size: 24px;
    font-weight: 700;
    color: #003970;
    padding-bottom: 10px;
}

.bottom-buttons {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    padding: 20px 0;
}

.bottom-buttons a {
    margin: 4px 6px;
}

@media screen and (max-width: 520px) {
    .bottom-buttons {
        flex-direction: column;
    }
}

.more_filter {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #c0c0c0;
    text-align: center;
}

.profil_inline_heading {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1e80dc;
}

.footer-new-box {
    text-align: center;
    color: #fff;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 20px 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .3s ease-in;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

.footer-new-box p {
    font-size: 16px;
    font-weight: 500;
    padding-top: 5px;
    color: #003970;
}

.footer-new-box img {
    width: 140px;
}

.footer-new-box:hover {
    background-color: #e2e2e2;
}

.iletisim-head h2 {
    font-size: 22px;
}

.iletisim-content p {
    font-size: 13px;
    font-weight: 400;
}

.iletisim-social {
    display: flex;
    justify-content: flex-start;
    padding: 10px 0;
}

.iletisim-social img {
    width: 30px;
    height: 30px;
    margin: 0px 10px;
}

.program_read_more {
    color: darkorange;
    font-size: 12px;
    padding: 0;
    font-weight: 700;
    margin-left: -6px;
}

.mini-testimonial-content p {
    font-size: 10px;
    padding: 0px 5px;
    color: rgb(78, 78, 78);
}

.mini-testimonial-content {
    background-color: rgb(224, 224, 224);
    padding-top: 6px;
    padding-bottom: 1px;
    padding-left: 4px;
}

.mini-testimonial-alt {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.mini-testimonial-alt p {
    font-size: 12px;
    margin-top: 10px;
    margin-left: 5px;
    color: rgb(46, 46, 46);
}

.mini-testimonial-alt p span {
    color: rgb(134, 134, 134);
}

.mini-testimonial-alt img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.arrow {
    margin-top: -15px;
    margin-left: 10px;
}

.arrow i {
    color: rgb(224, 224, 224);
    font-size: 24px;
}

#accordion_row {
    padding: 5px 30px;
}

@media screen and (max-width: 768px) {
    #accordion_row {
        padding: 5px 15px;
    }
}

.btn-arama {
    border: none;
    text-align: center;
    width: 100%;
    margin: 10px 0;
    background-color: #995fd2;
    color: #fff;
    padding: 5px 0;
}


.content {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.content .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay {
    opacity: 1;
}

.content-image {
    width: 100%;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.content-details p {
    color: #fff;
    font-size: 0.8em;
}

.fadeIn-bottom {
    top: 80%;
}

.fadeIn-top {
    top: 20%;
}

.fadeIn-left {
    left: 20%;
}

.fadeIn-right {
    left: 80%;
}

.heading_alt {
    font-size: 26px;
    line-height: 1;
    color: #002d70;
    font-weight: 700;
}


.liveresultuni {
    max-width: 100%;
    max-height: 300px;

    position: absolute;
    border-radius: 5px;


}


.liveresultuni li {
    margin-top: -4px;
    font-size: 14px;

}

.liveresultblog {
    max-width: 30%;
    max-height: 300px;

    position: absolute;
    border-radius: 5px;
}

.liveresultblog li {
    margin-top: -4px;
    font-size: 14px;

}

@media screen and (max-width: 768px) {
    .liveresultblog {
        max-width: 70%;
    }

    .liveresultuni {
        max-width: 100%;
        max-height: 300px;
        z-index: 9999;
        position: relative;
        border-radius: 5px;


    }
}


.user-comment {
    padding: 40px 0;
}

.user-comment-area {
    margin-bottom: 20px;
}

.user-comment-area .user-comment-soru {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #1e80dc;
    color: #fff;
    padding: 10px 10px;
    font-size: 14px;
    border-radius: 4px;

}

.user-comment-soru p {
    font-size: 15px;
    color: rgb(255, 255, 255);
}

.user-comment-soru a {
    font-size: 15px;
    color: #ffffff;
    margin-top: -1px;
    font-weight: 400;


}

.user-comment-cevap {
    background-color: #eeeeee;
    margin-top: -20px;
    padding: 10px 10px;
    max-height: 180px;
    overflow-y: scroll;
}

.user-comment-cevap::-webkit-scrollbar {
    width: 4px;
}

.user-comment-cevap::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.user-comment-cevap::-webkit-scrollbar-thumb {
    background: #222222;
}

.user-comment-cevap::-webkit-scrollbar-thumb:hover {
    background-color: #4b50de;
}


.user-comment-cevap p {
    font-size: 14px;


}

.user-comment-row {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 16px 0;
    border-radius: 12px;
}


.cevap-baslik span {
    font-weight: bold;
}

.cevap-content {
    margin-left: 15px;
    margin-top: -9px;
}

.soru-sor-btn {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 12px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: .5s ease-in-out;
    margin: 4px 0;
}

.soru-sor-btn:hover {
    background: linear-gradient(270deg, #1262ad, #ee18ae);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
}

.soru-sor-area {
    text-align: center;
    padding: 20px 0;
    margin-top: -12px;

}


.yorum {
    padding: 40px 0;
}

.yorum_form {
    display: block;
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.yorum-btn-area {
    padding-top: 10px;
    text-align: right;
    margin-bottom: 20px;
}

.yorum-btn-area input:first-child {
    background: linear-gradient(270deg, #40576d, rgb(102, 102, 102));
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    border-radius: 8px;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 4px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-color: transparent;
}

.yorum-btn-area input:last-child {
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    border-radius: 8px;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 4px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-color: transparent;
}


.yorum-btn-area input:last-child:hover {
    background: linear-gradient(270deg, #1262ad, #ee18ae);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
}

.soru-box {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-bottom: 20px;
    background-color: #f7f2f2;

}


.soru-box p {
    font-size: 14px;
    margin-top: -8px;
}

.soru-box span {
    font-weight: 700;
}

.reply {
    margin-top: -8px;
}

.soru-box a {
    margin-top: -10px;
    font-size: 11px;
    font-weight: 500;
}

.cevap-box {
    margin-left: 50px;
    margin-top: 15px;
    position: relative;
}

.cevap-box a {
    font-size: 12px;
    font-weight: 700;
    color: #044075;
    position: absolute;
    margin-top: -45px;
    margin-left: -20px;


}

.cevap-box p {
    font-size: 14px;

}

.hemen_yanitla {
    font-size: 10px;
    font-weight: 600;
    color: darkorange;
    margin-top: -40px;
    margin-left: -10px;
}

.cevap-box span {
    font-weight: 700;
    color: #053d92;
}

.cevap {
    border-bottom: 1px solid rgb(228, 228, 228);
    padding: 8px 0 4px;
    margin-bottom: 10px;
}

.tarih {
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
}

.uyari {
    font-size: 14px;
    color: darkorange;
    font-weight: 600;
}

.uyari2 {
    font-size: 13px;
    color: #1e80dc;
    font-weight: 600;
}


#yorumlar {
    max-height: 600px;
    overflow-y: auto;
}

#yorumlar::-webkit-scrollbar {
    width: 2px;
}

#yorumlar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#yorumlar::-webkit-scrollbar-thumb {
    background: #747474;
}

#yorumlar::-webkit-scrollbar-thumb:hover {
    background-color: #4b50de;
}

.btn-cevap-remove {
    text-align: right;
}

.btn-cevap-remove a i {
    color: red;
}

#btnx {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(270deg, #1e80dc, #c61590);
    background-size: 300% 100%;
    background-position: 70% 50%;
    color: #fff;
    padding: 10px;
    border-radius: 0px;
    letter-spacing: 1px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: .5s ease-in-out;
    margin-bottom: 18px;
    border-color: transparent;
    display: none;
    z-index: 100;
}


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

    #btnx {
        display: block;
    }

}

.list-group-item {
    cursor: pointer;
}


.search-result2 {
    padding: 20px 0;
}

.search-result2 p {
    font-size: 18px;
    font-weight: bold;
    color: #002d70;
}

.search-result2 li {
    padding: 5px 4px 4px 9px;
    /* box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px; */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
    margin: 8px 0;
    line-height: 14px;
    min-height: 40px;
    display: flex;
    justify-content: center;

    flex-direction: column;
    border-left: 4px solid #6bb4f5;
    background-color: rgb(252, 250, 250);
}

.search-result2 span {
    color: #1e80dc;
}

.dreamtalks-intro {
    background: rgb(219, 220, 218);
    background: linear-gradient(90deg, rgba(219, 220, 218, 1) 0%, rgba(233, 194, 250, 1) 49%, rgba(239, 213, 209, 1) 68%, rgba(240, 215, 205, 1) 100%);
    padding: 60px 0;
    text-align: justify;

}

.dreamtalks-intro h1 {
    color: #002d70;
    font-size: 36px;
}

.dreamtalks-intro h2 {
    color: #4D5FE3;
    font-size: 24px;
}

.dreamtalks-intro img {
    padding: 15px;
}

.dreamtalks-konusmacilar {
    padding: 30px 0;
}

.talker-box {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
    border-radius: 5px;
    min-height: 550px;
    margin-bottom: 20px;
    background-color: #d2e0ff;
}


.talker-box img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px;
    border: 10px solid #1262ad;
    padding: 2px;
}

.talker-box .ust-alan {
    text-align: center;
}

.talker-box .ust-alan h3 {
    font-size: 16px;
}

.talker-box .ust-alan p {
    font-size: 14px;

}


.talker-box .alt-alan li {
    font-size: 13px;
    margin: 2px;
    font-family: 'Poppins', sans-serif;
    color: #212529;
    font-weight: 300;

}

.talker-box .alt-alan p {
    font-size: 13px;
    color: #212529;
    margin-left: 18px;
}


.dreambig-talker {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    min-height: 240px;
    background-color: #d2e0ff;
}

.dreambig-talker img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 10px;
    border: 10px solid #1262ad;
    padding: 2px;
}

.dreambig-talker h3 {
    font-size: 16px;
}

.dreambig-talker p {
    font-size: 14px;
}

.dreamtalks-subject {
    padding: 40px 0;
}

.dreamtalks-subject .subject-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 15px;
    border-radius: 12px;
    list-style-type: none;
}

.subject-box li {
    padding: 5px 4px 4px 9px;
    /* box-shadow: rgb(9 30 66 / 25%) 0px 4px 8px -2px, rgb(9 30 66 / 8%) 0px 0px 0px 1px; */
    box-shadow: rgb(17 17 26 / 10%) 0px 1px 0px;
    margin: 8px 0;
    line-height: 30px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-left: 4px solid #6bb4f5;
    background-color: rgb(252, 250, 250);
}

.dream-talks-form {
    background: rgb(219, 220, 218);
    background: linear-gradient(90deg, rgba(219, 220, 218, 1) 0%, rgba(233, 194, 250, 1) 49%, rgba(239, 213, 209, 1) 68%, rgba(240, 215, 205, 1) 100%);
    padding: 30px 0;
}


.dream-talks-form .form-group {
    padding: 10px;

}

.dream-talks-form .form-control {
    font-size: 14px;
}

.dream-talks-form .form-select {
    font-size: 14px;
}

.dream-talks-form .form-group p {
    color: #002d70;
    font-size: 14px;
}

.form-check-label {
    color: #002d70;
    font-weight: bold;
}

.form-check-input:checked {
    background-color: darkorange;
    border-color: darkorange;
}

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

    .dreamtalks-intro h1 {
        margin-top: 30px;
    }

    .dreamtalks-intro img {
        margin-top: 50px;
    }

    .subject-box li {
        line-height: 18px;
        margin: 15px 0;
    }
}


.modal-header {
    background-color: #002d70;
}

.modal-title {
    font-family: sans-serif;
    color: white;
    font-weight: bold;
}

.modal-content .form-group {
    margin-bottom: 10px;
}

.modal-content .form-group .login-heading {
    font-size: 12px;
}

/****New Mobile Menu **/


.ccd {
    width: 100%;
    height: 75px;
    background-color: #fff;
    position: fixed;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 99999999999999;
}

.menubox {
    position: fixed;
    right: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    transition: all 0.1s;
    z-index: 110;
}

.mlogo {
    position: fixed;
    left: 0px;
    z-index: 200;

}

.mlogo img {
    width: 80px;
    height: auto;
}

.mobile-buttons {
    position: fixed;
    width: 100%;
    text-align: center;
    top: 10px;
    text-align: center;


}

.mobile-buttons button {
    font-size: 10px;
    color: #fff;
    padding: 7px 8px;
    background-color: #003970;
    width: 70px;
    border: 0;
}


/**** */

.session-buttons {
    position: fixed;
    width: 100%;
    text-align: center;
    top: 10px;
    text-align: center;


}

.session-buttons button {
    font-size: 10px;
    color: #fff;
    padding: 7px 8px;
    background-color: #003970;
    width: 45px;
    border: 0;
}

.session-buttons a {
    background-color: #003970;
}


.openmenubox {
    width: 100%;
    display: flex;
    align-items: left;
    justify-content: left;
}

#kapat {
    cursor: pointer;
    position: absolute;
    right: 10px;
}

#ac {
    cursor: pointer;
    position: absolute;
    right: 10px;
}

.black {
    position: fixed;
    width: 300px;
    height: 100%;
    left: -300px;
    padding-top: 50px;
    background-color: #243468;
    border-right: 20px solid white;
    transition: ease-in-out 0.5s;
    z-index: 9999;
}

.black ul li {
    text-decoration: none;
    list-style-type: none;
    border-bottom: 1px solid #757575;
    padding: 10px 0 10px 5px;
}

.black ul li:hover {
    border-bottom: 1px solid #757575;
    background-color: #696ba3;
}

.black ul li a {
    color: white;
    text-decoration: none;
    list-style-type: none;
    font-size: 14px;
}

.blackboxIn {
    transform: translateX(300px);
    transition: all 0.3s;
}

.blackboxFull {
    height: 100%;
}

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

    .session-buttons button {
        font-size: 5px;
        color: #fff;
        padding: 7px 8px;
        background-color: #003970;
        width: 30px;
        border: 0;
    }


    .mobile-buttons button {
        font-size: 5px;
        color: #fff;
        padding: 7px 8px;
        background-color: #003970;
        width: 50px;
        border: 0;
    }

    .mlogo img {
        width: 60px;
        height: auto;
    }

    .black {
        width: 270px;
    }
}

.bottom-bar {
    position: fixed;
    bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 99999999999;
    text-align: center;

}

.bottom-bar a:first-child {
    background-color: darkorange;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    margin-left: 10px;

}

.bottom-bar a:nth-child(2) {
    background: #1e80dc;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    margin-left: 10px;


}

.bottom-bar a:last-child {
    background-color: #25D366;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    margin-left: 10px;


}

@media screen and (max-width: 768px) {
    .bottom-bar {
        bottom: 0;
    }

    .bottom-bar a:first-child {

        color: #fff;
        width: 33.3%;
        margin: 0;
        border-radius: 0px;
        padding: 10px 0;
    }

    .bottom-bar a:nth-child(2) {

        color: #fff;
        width: 33.3%;
        margin: 0;
        border-radius: 0px;
        padding: 10px 0;
    }

    .bottom-bar a:last-child {

        color: #fff;
        width: 33.3%;
        margin: 0;
        border-radius: 0px;
        padding: 10px 0;
    }
}


.border-button2 {
    background-color: #3362cc;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: -10px;
    font-weight: 500;
}

.border-button2:hover {
    background-color: #002d70;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: -10px;
    font-weight: 500;
}

.cities {
    width: 75%;
    border-radius: 3px;
    margin-top: 4px;
}

.cities a {
    margin: 0px;
    display: block;
    width: 100%;
    height: 100%;
}

.mobilyb {
    position: relative;
    top: 5px;
    text-align: center;
    margin: 0 auto;
}

.mobilyb a {
    background-color: darkorange;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 2px;
}

/*---------------------*/

.multiselect {
    width: 100%;
}

.selectBox {
    position: relative;
}

.selectBox select {
    width: 100%;
    font-weight: bold;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checkboxes,
#checkboxes_ulke,
#checkboxes_dil {
    display: none;
    border: 1px #dadada solid;
}

#checkboxes label,
#checkboxes_ulke label,
#checkboxes_dil label {
    display: block;
    padding: 2px 6px;
}

#checkboxes label:hover,
#checkboxes_ulke label:hover,
#checkboxes_dil label:hover {
    background-color: #1e90ff;
}