
:root {
    --primary-color: #FFFFFF;
    --secondary-color: #910000;
    --gray-color: #ECECEC;
    --dark-color: #000000;
}

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    background: transparent;
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

body.passive {
    overflow: hidden;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/*-----------Header-----------*/
header {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    padding: 42px 30px;
    z-index: 50;
    top: 0;
    left: 0;
    background: transparent;
    transition: all ease 0.5s;
}

header.left {
    left: -50%;
    background: transparent !important;
    z-index: 999;
}

/* header.active {
    background: var(--secondary-color);
} */
header .header-logo img {
    width: 202px;
}

header.left .header-nav {
    display: none;
}

.header-nav ul {
    display: flex;
    align-items: center;
}

.header-nav ul li {
    margin-right: 44px;
}

.header-nav ul li:last-child {
    margin-right: 0;
}

.header-nav ul li a {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
}

.header-nav ul li a:hover {
    background: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 10px;
}

header.active .header-nav ul li a:hover {
    background: var(--dark-color);
}

.header-contact {
    position: relative;
}

.header-contact::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 35px;
    background: var(--primary-color);
    top: -42px;
    right: 58px;
    z-index: 1;
}

.header-contact::after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100vh - 102px);
    background: var(--primary-color);
    top: 60px;
    right: 58px;
    z-index: 1;
}

.header-contact button {
    width: 137px;
    height: 53px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    letter-spacing: 0;
    padding: 10px;
    position: relative;
    z-index: 5;
    transition: all ease 0.5s;
}

.header-contact button i {
    transition: all ease 0.5s;
}

.header-contact button.active {
    display: flex;
    flex-direction: row-reverse;
}

.header-contact button.active i {
    transform: rotateY(180deg);
}

.header-contact button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

header.left .header-contact button:hover {
    background: var(--dark-color);
    border: 1px solid var(--dark-color);
}

header.left .mini-menu-btn {
    display: none !important;
}

.mini-menu-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mini-menu-btn span {
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    margin-bottom: 5px;
}

.mini-menu {
    width: 100vw;
    height: 100vh;
    padding: 20px;
    background: var(--secondary-color);
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -150%;
    left: 0;
    transition: all ease 0.5s;
}

.mini-menu.active {
    top: 0;
}

.mini-menu-top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

.mini-menu-top .mini-menu-logo img {
    width: 150px;
}

.mini-menu ul li {
    margin-bottom: 15px;
}

.mini-menu ul li a {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 400;
    transition: all ease 0.5s;
}

.mini-menu-close {
    display: flex;
    flex-direction: column;
}

.mini-menu-close span {
    width: 30px;
    height: 1px;
    background: var(--primary-color);
}

.mini-menu-close span:nth-child(1) {
    transform: rotate(45deg);
    margin-bottom: -1px;
}

.mini-menu-close span:nth-child(2) {
    transform: rotate(-45deg);
}



/*-----------Modal-Contact-Form-----------*/
.contact-form-modal {
    width: 100vw;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 100;
    position: fixed;
    top: 0;
    right: -200%;
    transition: all ease 1s;
}

.contact-form-modal.active {
    right: 0;
}

.contact-form-modal-content {
    display: flex;
}

.contact-form-modal-content .contact-form-modal-left {
    width: 40%;
}

.contact-form-modal-content .contact-form-modal-right {
    width: 60%;
}

