/* Created By AkinaCss */
/* Detay area */

/* main image and header area */

.mainDetay {
    width: 100%;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    border-radius: 0px 0px 40px 40px;
    z-index: 1;
}

.overlayMain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #0000007e;
    background: linear-gradient(135deg,#0000009d 50%, #06af88f3 100%);
}

.overlayMain .mainImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.overlayMain .mainImg.about {
    object-position: top;
}

.mainInside {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    z-index: 2;
    margin-top: 120px;
    padding: 50px 0px;
}

.mainText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    color: var(--white);
}

.mapping {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    color: var(--white);
    font-size: 14px;
}

.mapping a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    color: var(--white);
}
.mapping p {
    color: var(--white);
    margin-top: 2px;
}

.mapping a:hover {
    color: var(--main);
}

/* ============================================================== */

/* Detail Css Area */

.detailArea {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 100%;
    position: relative;
    z-index: 0;
    padding: 30px 0px;
}

.detailArea.pb-0 {
    padding-bottom: 0px;
}
.detailArea.pt-0 {
    padding-top: 0px;
}

.detailMain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    gap: 20px;
}

.detailMain.row {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: start !important;
    text-align: left !important;
}

.detail-txt-area {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    text-align: left;
    width: 70%;
    color: var(--color-text);
    font-size: 18px;
    gap: 10px;
}

.detail-txt-area.w-100 {
    width: 100%;
}

.detail-linkArea {
    width: 30%;
    max-height: 500px;
    min-width: 280px;
    overflow: auto;
    overflow-x: hidden;
    position: sticky;
    top: 120px;
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.detail-linkArea ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 5px;
    list-style-type: none;
    list-style-position: inside;
}

.detail-linkArea ul li {
    width: 100%;
}

.LinkHeader {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 3px solid var(--main);
    width: fit-content;
}

.detail-linkArea ul li a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
    width: 100%;
}

.detail-linkArea ul li a:hover span {
    color: var(--main);
    text-decoration: underline;
    transform: translateX(5px);
}

.detail-linkArea ul li a i,
.detail-linkArea ul li a span {
    transition: 0.3s;
}

.detail-linkArea ul li a i {
    color: var(--main);
    margin-top: 5px;
}

.detail-linkArea ul li a:hover i {
    transform: translateX(5px);
}

/* Detail Inside Area */

.service-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
}

.service-body section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
}

.service-body section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-clr);
}

.service-body section p {
    font-size: 16px;
}

.service-body .question {
    width: 100%;
    margin: 15px 0px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    border: 1px solid var(--border);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.service-body .question h2 {
    margin-bottom: 10px;
}

.qa-item {
    width: 100%;
}

.question .q {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    transition: color 0.3s, border 0.3s;
    border: 1px solid var(--border);
    padding: 10px 15px;
    border-radius: 12px;
}
.question .q:hover {
    color: var(--main);
    border: 1px solid var(--main);
}

.question .q .ico {
    margin-left: auto;
    font-size: 18px;
    display: inline-block;
    transition: transform 240ms ease;
    will-change: transform;
}

.question .a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
    font-size: 14px;
    color: var(--text-clr);
    padding: 0px 15px;
}

.question .qa-item.open .q {
    border-radius: 12px 12px 0px 0px;
    border-bottom: none;
    border-color: var(--main);
}

.question .qa-item.open .a {
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0px 0px 12px 12px;
    border-color: var(--main);
    padding-bottom: 10px;
}

.question .qa-item.open .q .ico {
    transform: rotate(180deg);
    color: var(--main);
}

.detail-txt-area ul {
    width: 100%;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
}

.detail-txt-area li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.detail-txt-area li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--main);
  font-size: 0.9em;
}

.section.contactFooter.detailContact {
    margin-top: 0px;
    z-index: 0;
    padding: 60px 0px 0px 0px;
}

.section.contactFooter.detailContact .sectionInside {
    width: 80% !important;
    max-width: 100% !important;
    background-color: var(--bg);
    padding: 50px 0px;
    overflow: hidden;
    border-radius: 40px;
    align-items: center;
}

