/* Created By AkinaCss */
/* contactHeader area */

.contactHeader {
    position: relative;
    width: 100%;
    height: auto;
    height: 170px;
    overflow: hidden;
}

/* ===================================================== */

/* Iletisim Css */

.iletisimArea {
    width: 72%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
}

.iletisimTxt {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    padding: 10px;
    gap: 20px;
}
.iletisimTxt h2 {
    font-size: clamp(52px, 2.708vw, 52px);
    font-weight: 500;
}
.iletisimTxt p {
    font-size: clamp(16px, 0.938vw, 18px);
    font-family: var(--text);
}

.iletisimRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.iletisimRow img {
    height: 70px;
    width: 70px;
    object-fit: scale-down;
}
.iletisimRow a {
    font-size: clamp(18px, 0.938vw, 18px);
    font-weight: 500;
    color: var(--black);
}
.iletisimRow a:hover {
    color: var(--mainBold);
    transform: translateX(10px);
}

.iletisimHarita {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    position: relative;
    overflow: hidden;
}
.iletisimHarita iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
}

/* ===================================================== */

/* katolog Css */

.bgKatalog1 {
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0px;
}

.bgWhite1 {
    background-color: var(--white);
}

.mainClr1 {
    color: var(--main) !important;
}

.MainBtn1 {
    background-color: var(--white);
    color: var(--main) !important;
    border: 1px solid var(--main);
    border-radius: 4px;
    font-family: var(--text) !important;
    font-weight: 100 !important;
    transition: 0.3s !important;
}
.MainBtn1:hover {
    background-color: var(--bgDark);
    color: var(--white) !important;
    border: 1px solid var(--bgDark);
}

/* ===================================================== */

/* video Css */

.videoSection {
    padding: 200px 0px;
    position: sticky;
    top: 0;
}

.video1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.videoTxt {
    width: 72%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}

.videoMain {
    width: 50%;
    padding: 50px 20px;
    border-radius: 10px;
    background-color: #a39161c2;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    color: var(--white);
}

.videoMain h2 {    
    font-size: clamp(42px, 2.188vw, 42px);
}
.videoMain p {
    font-size: clamp(18px, 0.938vw, 20px);
}

.videoBtn {
    background-color: #ffffff6c;
    border: 1px solid var(--white);
    font-size: clamp(16px, 1.146vw, 16px);
    border-radius: 8px;
    color: var(--white);
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    transition: 0.3s !important;
}
.videoBtn:hover {
    background-color: var(--white);
    color: var(--main);
}
.videoBtn:hover svg path {
    fill: var(--main);
}

.videoBtn svg {
    transition: 0.3s;
    width: 20px;
    height: 20px;
}

.videoBtn svg path {
    fill: var(--white);
    transition: 0.3s;
}

/* ===================================================== */

/* Form Css */

.overflowh {
    overflow: hidden;
}

.FormArea {
    width: 72%;
    padding: 100px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 100px;
}

.formDiv {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 30px;
    background-color: var(--white);
    box-shadow: rgba(124, 124, 124, 0.3) 0px 0px 10px 5px;
    border-radius: 20px;
    max-width: 600px;
}

.formCol {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 5px;
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 5px;
}

.formCol label {
    color: var(--textClr);
    font-family: var(--text);
    font-size: 16px;
}

.formCol input {
    width: 100%;
    max-height: 42px;
    font-size: 16px;
    color: var(--black);
    height: 42px;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--border);
    outline: none;
    padding: 12px 10px;
    transition: border 0.3s, border-radius 0.3s;
    z-index: 0;
}
.formCol input:hover {
    border: 1px solid var(--main);
    border-radius: 10px;
}
.formCol input:focus {
    border: 1px solid var(--main);
    border-radius: 10px;
}
.formCol input:valid {
    border: 1px solid var(--main);
    border-radius: 10px;
}
.formCol input:active {
    border: 1px solid var(--main);
    border-radius: 10px;
}

.formCol input::placeholder {
    font-size: 16px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-selected {
    padding: 10px;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    color: var(--black);
    position: relative;
    padding-right: 25px;
    max-height: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border 0.3s, border-radius 0.3s;
    font-size: 18px;
}

.select-selected.selected-active {
    border: 1px solid var(--main);
    border-radius: 10px;
    font-size: 16px;
}
.select-selected:hover {
    border: 1px solid var(--main);
    border-radius: 10px;
}

.select-selected.active {
    border: 1px solid var(--main);
    border-radius: 10px;
}

.select-arrow {
    position: absolute;
    right: 10px;
    pointer-events: none;
    transition: transform 0.3s; /* Menü açıldığında dönüş efekti */
}

.select-selected.active .select-arrow {
    transform: rotate(180deg);
}

.select-items {
    display: none;
    position: absolute;
    width: 100%;
    border: 1px solid var(--border);
    max-height: 200px;
    overflow-y: auto;
    background-color: var(--white);
    z-index: 9;
    color: var(--black);
    border-radius: 10px;
}

.select-items::-webkit-scrollbar {
    width: 3px;
}
/* Track */
.select-items::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0px;
}