.contact-form-modal-content .contact-form-modal-left {
    height: 100vh;
    position: relative;
}
.contact-form-modal-content .contact-form-modal-left .contact-form-modal-map::before {
    pointer-events: none;
}
.contact-form-modal-content .contact-form-modal-left .contact-form-modal-map,
.contact-form-modal-content .contact-form-modal-left iframe {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-form-modal-content .contact-form-modal-left .contact-form-modal-map::before {
    content: "";
    position: absolute;
    background: #00000080;
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    left: 0;
	pointer-events: none;
}

.contact-form-map-btn {
    position: absolute;
    z-index: 25;
    left: calc(50% - 150px);
    top: calc(50% - 70px);
}

.contact-form-map-btn a .carousel-project-btn-image img {
    width: 75px;
}

.contact-form-map-btn a {
    display: flex;
    align-items: center;
}

.contact-form-map-btn a .carousel-project-btn-image {
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(50% 50% at 50% 50%, #3C1414 0%, #910000 100%);
    border-radius: 100%;
    position: relative;
    z-index: 15;
}

.contact-form-map-btn a .carousel-project-btn-image::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: #FFF;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    z-index: -50;
}

.contact-form-map-btn a span {
    width: 250px;
    height: 100px;
    display: flex;
    justify-content: end;
    align-items: center;
    background: linear-gradient(90deg, #3C1414 0%, #910000 100%);
    padding: 15px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight:400;
    border-radius: 10px;
    margin-left: -85px;
}


.contact-form-modal-header {
    width: 100%;
    padding: 180px 80px 0px 190px;
    border-bottom: 1px solid var(--primary-color);
}

.contact-form-modal-header h5 {
    font-size: 64px;
    font-weight:275;
    color: var(--primary-color);
}

.contact-form-modal-header h5 span {
    font-weight:400;
    color: var(--primary-color);
}

.modal-contact-form {
    padding: 120px 80px 120px 190px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-contact-form .input-group {
    width: 50%;
    margin-bottom: 50px;
}

.modal-contact-form .input-group input {
    width: 100%;
    border: none;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 25px;
    font-weight:275;
    background: transparent !important;
    outline: none;
    padding: 15px 0;
    transition: all ease 0.5s;
}

.modal-contact-form .input-group input::placeholder,
.modal-contact-form textarea::placeholder {
    color: #ECECEC;
}

.modal-contact-form .input-group input:hover,
.modal-contact-form .input-group input:focus,
.modal-contact-form textarea:focus,
.modal-contact-form textarea:focus {
    padding: 15px;
    border: 1px solid var(--primary-color);
}

.modal-contact-form textarea {
    width: 100%;
    border: none;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 25px;
    font-weight:275;
    background: transparent !important;
    outline: none;
    padding: 15px 0;
    margin-bottom: 50px;
    height: 75px;
    transition: all ease 0.5s;
}

.modal-contact-form button {
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all ease 0.5s;
}

.modal-contact-form button:hover {
    background: var(--dark-color);
}



.email-link {
    font-size: 20px !important;      
    font-weight: normal !important;  
    color: #fff !important;         
    text-decoration: none !important;
    display: inline !important;     
}




.contact-form-modal-footer {
    padding: 0 80px 0 190px;
}

.contact-form-modal-info {
    display: flex;
    flex-direction: column;
}

.contact-form-modal-info span {
    color: var(--primary-color);
    font-weight: 275;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-form-modal-info p,
.contact-form-modal-info a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
}

.contact-form-modal-info ul {
    display: flex;
    align-items: center;
}

.contact-form-modal-info ul li {
    margin-right: 10px;
}

.contact-form-modal-info ul li:last-child {
    margin-right: 0;
}

.contact-form-modal-info ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 13px;
    transform: rotateY(0deg);
    transition: all ease 0.5s;
}

.contact-form-modal-info ul li a:hover {
    transform: rotateY(360deg);
}

/*-----------Home-Slider-----------*/
.home-slider {
    position: relative;
    border-bottom: 1px solid var(--primary-color);
}

.home-slider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000A3;
    z-index: 3;
}

.home-slider .carousel .carousel-inner .carousel-item {
    max-height: 100vh;
}

.home-slider .carousel .carousel-inner .carousel-item .carousel-caption,
.home-slider .carousel .carousel-inner .carousel-item .btn-carousel-proje,
.home-slider .carousel .carousel-indicators {
    z-index: 5;
}

.home-slider .carousel .carousel-inner .carousel-item .carousel-caption {
    top: 15%;
}

.home-slider .carousel .carousel-inner .carousel-item .carousel-caption h5 {
    font-size: 64px;
    font-weight:275;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.home-slider .carousel .carousel-inner .carousel-item .carousel-caption h5 span {
    font-weight:700;
}

.home-slider .carousel .carousel-inner .carousel-item .carousel-caption p {
    font-size: 20px;
    font-weight:300;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.home-slider .carousel .carousel-inner .carousel-item .carousel-caption .btn-carousel-proje {
    display: flex;
    justify-content: center;
}

.home-slider .carousel .carousel-inner .carousel-item .carousel-caption a {
    width: 400px;
    height: 75px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    font-size: 24px;
    color: var(--primary-color);
    font-weight:600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition: all ease 0.5s;
}

.home-slider .carousel .carousel-inner .carousel-item .carousel-caption a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.home-slider .carousel .carousel-indicators {
    right: auto;
    left: 0;
    margin-right: auto;
    margin-left: 40px;
    top: 0;
    flex-direction: column;
    height: 100%;
}

.home-slider .carousel .carousel-indicators button {
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.home-slider .slider-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.home-slider .slider-bottom a {
    width: 300px;
    height: 300px;
    border: 1px solid #FFFFFF80;
    border-radius: 100%;
    margin-bottom: -150px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    font-weight:300;
    padding: 50px;
    transition: all ease 0.5s;
}

.home-slider .slider-bottom a:hover {
    border: 1px solid #FFF;
}

.home-slider .slider-bottom a i {
    transition: all ease 0.5s;
}

.home-slider .slider-bottom a:hover i {
    animation: asagiKaydir 1s infinite;
}

@keyframes asagiKaydir {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: 10px;
    }

    100% {
        margin-top: 0;
    }
}

.home-slider .carousel-project-btn {
    position: absolute;
    z-index: 25;
    left: 40px;
    bottom: 50px;
}

.home-slider .carousel-project-btn a .carousel-project-btn-image img {
    width: 100px;
}

.home-slider .carousel-project-btn a {
    display: flex;
    align-items: center;
}

.home-slider .carousel-project-btn a .carousel-project-btn-image {
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(50% 50% at 50% 50%, #3C1414 0%, #910000 100%);
    border-radius: 100%;
    position: relative;
    z-index: 15;
}

.home-slider .carousel-project-btn a .carousel-project-btn-image::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: #FFF;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    z-index: -50;
}

.home-slider .carousel-project-btn a span {
    width: 250px;
    height: 100px;
    display: flex;
    justify-content: end;
    align-items: center;
    background: linear-gradient(90deg, #3C1414 0%, #910000 100%);
    padding: 15px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight:400;
    border-radius: 10px;
    margin-left: -85px;
}

/*-----------Home-Corporate-----------*/
.home-corporate {
    background: var(--dark-color);
    position: relative;
    z-index: 25;
    padding-top: 40px;
    padding-left: 40px;
}

.home-corporate-title {
    position: relative;
}

.home-corporate-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    top: calc(50% - 0.5px);
    left: 20%;
}

.home-corporate-title h5 {
    font-size: 64px;
    font-weight:275;
    color: var(--gray-color);
}

.home-corporate-title h5 span {
    font-weight:600;
}

.home-corporate-content .row {
    margin-top: -45px;
}

.home-corporate-text {
    padding-top: 60px;
    padding-bottom: 40px;
    padding-right: 40px;
    border-right: 1px solid var(--primary-color);
}

.home-corporate-text p {
    font-size: 20px;
    font-weight:300;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.home-corporate-text a {
    width: 65%;
    height: 75px;
    border: 1px solid var(--primary-color);
    font-size: 24px;
    font-weight:600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border-radius: 10px;
    color: var(--primary-color);
    transition: all ease 0.5s;
}

.home-corporate-text a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.home-corporate-count-col {
    margin-top: -45px;
    padding-top: 60px;
    padding-bottom: 40px;
    border-right: 1px solid var(--primary-color);
}

.home-corporate-count {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.home-corporate-count .home-corporate-count-icon {
    margin-right: 10px;
}

.home-corporate-count-icon img {
    max-width: 100%;
}

.home-corporate-count .home-corporate-count-text {
    display: flex;
    flex-direction: column;
}

.home-corporate-count .home-corporate-count-text span:nth-child(1) {
    font-size: 40px;
    color: var(--primary-color);
    font-weight:600;
}

.home-corporate-count .home-corporate-count-text span:nth-child(2) {
    font-size: 20px;
    color: var(--primary-color);
    font-weight:400;
}

/*-----------Home-project-----------*/
.home-project-title {
    padding-left: 40px;
    position: relative;
    z-index: 30;
}

.home-project-title nav {
    border: none;
    padding-left: 40px;
    padding-top: 50px;
    padding-right: 40px;
    border-right: 1px solid var(--dark-color);
}

.home-project-title .nav {
    border: none !important;
}

.home-project-title .nav-link {
    border: none !important;
    font-size: 20px;
    color: var(--dark-color);
    font-weight:400;
    opacity: 1;
    background: transparent !important;
}

.home-project-title .nav-link.active {
    font-weight:700;
}

.home-project-col {
    margin-top: -45px;
    padding-top: 60px;
    padding-bottom: 40px;
    border-right: 1px solid var(--dark-color);
}

.home-project-title2 {
    position: relative;
    display: flex;
    justify-content: end;
    padding-right: 40px;
    margin-top: -44px;
}

.home-project-title2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--dark-color);
    top: calc(50% - 0.5px);
    right: 30%;
}

.home-project-title2 h5 {
    font-size: 64px;
    font-weight:275;
    color: var(--dark-color);
}

.home-project-title2 h5 span {
    font-weight:600;
}

.home-project-content {
    margin: -45px 40px 0 40px;
    padding-left: 40px;
    padding-top: 45px;
    padding-bottom: 45px;
    border-left: 1px solid var(--dark-color);
}

.project-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.project-box-image {
    height: 455px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.project-box-image img {
    width: 100%;
    transition: all ease 0.5s;
}

.project-box-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background:#00000040;
    transition: all ease 0.5s, opacity 1s,background 1s;
}

.project-box-text .project-box-text-logo {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.project-box-text .project-box-text-logo img {
    max-width: 100%;
}

.project-box-text .project-box-text-name {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    background: linear-gradient(312deg, rgba(145, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    font-weight: 700;  /* veya 'bold' da yazabilirsin */
    font-size: 20px;   /* örnek, isteğe göre ayarla */

}

.project-box:hover .project-box-text {
    z-index: 5;
    opacity: 1;
}

.project-box:hover .project-box-image img {
    transform: scale(1.2);
}

.project-box-category {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-bottom: 136px;
}

.project-box-category span {
    font-size: 85px;
    font-weight:275;
    background: linear-gradient(to right, #8A8A8A 0%, #D3D3D3 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid var(--dark-color);
    width: 100%;
    text-align: center;
}
.project-box-category span:nth-child(2){
    border-bottom:none;
}
#product-category1 span:nth-child(2)::after {
    content: "Estetik";
    display: flex;
    justify-content:center;
    transform: rotateX(180deg);
    background: linear-gradient(to right, #8A8A8A 0%, #D3D3D3 50%);
    -webkit-background-clip: text;
    color: transparent;
    opacity:0.19;
}
#product-category2 span:nth-child(2)::after {
    content: "Modern";
    display: flex;
    justify-content: center;
    transform: rotateX(180deg);
    background: linear-gradient(to right, #8A8A8A 0%, #D3D3D3 50%);
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.19;
}
#product-category3 span:nth-child(2)::after {
    content: "Yenilikci";
    display: flex;
    justify-content: center;
    transform: rotateX(180deg);
    background: linear-gradient(to right, #8A8A8A 0%, #D3D3D3 50%);
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.19;
}

.project-box-all {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 40px 10px 20px;
    background: var(--dark-color);
    height: 455px;
}

.project-box-all-icon {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    position: relative;
    z-index: 15;
}

.project-box-all-icon span {
    top: 0;
    right: 0;
    width: 30px;
    height: 1px;
    background: #FFFFFF80;
    position: absolute;
    transition: all ease 0.5s;
}

.project-box-all-icon span:nth-child(1) {
    transform: rotate(90deg);
    top: 0;
    right: 20px;
}

.project-box-all-icon span:nth-child(2) {
    top: 20px;
    right: 40px;
}

.project-box-all-icon span:nth-child(3) {
    top: 20px;
    right: 0;
}

.project-box-all-icon span:nth-child(4) {
    transform: rotate(90deg);
    top: 40px;
    right: 20px;
}

.project-box:hover .project-box-all-icon span {
    width: 60px;
    background: var(--primary-color);
}

.project-box:hover .project-box-all-icon span:nth-child(1) {
    transform: rotate(90deg);
    top: 20px;
    right: 10px;
}

.project-box:hover .project-box-all-icon span:nth-child(2) {
    top: 55px;
    right: 45px;
}

.project-box:hover .project-box-all-icon span:nth-child(3) {
    top: 55px;
    right: -25px;
}

.project-box:hover .project-box-all-icon span:nth-child(4) {
    transform: rotate(90deg);
    top: 90px;
    right: 10px;
}

.project-box-all-text {
    position: relative;
    z-index: 15;
    transition: all ease 0.5s;
}

.project-box-all-text h5 {
    font-size: 64px;
    color: var(--primary-color);
    font-weight:275;
    transition: all ease 0.5s;
}

.project-box-all-text h5 span {
    font-weight:600;
}

.project-box-all-image {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all ease 0.5s;
}

.project-box-all-image img {
    width: 100%;
}

.project-box:hover .project-box-all-image {
    opacity: 0.3;
}

.project-box:hover .project-box-all-text {
    margin-bottom: 20px;
}

/*-----------Home-Slogan-----------*/
.home-slogan {
    padding: 70px 20px;
    text-align: center;
    border-top: 1px solid var(--dark-color);
    border-bottom: 1px solid var(--dark-color);
}

.home-slogan h5 {
    font-size: 64px;
    color: var(--dark-color);
    font-weight:275;
}

/*-----------Home-Video-----------*/
.home-video {
    padding: 80px 0 200px 0;
    min-height: 1130px;
	
}

.home-video-title {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.home-video-title::after {
    content: "";
    position: absolute;
    width: calc(100% - 850px);
    height: 1px;
    background: var(--dark-color);
    top: calc(50% - 0.5px);
    right: 0;
}

.home-video-title h5 {
    font-size: 64px;
    font-weight:275;
    color: var(--dark-color);
}

.home-video-title h5 span {
    font-weight:600;
}

.home-video-content {
    position: relative;
}

.home-video-content-text {
    margin-bottom: 80px;
    padding-left: 40px;
}

.home-video-content-text p {
    font-size: 20px;
    font-weight:300;
    color: var(--dark-color);
}

.home-video-area {
   height: auto !important;
    background: var(--secondary-color);
    padding: 0 100px 0 50px;
    display: flex;
    align-items: center;
	
}

.home-video-area-title {
    height: 100%;
    display: flex;
    align-items: center;
}

.home-video-area-title h5 {
    font-size: 85px;
    font-weight:275;
    color: var(--primary-color);
}

.home-video-area-video {
    height: 570px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
	margin-top: -750px !important;
}

.home-video-area-video::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    
}

.home-video-area-video img {
    width: 100%;
}

.home-video-area-video button {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none !important;
    background: transparent;
    z-index: 15;
}

.home-video-area-video button img {
    width: 150px;
}

.home-video-line {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 142%;
    background: transparent;
    border: 1px solid var(--dark-color);
    border-right: none;
    z-index: -1;
}

.home-video-video {
    position: fixed;
    top: 50%;
    right: 50%;
    width: 0;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* display: none; */
    z-index: 9999;
    background: #A3A3A3;
    transition: all ease 0.5s;
}

.home-video-video.active {
    /* display: flex; */
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
}

.home-video-video iframe {
    width: 90%;
    height: 90%;
}

.home-video-video .home-video-close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background: transparent;
    color: var(--secondary-color);
    font-size: 50px;
}

/*-----------Breadcrumb-----------*/
.my-breadcrumb {
    height: 710px;
    background: var(--dark-color);
    position: relative;
}

.my-breadcrumb-image {
    position: absolute;
    right: 0;
    bottom: 90px;
    width: 100%;
}

.my-breadcrumb-image img {
    width: 100%;
}

.my-breadcrumb-text {
    position: absolute;
    left: 40px;
    bottom: 120px;
    width: 100%;
}

.my-breadcrumb-text h5 {
    font-size: 64px;
    font-weight:275;
    color: var(--primary-color);
}

.my-breadcrumb-text h5 span {
    font-weight:600;
}

.my-breadcrumb-project {
    height: 475px;
    background: var(--dark-color);
    position: relative;
}

.my-breadcrumb-project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
}

.my-breadcrumb-project-content nav {
    position: relative;
    width: 100%;
    border: none;
    padding-left: 40px;
    z-index: 6;
}

.my-breadcrumb-project-content nav::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    left: 0;
    top: calc(50% - 0.5px);
    z-index: -1;
}

.my-breadcrumb-project-content nav .nav {
    border: none;
}

.my-breadcrumb-project-content nav .nav button {
    background: var(--dark-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 20px;
    font-weight:400;
    height: 75px;
    border-radius: 10px;
    margin-right: 30px;
}
.my-breadcrumb-project-content nav .nav button:hover{
    background:var(--primary-color);
    color:var(--secondary-color );
}

.my-breadcrumb-project-content nav .nav button:last-child {
    margin-right: 0;
}

.my-breadcrumb-project-content nav .nav button.active {
    background: #fff; 
    color: var(--dark-color); 
    font-weight: 800;
    border: 1px solid var(--primary-color); 
}

.my-breadcrumb-project-content .project-sort {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 115px;
}
.my-breadcrumb-project-content .project-sort .project-sort-button{
    display:flex;
    align-items:center;
}
.my-breadcrumb-project-content .project-sort .project-sort-button select{
    font-size: 20px;
    font-weight:400;
    color: var(--primary-color);
    background:#000;
    border:none !important;
    box-shadow:none !important;
}
.my-breadcrumb-project-content .project-sort .project-sort-button select option{
    color: var(--primary-color);
    background:#000;
    border:none !important;
    box-shadow:none !important;
}
.my-breadcrumb-project-content .project-sort img {
    margin-right: 15px;
}

.my-breadcrumb-link {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.my-breadcrumb-link ul {
    display: flex;
    align-items: center;
}

.my-breadcrumb-link ul li {
    color: var(--primary-color);
    font-size: 16px;
    font-weight:400;
    margin-right: 5px;
}

.my-breadcrumb-link ul li:last-child {
    margin-right: 0;
}

.my-breadcrumb-link ul a {
    color: var(--primary-color);
    font-weight:600;
}

.my-breadcrumb-logo {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.my-breadcrumb-logo::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    top: calc(50% - 0.5px);
}

.my-breadcrumb-logo img {
    max-width: 300px;
    padding: 0 40px;
    background: var(--dark-color);
    z-index: 5;
}

/*-----------Corporate-Count-----------*/
.corporate-count {
    padding: 40px 40px 0 40px;
    background: var(--secondary-color);
    position:relative;
    z-index:60;
}

.corporate-count-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    min-height: 200px;
    padding: 20px;
    border-top: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    height: 100%;
}

.corporate-count-text2 {
    border-right: none;
}

.corporate-count-text span:nth-child(1) {
    font-weight:400;
    font-size: 16px;
    color: var(--primary-color);
}

.corporate-count-text span:nth-child(2) {
    font-weight:400;
    font-size: 70px;
    color: var(--primary-color);
}

.corporate-text {
    padding: 0 40px;
}

.corporate-text-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    min-height: 200px;
    padding: 40px 20px;
    border-right: 1px solid var(--dark-color);
    height: 100%;
}

.corporate-text-text h5 {
    font-weight:600;
    font-size: 20px;
    color: var(--dark-color);
    width: 60%;
}

.corporate-text-text p {
    font-weight:300;
    font-size: 20px;
    color: var(--dark-color);
}

.corporate-team-top {
    background: var(--dark-color);
    height: auto;
    padding: 300px 0 40px 40px;
}

.corporate-team-top-title {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: end;
}

.corporate-team-top-title h5 {
    position: relative;
    background: var(--dark-color);
    z-index: 5;
    padding-right: 40px;
    font-size: 64px;
    font-weight:275;
    color: var(--primary-color);
}

.corporate-team-top-title h5 span {
    font-weight:600;
}

.corporate-team-top-content {
    position: relative;
}

.corporate-team-top-content p {
    font-size: 20px;
    font-weight:600;
    color: var(--primary-color);
    width: 35%;
    padding-bottom: 150px;
}

.corporate-team-top-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width:100vw;
	pointer-events: none;
	
}
.corporate-team-top-image img{
    width:100%;
}

.corporate-team-bottom {
    background: var(--gray-color);
    padding: 40px;
}

.corporate-team-box {
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
    margin-top: -350px;
    margin-bottom: 370px;
}

.corporate-team-bottom .row .col-lg-3:nth-child(2n) .corporate-team-box {
    margin-top: -400px;
}

.corporate-team-box-image {
    height: 510px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.corporate-team-box-image img {
    width: 100%;
    transition: all ease 0.5s;
}

.corporate-team-box-text {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    z-index: 3;
    opacity: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 100%);
    transition: all ease 0.5s;
}

.corporate-team-box-text span {
    font-size: 30px;
    font-weight:600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.corporate-team-box-text span:nth-child(2) {
    font-weight:275;
}

.corporate-team-box:hover .corporate-team-box-text {
    opacity: 1;
}

.corporate-team-box:hover .corporate-team-box-image img {
    transform: scale(1.2);
}

/*-----------Project-----------*/

.project-page {
    position: relative;
    z-index: 60;
}

.project-page-content {
    margin-top: -80px;
    position: relative;
    z-index: 5;
    padding: 40px;
    max-height: 2121px;
    overflow: hidden;
    margin-bottom: 140px;
}

.project-page-content.active {
    max-height: none;
}

.project-page-content .project-box .project-box-image {
    height: 500px;
}

.project-page-more {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 225px;
    background: var(--secondary-color);
    margin-top: -200px;
    padding: 0 40px;
    z-index: -1;
}

.project-page-more::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    left: 0;
    top: calc(50% - 0.5px);
}

.project-page-more button {
    position: relative;
    z-index: 5;
    width: 400px;
    height: 75px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    border: 1px solid var(--primary-color);
    font-size: 24px;
    font-weight:600;
    color: var(--primary-color);
    border-radius: 10px;
}

.project-page-more.passive {
    display: none;
}

.project-page-more button.passive {
    display: none;
}

/*-----------Project-Detail-----------*/
.my-breadcrumb-project-detail{
    height:330px !important;
    padding-bottom:50px;
}
.my-breadcrumb-project-detail .my-breadcrumb-project-content{
    justify-content:end !important;
}
.project-detail-video-content {
    position: relative;
    height: 762px;
    width: 100%;
    z-index:60;
}

.project-detail-video-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #00000075;
}

.project-detail-video-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-detail-video-image img {
    width: 100%;
}

.project-detail-video-content .project-detail-video-btn {
    border: none;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail-table {
    margin-bottom: 40px;
    position:relative;
    z-index:60;
}

.product-detail-table .row .col-lg-3:nth-child(4n) .product-detail-table-box {
    border-right: none;
}

.product-detail-table-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 215px;
    justify-content: space-between;
    border-right: 1px solid var(--dark-color);
    border-bottom: 1px solid var(--dark-color);
}

.product-detail-table-box span:nth-child(1) {
    font-weight:400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--dark-color);
}

.product-detail-table-box span:nth-child(2) {
    font-weight:600;
    font-size: 48px;
    line-height: 100%;
    color: var(--dark-color);
}

.project-detail-image {
    padding: 60px 0 50px 40px;
    position: relative;
}

.project-detail-image-text {
    position: relative;
    margin-bottom: 80px;
}

.project-detail-image-text p {
    width: 50%;
    font-weight:400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--dark-color);
    margin-bottom: 90px;
}