/* ============================================================== */

/* Search-number pages Css Area */

.searchArea {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    gap: 30px;
}

.searchArea .headerTextArea {
    width: 100%;
}

.searchAreaInside {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.searchAreaInside .newsItem {
    flex: 1 1 25%;
    width: 25%;
    max-width: calc(25% - 20px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 10px;
    border-radius: 12px;
    transition: 0.3s;
    background-color: var(--white);
    padding: 10px;
    border: 1px solid var(--border);
}


.searchAreaInside .newsItem:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.searchAreaInside .newsItem .newsImg {
    height: 250px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 7px;
}

.searchAreaInside .newsItem .newsImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.searchAreaInside .newsItem h4 {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
    text-indent: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    transition: 0.3s;
}

.searchAreaInside .newsItem h4 span {
    position: absolute;
    left: 0;
    top: .50em;
    width: 20px;
    height: 5px;
    background: var(--main);
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}

.newsItem:hover h4 span {
    width: 35px;
}
.newsItem:hover h4  {
    text-indent: 45px;
    color: var(--main);
}

.newsItem:hover .newsImg img  {
    transform: scale(1.1) translateY(-10px);
}

/* ============================================================== */

/* Page Navigator Css Start */

.page-navigator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.page-navigator-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.page-navigator-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
    border-radius: 100%;
    transition: 0.3s;
    color: var(--text-clr);
    background-color: transparent;
    font-weight: 400;
    outline: none;
}

.page-navigator-btn.active {
    color: var(--white);
    background-color: var(--main);
}

.page-navigator-btn:hover {
    color: var(--white);
    background-color: var(--mainHover);
}

/* ============================================================== */

/* Form Css Area */

.detailArea.color1 {
    position: relative;
    z-index: 0;
}

.formArea {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 10px;
    margin-top: 40px;
}

.custom-form {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 15px;
    padding: 50px 30px;
    border-radius: 40px;
    border: 1px solid var(--border);
    box-shadow: 0px 0px 10px #0000002c;
}

.formRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
}

.form-group {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
}

.form-group.w-100 {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    transition: color 0.3s;
}

.custom-form input, .custom-form textarea, .custom-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--main);
    border-radius: 10px;
    box-sizing: border-box;
    outline: none;
    transition: 0.3s;
}

.form-group:hover label {
  color: var(--main);
}

.custom-form input:valid,
.custom-form input:focus,
.custom-form input:hover,
.custom-form input:active {
    border: 1px solid var(--mainHover);
}

.custom-form textarea {
    resize: vertical;
    transition: 0.3s;
}

.custom-form textarea:valid,
.custom-form textarea:focus,
.custom-form textarea:active {
    border: 2px solid var(--mainHover);
}

.custom-select-container {
    position: relative;
}

.myBtn.formBtn {
    padding: 10px 20px;
    font-size: 22px;
    border-radius: 12px;
}

.g-recaptcha {
    margin-top: 15px;
}

.serviceBox.adress h4 {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* ============================================================== */

/* Certificate Area Start */

.sertifikaAlan {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
    padding: 20px 0px;
}

.sorguContainer {
    text-align: left;
    width: 100%;
    position: relative;
}

.sorguSearch-container {
    display: flex;
    margin: 20px 0px;
}

.sorguSearch-container input {
    padding: 10px;
    font-size: 1rem;
    border: 2px solid var(--main);
    border-radius: 12px;
    outline: none;
    flex: 1;
    width: 100%;
    transition: 0.3s;
}

.sorguSearch-container input:hover {
    border: 2px solid var(--mainHover);
}

.sorguSearch-container input:valid,
.sorguSearch-container input:focus,
.sorguSearch-container input:active {
    border: 2px solid var(--mainHover);
}

.sorguBtn {
    padding: 10px 15px;
    font-size: 22px;
    color: var(--white);
    background-color: var(--main);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid var(--main);
    transition: 0.3s;
    margin-bottom: 10px;
}

.sorguBtn:hover {
    color: var(--main);
    background-color: var(--white);
}

.sertifikaAlan p {
    font-size: 16px !important;
}

.sorguSonuc {
    text-align: left;
    width: 100%;
    background-color: var(--white);
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
}

.icerikBoxbg {
    text-align: left;
    width: 100%;
    padding: 50px;
    border: 1px solid var(--border);
    box-shadow: 0px 0px 10px #0000002c;
    border-radius: 25px;
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
}

.sertifikaAlan h2 {
    font-size: 40px;
}

.sertifikaAlan p {
    font-size: 18px;
}

.basvurBtn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--main);
    color: var(--white);
    font-weight: 900;
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.basvurBtn:hover {
    border: 2px solid var(--main);
    background-color: transparent;
    color: var(--main) !important;
    transform: translateX(0);
}