.select-selected.initial-option {
    color: #767676;
}

.select-items li {
    padding: 10px;
    cursor: pointer;
    height: 40px;
}

.select-selected.active + .select-items {
    display: block;
}

.select-items li:hover {
    background-color: var(--main);
}

.formDivRow.wNew {
    z-index: 9;
}

.wNew .formCol {
    width: 30% !important;
}
.wNew .wnew1 {
    width: 40% !important;
}

.formCol textarea {
    width: 100%;
    font-size: 16px;
    color: var(--black);
    border: 1px solid transparent;
    border-bottom: 1px solid var(--border);
    outline: none;
    padding: 12px 10px;
    transition: border 0.3s, border-radius 0.3s;
    resize: unset;
}
.formCol textarea:hover {
    border: 1px solid var(--main);
    border-radius: 10px;
}
.formCol textarea:focus {
    border: 1px solid var(--main);
    border-radius: 10px;
}
.formCol textarea:valid {
    border: 1px solid var(--main);
    border-radius: 10px;
}
.formCol textarea:active {
    border: 1px solid var(--main);
    border-radius: 10px;
}

textarea::-webkit-scrollbar {
    width: 3px;
}
/* Track */
textarea::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0px;
}

.cv-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.cv-button svg {
    width: 25px;
    height: 25px;
}
.cv-button svg path {
    stroke: var(--main);
    transition: stroke 0.3s;
}

.cv-button:hover svg path {
    stroke: var(--white);
}

.file-container {
    margin-top: 10px;
    display: flex;
    align-items: start;
}

.file-container img {
    margin-right: 10px;
    object-fit: scale-down;
    height: 50px;
}

.file-container p {
    margin: 0;
}

.formDivRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
}

.FormTxt {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
}

.FormTxtRight h2 {
    font-size: clamp(52px, 2.708vw, 60px);
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 600;
}
.FormTxtRight p {
    font-family: var(--text);
    margin-bottom: 20px;
    font-size: clamp(16px, 0.938vw, 18px);
}

.MainBtn2 {
    width: 100%;
    background-color: var(--main);
    color: var(--white) !important;
    border: 1px solid var(--main);
    border-radius: 4px;
    font-family: var(--text) !important;
    font-weight: 100 !important;
    transition: 0.3s !important;
    font-size: 16px;
}
.MainBtn2:hover {
    background-color: var(--bgDark);
    color: var(--white) !important;
    border: 1px solid var(--bgDark);
}

/* ===================================================== */

/* Responsive Css */

@media (min-width: 1921px) {
    .iletisimArea, .katologInside, .videoTxt, .FormArea {
        max-width: 1600px;
    }
}

@media (max-width:1300px) {
    .FormArea {
        gap: 50px;
    }
}

@media (max-width:1200px) {
    .videoMain {
        width: 70%;
    }
    .FormArea {
        width: 85%;
    }
}

@media (max-width:1080px) {
    .iletisimArea {
        width: 78%;
    }
    .iletisimRow img {
        height: 50px;
        width: 50px;
    }
}

@media (max-width:1010px) {
    .FormTxtRight h2 {
        font-size: max(2.708vw, 40px);
    }
}

@media (max-width:950px) {
    .iletisimArea {
        width: 85%;
    }
    .videoTxt {
        width: 85%;
    }
}

@media (max-width:800px) {
    .FormArea {
        padding: 50px 0px;
        flex-direction: column-reverse;
    }
    .FormTxt {
        width: 100%;
    }
    .formDiv {
        width: 100%;
    }
}

@media (max-width:750px) {
    .iletisimArea {
        flex-direction: column;
    }
    .iletisimTxt {
        width: 100%;
    }
    .iletisimHarita {
        width: 100%;
        height: 300px;
    }
    .iletisimRow img {
        height: 50px;
        width: 50px;
    }
    .contactHeader {
        position: relative;
        width: 100%;
        height: auto;
        height: 170px;
        overflow: hidden;
    }

    .contactHeader {
        height: 120px;
    }
}

@media (max-width:650px) {
    .videoMain {
        width: 90%;
    }
}

@media (max-width:450px) {
    .iletisimRow a {
        font-size: max(0.938vw, 16px);
    }
}

@media (max-width:400px) {
    .videoMain {
        width: 100%;
    }
    .videoMain h2 {
        font-size: max(2.188vw, 35px);
    }
    .select-items li {
        padding: 5px;
    }
}

@media (max-width:375px) {
    .iletisimRow a {
        font-size: max(0.938vw, 14px);
    }
}