.project-detail-image-text h5 {
    font-weight:275;
    font-size: 64px;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 6;
    background: var(--primary-color);
}

.project-detail-image-text h5 span {
    font-weight:500;
}

.project-detail-image-bg {
    position: absolute;
    right: 0;
    bottom: -40px;
}

.project-detail-image-slider-area {
    margin-bottom: 40px;
}

.swiper {
    width: 100%;
    height: 735px;
    margin: 20px auto;
}

.project-detail-image-slider-area .swiper-pagination {
    font-weight:400;
    font-size: 20px;
    color: #BABABA;
    text-align: start;
    position:relative;
    width:auto;
    height:auto;
    top:0;
    bottom:0;
    margin-right:40px;
}
.project-detail-image-slider-area .swiper-button-prev,
.project-detail-image-slider-area .swiper-button-next {
    position:relative;
    width:auto;
    height:auto;
    top:0;
    bottom:0;
    margin:0;
    padding:0;
}
.project-detail-image-slider-area .swiper-button-prev{
    margin-right:35px;
}
.project-detail-image-slider-area .swiper-button-prev:after,
.project-detail-image-slider-area .swiper-button-next:after {
    display: none;
}
.product-slider-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:100%;
}
.product-slider-left span{
    font-weight:500;
    font-size: 20px;
    color: #BABABA;
    margin-bottom:25px;
}
.product-slider-image{
    padding-right:30px;
    transition:all ease 0.5s;
}
.product-slider-image img{
    width:100%;
}