.sorguSonuc .basvurBtn {
    text-decoration: none !important;
}

.sorguSonuc .basvurBtn:hover {
    text-decoration: none !important;
    color: var(--main) !important;
    transform: translateX(0) !important;
}

.icerikBoxbg.success strong {
    font-size: 18px !important;
}

.icerikBoxbg.success p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: baseline;
    border-bottom: 1px solid var(--mainHover);
    gap: 20px;
}

.icerikBoxbg .topP {
    border: none !important;
}

/* Certificate Area End */

/* ============================================================== */

/* site map Css Area */

.siteMapArea {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
}

.section-title {
    color: var(--main);
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
    text-decoration: none;
}

.section-title:hover {
    text-decoration: underline;
}

.link-group {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding-left: 15px;
}
.link-column {
    width: 100%;
}

.link-column a {
    display: block;
    color: var(--bg);
    text-decoration: none;
    margin: 5px 0;
    font-weight: 500;
}

.link-column a:hover {
    color: var(--main);
    text-decoration: underline;
}

.link-column i {
    margin-right: 5px;
}

.sub-link {
    padding-left: 15px;
    font-size: 16px !important;
    font-weight: 300 !important;
}

.sub-link2 {
    padding-left: 30px;
    font-size: 14px !important;
    font-weight: 300 !important;
}

.hrMap {
    width: 100%;
    border: 1px solid var(--border);
}

/* ============================================================== */

/* accreditations Area */

.detail-txt-area.w-100.gap-20 {
    gap: 20px;
}

.detail-txt-area.w-100.gap-20 .headerTextArea .h2Header {
    text-align: left;
    justify-content: flex-start;
    flex-direction: row;
    gap: 20px;
}

.highlightInside.coreArea .highlightBox {
    cursor: default;
}

.highlightInside.coreArea .highlightBox .highlightTextInside {
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.btnGroup {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.aboutImg1 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 0px 10px #0000002c;
    transition: 0.3s;
}

.aboutImg1.scale {
    object-fit: scale-down;
}

.newsImg1 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 0px 10px #0000002c;
    transition: 0.3s;
    margin-bottom: 20px;
}

/* accreditations Area */

/* ============================================================== */

/* whychoose Area */

.whychoose li::before {
    content: "\f00c";
}

.endAbout {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background-color: var(--bg);
    color: var(--white);
    font-size: 22px;
    font-style: italic;
}

.highlightInside.coreArea .highlightBox img {
    object-position: center center;
}

.highlightInside.coreArea .highlightBox:nth-child(3) {
    border-radius: 0px 0px 0px 0px;
}
.highlightInside.coreArea .highlightBox:nth-child(4) {
    border-radius: 0px 0px 0px 0px;
}

.highlightInside.coreArea .highlightBox:nth-child(5) {
    border-radius: 0px 0px 0px 12px;
}
.highlightInside.coreArea .highlightBox:nth-child(6) {
    border-radius: 0px 0px 12px 0px;
}

/* whychoose Area */

/* ============================================================== */

/* 404 Area */