.project-detail-location {
    position: relative;
    overflow:hidden;
}

.project-detail-location-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px 40px 40px;
    background: var(--secondary-color);
    height: 835px;
}

.project-detail-location-text::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 20px;
    background: var(--primary-color);
}

.project-detail-location-text p {
    font-weight:700;
    font-size: 40px;
    color: var(--primary-color);
    width: 80%;
    margin-bottom: 90px;
}

.project-detail-location-text a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    height: 75px;
    padding: 0 40px;
    font-weight:600;
    font-size: 24px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.project-detail-location-button {
    display: flex;
    align-items: center;
}

.project-detail-location-button span {
    background: var(--primary-color);
    height: 1px;
    width: calc(100% - 400px);
}

.project-detail-map {
    width: 100%;
    height: 835px;
}

.project-detail-map iframe {
    width: 100%;
    height: 100%;
}

.next-project {
    position: relative;
    width: 100%;
    margin: 80px 0;
    padding: 0 40px;
    display: flex;
    justify-content: end;
}

.next-project::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--dark-color);
    top: calc(50% - 0.5px);
    left: 0;
    z-index: 1;
}
.next-project a:nth-child(1){
    margin-right:20px
}
.next-project a {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    height: 75px;
    padding: 0 40px;
    font-weight:600;
    font-size: 24px;
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
    background: var(--primary-color);
    border-radius: 10px;
    transition: all ease 0.5s;
}

.next-project a:hover {
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
}

.related-products-title {
    position: relative;
    padding: 40px;
}

.related-products-title::after {
    content: "";
    position: absolute;
    width: calc(100% - 550px);
    height: 1px;
    background: var(--dark-color);
    top: calc(50% - 0.5px);
    right: 0;
}

.related-products-title h5 {
    font-weight:275;
    font-size: 64px;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
}

.related-products-title h5 span {
    font-weight:600;
}

.related-products-content {
    padding: 40px;
}

/*-----------Footer-----------*/
footer {
    background: var(--dark-color);
}

.footer-top {
    padding: 70px 50px 125px 50px;
    border-bottom: 1px solid var(--primary-color);
}

.footer-social h5,
.footer-box h5 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight:500;
    margin-bottom: 20px;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    font-size: 20px;
    color: var(--primary-color);
    font-weight:500;
}

.footer-social ul {
    display: flex;
    align-items: center;
}

.footer-social ul li {
    margin-right: 20px;
}

.footer-social ul li:last-child {
    margin-right: 0;
}

.footer-social ul li a {
    width: 60px;
    height: 60px;
    font-size: 28px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.5s;
}

.footer-social ul li a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: rotateY(360deg);
}

.footer-bottom {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
}


.footer-logo img {
    width: 200px;
}