.top-bg {
    position: absolute;
    top: 0px;
    bottom: 0px;
    height: 100%;
    z-index: 0;
    width: 100%;
    background:linear-gradient(180deg,#0e1115 0%, #12171d 60%, #0e1318 100%);
    z-index: -1;
}

.detailArea.aboutUs.not {
    background:linear-gradient(180deg,#0e1115 0%, #12171d 60%, #0e1318 100%);
    color: #e7edf3;
    position: relative;
}

.notPage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    min-height: 650px;
    width: 100%;
    padding-top: 120px;
}

.badge {
    display: inline-flex;
    align-items: center;
    color: var(--main);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.84rem;
    gap: 10px;
}
.badge::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--main);
    box-shadow: 0 0 0 6px rgba(6,175,136,.12);
}

.notPage p {
    color: #9aa7b4;
}

.actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    flex-wrap: wrap;
    gap: 12px;
}

.btnNot {
    appearance: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    padding: 12px 18px;
    border-radius: 12px;
    transition: 0.2s;
}

.btn-act {
    color: rgb(0, 20, 13);
    box-shadow: rgba(6, 175, 136, 0.35) 0px 6px 16px;
    background: var(--main);
}
.btn-act:hover {
    filter: brightness(1.5)
}

.btn-ghost {
    color: #e7edf3;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(42, 51, 64);
    border-image: initial;
}
.btn-ghost:hover {
    border-color: #3a4656;
    background: #171e26;
    filter: brightness(1.5)
}

/* 404 Area */

/* ============================================================== */

/* table Area */

.service-body table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.service-body table th, .service-body table td {
    border: 1px solid var(--border);
    padding: 12px 15px;
    text-align: left;
    font-size: 15px;
    width: auto;
}

.service-body table th {
    background-color: var(--main);
    color: var(--white);
    font-size: 16px;
    width: auto;
}

/* table Area */

/* ============================================================== */

/* Responsive Area */

@media (min-width: 1921px) {
    .mainInside, .detailMain, .searchArea, .siteMapArea, .section.contactFooter.detailContact .sectionInside {
        max-width: 1800px;
    }
}

@media (max-width: 1300px) {
    .mainText h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1200px) {
    .mainInside, .detailMain, .searchArea, .siteMapArea, .section.contactFooter.detailContact .sectionInside {
        width: 90% !important;
    }
}

@media (max-width: 1100px) {
    .searchAreaInside .newsItem {
        flex: 1 1 33%;
        width: 33%;
        max-width: calc(33% - 20px);
    }
}

@media (max-width: 1000px) {
    .detail-txt-area strong {
        font-size: 20px;
    }
    .detail-txt-area, .detail-txt-area li strong {
        font-size: 16px;
    }
}

@media (max-width: 960px) {
    .mainText h1 {
        font-size: 2rem;
    }
}

@media (max-width: 950px) {
    .detailMain.row {
        flex-direction: column-reverse !important;
    }
    .detail-linkArea {
        width: 100%;
        position: relative;
        top: 0px;
    }
    .detail-txt-area {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .searchAreaInside .newsItem {
        flex: 1 1 50%;
        width: 50%;
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .formArea {
        text-align: center;
    }

    .highlightInside.coreArea .highlightBox:nth-child(5) {
        border-radius: 0px 0px 0px 0px;
    }
    .highlightInside.coreArea .highlightBox:nth-child(6) {
        border-radius: 0px 0px 12px 12px;
    }
}

@media (max-width: 650px) {
    .mainText h1 {
        font-size: 1.8rem;
    }
    .mapping p, .mapping a {
        font-size: 0.8rem;
    }

    .detail-txt-area strong {
        font-size: 18px;
    }

    .icerikBoxbg.success p {
        flex-direction: column;
    }
    .icerikBoxbg {
        padding: 50px 20px;
    }
}

@media (max-width: 600px) {
    .searchAreaInside .newsItem {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .myBtn.formBtn {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .formRow {
        flex-direction: column;
        gap: 15px;
    }
    .form-group {
        width: 100%;
    }

    .notPage h1 {
        font-size: 22px;
    }
}

@media (max-width: 450px) {
    .mainText h1 {
        font-size: 1.6rem;
    }
}

/* Created By AkinaCss */

/* ========================================================= */