.footer-logo span {
    color: var(--primary-color);
    font-size: 20px;
    font-weight:400;
}
.footer-logo span a{
    color: var(--primary-color);
    font-weight:700;
}

.footer-bottom-right .dropdown button {
    width: 230px;
    height: 75px;
    background: transparent;
    color: var(--primary-color);
    font-size: 24px;
    font-weight:600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 0;
}

.footer-bottom-right .dropdown button i {
    margin-left: 20px;
}

.footer-bottom-right .dropdown button::after {
    display: none;
}

.footer-bottom-right .dropdown button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer-bottom-right .dropdown .dropdown-menu {
    width: 100%;
    border: 1px solid var(--primary-color);
    background: #000000;
    border-radius: 0;
}

.footer-bottom-right .dropdown .dropdown-menu a {
    color: var(--primary-color);
    padding: 1rem;
}

.footer-bottom-right .dropdown .dropdown-menu a:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
}
.footer-contact2 a{
    font-weight:500;
    font-weight: 500;
    font-size: 64px;
    color:var(--primary-color);
}
.footer-contact2 p{
    font-weight:400;
    font-weight: 400;
    font-size: 20px;
    color:var(--primary-color);
}
.footer-bottom-center {
    position: relative;
	overflow: visible;
}

.scroll-to-top {
    position: absolute;
    top: -120px;           
    left: 50%;
    transform: translateX(-50%);
    background-color: #c00000;
    color: #fff;
    padding: 10px 20px;       
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width:    40px;          
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 10000;
}

.scroll-to-top:hover {
    background-color: #a00000;
    color: white;
}

.footer-bottom-center {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}
.footer-bottom-center span{
    font-weight:400;
    font-weight: 400;
    font-size: 20px;
    color:var(--primary-color);
}
.footer-bottom-center span a{
    font-weight:700;
    color:var(--primary-color);
}
/*-----------Responsive-----------*/

@media (max-width: 768px) {
	
	  .btn-carousel-proje {
    display: none !important;
  }

	
    .carousel-caption {
        top: 10% !important;
        padding: 0 15px !important;
        text-align: center !important;
    }

    .carousel-caption h1,
    .carousel-caption h2,
    .carousel-caption h3,
    .carousel-caption h4,
    .carousel-caption h5 {
        font-size: 10px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .carousel-caption p {
        font-size: 6px !important;
        margin-bottom: 20px !important;
    }

    .carousel-caption a {
        width: 100% !important;
        font-size: 16px !important;
        padding: 10px !important;
        display: inline-block !important;
    }
}















@media only screen and (max-width: 768px) {
     .scroll-to-top {
        position: absolute; /* veya relative, duruma göre */
        top: 50%; /* Logonun ortasına hizala, ihtiyaca göre değiştir */
        left: calc(100% + 50px); /* Logonun hemen sağına 10px boşluk */
        transform: translateY(-50%); /* Dikey ortala */
        width: 30px;
        height: 60px;
        padding: 6px 10px;
        font-size: 18px;
    }

}

@media only screen and (max-width:1920px) {

    .modal-contact-form {
        padding: 50px 80px 60px 190px;
    }
}

@media only screen and (max-width:1800px) {
    .contact-form-modal-header {
        padding: 80px 80px 0px 190px;
    }

    .home-project-title2::after {
        right: 36%;
    }
}

@media only screen and (max-width:1700px) {

    .my-breadcrumb-text h5,
    .project-detail-image-text h5 {
        font-size: 48px;
    }
}

@media only screen and (max-width:1600px) {
    .contact-form-modal-header {
        padding: 100px 40px 0px 150px;
    }

    .modal-contact-form {
        padding: 40px 40px 80px 150px;
    }

    .contact-form-modal-footer {
        padding: 0 80px 0 150px;
    }

    .home-corporate-title::after {
        left: 25%;
    }
    .swiper{
        height:auto;
        max-height:600px;
        overflow:hidden;
    }

    .home-corporate-text p,
    .home-video-content-text p {
        font-size: 16px;
    }

    .project-detail-video-content {
        height: auto;
    }

    .project-detail-location-text p {
        font-size: 30px;
    }
}

@media only screen and (max-width:1500px) {
    .home-corporate-count {
        display: flex;
        flex-direction: column;
    }

    .home-corporate-count .home-corporate-count-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .home-slider .carousel .carousel-inner .carousel-item .carousel-caption h5,
    .home-corporate-title h5,
    .home-project-title2 h5,
    .home-slogan h5,
    .home-video-title h5,
    .corporate-team-top-title h5 {
        font-size: 48px;
    }

    .home-corporate-title::after {
        left: 20%;
    }

    .home-project-title2::after {
        right: 30%;
    }

    .home-video-title::after {
        width: calc(100% - 700px);
    }

    .home-corporate-content .row {
        margin-top: -38px;
    }

    .home-project-content {
        margin: -33px 40px 0 40px;
    }

    .home-project-title {
        padding-bottom: 12px;
    }

    .project-box-category span,
    .home-video-area-title h5 {
        font-size: 64px;
    }

    .home-video-area-video button img {
        width: 100px;
    }

    .home-corporate-text p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .project-detail-location-text a {
        width: 300px;
    }

    .project-detail-location-button span {
        width: calc(100% - 300px);
    }
    .project-detail-bottom-content{
        width:65%;
    }
    .swiper{
        max-height:550px;
    }
}

@media only screen and (max-width:1400px) {
    .modal-contact-form button {
        height: 75px;
    }

    .contact-form-modal-header h5 {
        font-size: 48px;
    }

    .home-corporate-count .home-corporate-count-text span:nth-child(1) {
        font-size: 25px;
    }

    .home-corporate-text a {
        font-size: 18px;
    }

    .home-corporate-count .home-corporate-count-text span:nth-child(2),
    .home-project-title .nav-link {
        font-size: 16px;
    }

    .home-project-title2::after {
        right: 35%;
    }

    .footer-contact2 a {
        font-size: 28px;
    }

    .footer-logo {
        margin-right: 100px;
    }

    .footer-logo span {
        font-size: 16px;
    }

    .footer-bottom-right .dropdown button {
        width: 180px;
    }

    .my-breadcrumb-text h5,
    .project-detail-image-text h5,
    .related-products-title h5 {
        font-size: 35px;
    }

    .related-products-title::after {
        width: calc(100% - 350px);
    }

    .corporate-count-text span:nth-child(2) {
        font-size: 50px;
    }

    .corporate-text-text h5,
    .corporate-text-text p {
        font-size: 16px;
    }

    .corporate-text-text h5 {
        width: 100%;
    }
}

@media only screen and (max-width:1200px) {
    .modal-contact-form button {
        height: 50px;
    }

    .contact-form-modal-header {
        padding: 100px 40px 0px 100px;
    }

    .modal-contact-form {
        padding: 40px 40px 80px 100px;
    }

    .contact-form-modal-footer {
        padding: 0 80px 0 100px;
    }

    .modal-contact-form .input-group input,
    .modal-contact-form .input-group textarea {
        padding: 5px 0;
    }

    .modal-contact-form .input-group input:hover,
    .modal-contact-form .input-group input:focus {
        padding: 5px 10px;
    }

    .home-slider .carousel .carousel-inner .carousel-item .carousel-caption h5,
    .home-corporate-title h5,
    .home-project-title2 h5,
    .home-slogan h5,
    .home-video-title h5 {
        font-size: 36px;
    }

    .home-slider .carousel .carousel-inner .carousel-item .carousel-caption p {
        font-size: 16px;
    }

    .home-slider .carousel .carousel-inner .carousel-item .carousel-caption a {
        width: 300px;
        font-size: 18px;
        height: 60px;
    }

    .home-slider .carousel-project-btn a .carousel-project-btn-image {
        width: 60px;
        height: 60px;
    }

    .home-slider .carousel-project-btn a .carousel-project-btn-image::before {
        width: 50px;
        height: 50px;
    }

    .home-slider .carousel-project-btn a .carousel-project-btn-image img {
           width: 100px;

    }

    .home-slider .carousel-project-btn a span {
        width: 150px;
        height: 50px;
        font-size: 16px;
        margin-left: -40px;
    }

    .home-slider .slider-bottom a {
        width: 250px;
        height: 250px;
        margin-bottom: -120px;
        font-size: 18px;
    }

    .corporate-team-top-content p {
        width: 100%;
        padding-bottom: 0;
    }

    .corporate-team-top-image {
        position: relative;
    }

    .corporate-team-top-image img {
        width: 100%;
    }

    .corporate-team-box {
        margin-top: -200px;
    }

    .product-detail-table-box span:nth-child(2) {
        font-size: 30px;
    }

    .project-detail-location-text,
    .project-detail-map {
        height: 500px;
    }

    .project-detail-location-text::after {
        display: none;
    }
    .home-slider .carousel-project-btn a .carousel-project-btn-image{
        padding:10px;
        overflow:hidden;
    }
    .home-slider .carousel-project-btn a .carousel-project-btn-image img{
        width:100%;
    }
}

@media only screen and (max-width:991px) {
    .contact-form-modal {
        overflow-y: scroll;
    }

    .contact-form-modal::-webkit-scrollbar {
        background: var(--primary-color);
        width: 8px;
    }

    .contact-form-modal::-webkit-scrollbar-thumb {
        background: var(--dark-color);
    }

    .contact-form-modal-content {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-form-modal-content .contact-form-modal-left {
        height: 50vh;
    }

    .contact-form-modal-content .contact-form-modal-left,
    .contact-form-modal-content .contact-form-modal-right {
        width: 100%;
    }

    header {
        padding: 20px;
    }

    header.left {
        left: 0;
    }

    header.left .header-logo {
        display: none;
    }

    header .header-logo img {
        width: 150px;
    }

    .contact-form-modal-header {
        padding: 100px 40px 0px 100px;
    }

    .modal-contact-form {
        padding: 40px 40px 80px 100px;
    }

    .contact-form-modal-footer {
        padding: 0 80px 0 100px;
    }

    .header-contact::after,
    .header-contact::before {
        display: none;
    }

    header.left .header-contact button {
        background: var(--dark-color) !important;
    }

    .slider-bottom {
        display: none !important;
    }

    .home-corporate-text {
        border-right: none;
        padding-right: 0;
    }

    .home-corporate-text a {
        width: 100%;
    }

    .home-corporate-title::after {
        left: auto;
        right: 0;
        width: calc(100% - 200px);
    }

    .home-project-title2 {
        margin-top: 0;
    }

    .home-project-title2::after {
        right: auto;
        left: 0;
        width: calc(100% - 350px);
    }

    .home-video-title::after {
        left: auto;
        right: 0;
        width: calc(100% - 500px);
    }

    .home-project-title nav {
        border-right: none;
    }

    .home-video-content-text {
        margin-bottom: 160px;
    }

    .home-video {
        min-height: auto;
    }

    .home-video-line {
        display: none;
    }

    .home-video-area {
        height: 200px;
    }

    .home-video-area-video {
		margin-top: 0px !important; 
		 height: auto;
        height: 400px;
    }

    .home-video-area-title h5 {
        font-size: 35px;
    }

    .footer-box {
        margin-bottom: 40px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .footer-bottom-left {
        margin-bottom: 40px;
    }

    .footer-logo img {
        width: 125px;
    }

    .footer-logo {
        margin-right: 50px;
    }

    .my-breadcrumb {
        height: 500px;
    }

    .my-breadcrumb-text {
        bottom: auto;
        top: 120px;
    }

    .corporate-count-content .row .col-md-6:nth-child(2n) .corporate-count-text {
        border-right: none;
    }

    .corporate-text-text {
        border-right: none;
        border-bottom: 1px solid var(--dark-color);
    }

    .my-breadcrumb-project-content nav .nav {
        margin-bottom: 40px;
    }

    .my-breadcrumb-project-content nav .nav button {
        font-size: 16px;
    }

    .my-breadcrumb-project-content nav::before {
        top: calc(50% - 20.5px);
    }

    .my-breadcrumb-project-content .project-sort {
        padding-right: 0;
        justify-content: start;
        padding-left: 40px;
    }

    .product-detail-table .row .col-md-6:nth-child(2n) .product-detail-table-box {
        border-right: none;
    }

    .project-detail-image-bg {
        position: relative;
        bottom: 0;
    }

    .project-detail-image-bg img,
    .project-detail-image-text p {
        width: 100%;
    }

    .project-detail-image-text h5 {
        margin-bottom: 20px;
    }

    .swiper {
        height: auto;
        max-height:300px;
    }
    .next-project a{
        width:auto;
        font-size:16px;
    }
    .project-detail-bottom-content{
        width:100%;
    }
    .footer-bottom-center{
        align-items:start;
        margin-bottom:40px;
    }
    .footer-contact2{
        margin-bottom:40px;
    }
    .product-slider-image{
        padding-right:0;
    }
}

@media only screen and (max-width:768px) {
    header {
        position: relative;
        background: #000000A3;
    }

    .contact-form-modal-header {
        padding: 20px;
    }

    .modal-contact-form {
        padding: 20px;
    }

    .contact-form-modal-footer {
        padding: 20px;
        padding-bottom: 40px;
    }

    .modal-contact-form .input-group {
        width: 100%;
    }

    .contact-form-map-btn a .carousel-project-btn-image {
        width: 60px;
        height: 60px;
    }

    .contact-form-map-btn a .carousel-project-btn-image::before {
        width: 50px;
        height: 50px;
    }

    .contact-form-map-btn a .carousel-project-btn-image img {.home-video-area video
        width: 40px;
    }

    .contact-form-map-btn a span {
        width: 150px;
        height: 50px;
        font-size: 16px;
        margin-left: -40px;
    }

    .contact-form-map-btn {
        left: calc(50% - 80px);
        top: calc(50% - 30px);
    }

    .header-contact button {
        width: 100px;
        font-size: 16px;
    }

    header .header-logo img{
        width: 100px;
    }
    
    .footer-logo img{
        width:150px;
    }

    .home-slider .carousel .carousel-indicators {
        display: none;
    }

    .header-nav ul {
        display: none !important;
    }

    .mini-menu-btn {
        display: flex;
    }

    .home-corporate-count-col {
        border-right: none;
        border-bottom: 1px solid var(--primary-color);
        margin-bottom: 20px !important;
    }

    .home-corporate-count {
        padding-bottom: 20px;
    }

    .home-corporate {
        padding: 20px;
    }

    .home-project-title,
    .project-page-content {
        padding: 20px;
    }

    .home-project-title nav {
        padding: 0;
    }

    .home-project-content {
        margin: 0;
        border: none;
        padding: 20px;
    }

    .home-video-area {
        height: auto;
        padding: 20px;
    }

    .home-video-title {
        padding: 20px;
        margin-bottom: 0;
    }

    .home-video-content-text {
        padding: 20px;
        margin-bottom: 40px;
    }

    .home-video-area-title {
        margin-bottom: 20px;
    }

    .footer-top {
        padding: 70px 20px;
    }

    .footer-bottom {
        padding: 50px 20px;
    }

    .footer-bottom-left {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .footer-logo {
        margin-right: 0;
    }

    .home-corporate-count .home-corporate-count-text {
        text-align: center;
    }

    .corporate-count-text {
        border-right: none;
    }

    .corporate-team-box {
        margin-bottom: 250px;
    }

    .my-breadcrumb-text {
        left: 20px;
        right: 20px;
    }

    .corporate-count {
        padding: 40px 20px 0 20px;
    }

    .corporate-text,
    .related-products-title {
        padding: 0 20px;
    }

    .corporate-team-top {
        padding: 80px 20px 0 20px;
        height: auto;
    }

    .corporate-team-bottom {
        padding: 40px 20px;
    }

    .my-breadcrumb-project-content .project-sort,
    .my-breadcrumb-project-content nav {
        padding-left: 20px;
    }

    .product-detail-table .product-detail-table-box {
        border-right: none;
    }

    .next-project a {
        width: auto;
        padding:0 20px;
    }

    .next-project a i {
        margin:0 10px;
    }

    .project-detail-location-text a {
        width: 200px;
        font-size: 18px;
    }

    .project-detail-location-button span {
        width: calc(100% - 200px);
    }

    .product-detail-table-box,
    .project-detail-location-text,
    .related-products-content {
        padding: 20px;
    }

    .project-detail-image {
        padding: 60px 20px 0 20px;
    }

    .next-project {
        padding: 0 20px;
    }

    .project-detail-video-content .project-detail-video-btn img,
    .home-video-area-video button img {
        width: 50px;
    }
}

@media only screen and (max-width: 560px) {
    .my-breadcrumb-project-content nav .nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px; /* Biraz küçülttüm */
        padding: 0 10px; /* Yatay boşluk iyi */
    }

    .my-breadcrumb-project-content nav .nav button.nav-link {
        width: 100% !important;
        margin-bottom: 0 !important;
        text-align: center;
        padding: 6px 10px; /* Daha küçük padding */
        border-radius: 4px; /* Daha küçük köşe */
        font-weight: 600;
        font-size: 12px; /* Font boyutunu küçülttüm */
        box-sizing: border-box;
        white-space: normal; /* Uzun metinlerde taşma önler */
    }
    .home-slider .carousel-project-btn a .carousel-project-btn-image{
        padding:10px;
        overflow:hidden;
    }
    .home-slider .carousel-project-btn a .carousel-project-btn-image img{
        width:100%;
    }
}









@media only screen and (max-width:560px) {
    .my-breadcrumb-project-content nav .nav button:nth-child(1) {
        margin-bottom: 40px;
    }
}
.error{
    border-color:var(--dark-color)!important;
}