* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins';
    background-color: #fff;
}


header {
    top: 0;
    left: 0;
    background-color: #840000;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

nav {
    width: 100%;
    height: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0px 80px;
}

a {
    text-decoration: none;
}

.logo img {
    width: 181.15px;
    height: 52px;
    aspect-ratio: 216/62;
}


.menu {
    list-style: none;
    display: flex;
}


.menu a {
    color: #fff;
    background-color: #820009;
    font-size: 13px;
    font-weight: 400;
    padding: 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}

.menu a:hover {
    background-color: #9f464c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger .bar {
    width: 25px;
    height: 1px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    nav{
        padding: 0px 25px;
    }
    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu.active {
        background: #820009;
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .menu li {
        margin: 20px 0;
        font-size: 24px;
    }

    .hamburger {
        display: flex;
        z-index: 99999;
    }

    /* Hamburger to X animation */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: -12% 0%;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: -12% 100%;
    }
}

.cards {
    width: 100%;
    padding: 100px 0px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.card {
    background-color: white;
    /* box-shadow: rgba(0, 0, 0, 0.09) 0px 10px 90px;*/
    padding: 25px;
    margin: 20px;
    text-align: center;
    display: flex;
    flex: 0 0 25%;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    border-radius: 20px 50px 80px 50px;
}

@media screen and (max-width: 1200px) {
    .card {
        padding: 20px;
        flex: 0 0 33%;
    }
}

path {
    color: #ac0000;
}

.card:hover {
    transform: translateY(-10px);
}

@media screen and (max-width: 768px) {
    .container {
        margin: 0;
    }

    .card {
        flex: 0 0 80%;
    }
}

.icon {
    font-size: 62px;
    margin-bottom: 40px;
}

.title {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    font-family: 'Rubik';
    color: #000000;
    margin-bottom: 20px;
}

.description {
    font-weight: 300;
    line-height: 1.8em;
    font-size: 14px;
    color: rgb(102, 102, 102);
    font-family: 'Poppins';
}

#projects {
    width: 100%;
    height: auto;
    /*background-color: #f8f9fa;*/
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 75px;
    grid-row-gap: 75px;
    padding: 100px;
}

@media screen and (max-width:960px) {
    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project {
    position: relative;
}

.project-content {
    position: relative;
    width: 100%;
    height: auto;
    background: #ededed;
    border-radius: 20px;
    cursor: pointer;
}

.project-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 50%;
    transition: background 0.5s ease;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .projects-container {
        padding: 50px;
        grid-column-gap: 50px;
        grid-row-gap: 50px;
    }
}

@media screen and (max-width: 650px) {
    .projects-container {
        padding: 30px;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 30px;
        grid-row-gap: 50px;
    }
}

.project-info {
    width: 70%;
    padding-top: 0px;
}

.project-name {
    color: black;
    display: block;
    text-decoration: none;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 30px;
    line-height: 1.2em;
}

.project-description {
    font-size: 14px;
    line-height: 2em;
    color: #707070;
    padding: 20px 0px;
}

.project-view {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    font-size: 16px;
    margin-top: 15px;
}

.none {
    text-decoration: line-through;
}

.sale {
    font-size: 18px;
    color: #40c9a2;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    .project-info {
        width: 100%;
        padding-top: 0px;
    }

    .project-category {
        font-size: 10px;
    }

    .project-price {
        font-size: 16px;
    }
}

.sale {
    font-size: 14px;
}

.project-img img {
    width: 100%;
    display: block;
    margin: auto;
    transition: transform 0.6s ease;
    border-radius: 10px;
}

.project:hover .project-img img {
    transform: scale(1.05);
}

.page-small-title {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    color: rgb(63 63 63 / 0%);
    -webkit-text-stroke: 1px rgb(63 63 63 / 10%);
    background: none;
    font-size: 72px;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.page-small-title span {
    font-size: 32px;
    color: #000;
    font-weight: 600;
    transform: translateY(-100%);
}

@media screen and (max-width: 768px) {
    .page-small-title {
        font-size: 48px;
    }

    .page-small-title span {
        font-size: 24px;
    }
}

.swiper-container {
    margin-top: 62px;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

@media only screen and (max-width: 600px) {
    .swiper-container {
        height: 45vh;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-page {
    width: 100%;
    height: auto;
    padding: 100px;
}

.about-page-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
}

@media screen and (max-width: 768px) {
    .about-page-container .image img {
        width: 90%;
    }
}

@media screen and (max-width: 767px) {
    .about-page {
        padding: 40px;
    }

    .about-page-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-page-container .image {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    .about-page-container .image img {
        float: left;
    }

    .about-page-container .content .vizyon {
        margin: 25px 0px !important;
    }

    .about-page-container .content .misyon {
        margin: 25px 0px !important;
    }
}

.about-page-container .content h2 {
    font-size: 32px;
    padding: 15px 0px;
}

.about-page-container .content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 2.1em;
    color: #707070;
}

.about-page-container .image img {
    width: 80%;
    height: auto;
    float: right;
}

.button-container button {
    position: relative;
    padding: 0px 20px;
    height: 52px;
    overflow: hidden;
    transition: 0.5s;
    border: 1px solid rgb(0 0 0 / 0.2);
    margin-top: 20px;
    font-family: 'Poppins';
    font-size: 14px;
    background: none;
    color: #000;
    cursor: pointer;
}

.button-container button:hover {
    background-color: #820009;
    color: #fff;
}

.main {
    display: flex;
}

@media screen and (max-width: 767px) {
    .main {
        display: flex;
        flex-direction: column
    }
}

.left-container {
    padding: 3rem 3rem;
}

.categorys {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    border: 1px solid #000;
}

.category {
    font-size: 14px;
    font-family: 'Poppins';
    color: #000;
    padding: 15px 30px;
}

.category:hover {
    border-radius: 15px;
    background: rgb(240, 240, 240);
}

.main .container {
    width: 80%;
    padding: 3rem 3rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}

.main .card {
    color: #252a32;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
    border-radius: 20px;
}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media only screen and (max-width: 1100px) {
    .main .container {
        padding: 6rem 6rem;
    }
}

@media only screen and (max-width: 950px) {
    .main .container {
        padding: 6rem 5rem;
    }
}

@media only screen and (max-width: 800px) {
    .main .container {
        grid-template-columns: repeat(2, 1fr);
        padding: 6rem 4rem;
    }
}

@media only screen and (max-width: 600px) {
    .main .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        padding: 2em 2rem;
    }
}

.swiper-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

@media only screen and (max-width: 600px) {
    .swiper-container {
        height: 45vh;
    }
}


.page-title {
    margin-top: 62px;
    background: rgb(235, 235, 235);
    /* background: linear-gradient(180deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 75%) 50%, rgb(0 0 0) 100%), url(../images/background.jpg) center center; */
    background-size: cover;
    width: 100%;
    height: 30vh;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: .5em;
}

.page-title-nav {
    display: flex;
    gap: .4em;
}

.page-title-nav a {
    font-size: .7rem;
    white-space: nowrap;
    text-transform: uppercase;
    max-width: none !important;
    z-index: 1;
    position: relative;
    padding-right: 15px;
    cursor: pointer;
    color: rgb(166 156 140);
}

.page-title-nav a:hover {
    color: rgb(0, 0, 0);
}

.page-title-nav a:before {
    content: "/";
    position: absolute;
    right: 5px;
    font-style: italic;
    transform: translateX(50%);
    color: rgb(166 156 140);
    opacity: .4;
}

.page-title .largetitle {
    color: rgb(0, 0, 0);
    font-size: 48px;
    font-family: "Poppins";
    font-weight: 600;
}

.page-title .smalltitle {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    margin-top: 10px;
}

.page-title .smalltitle span {
    position: relative;
    font-size: 24px;
    margin: 0px 10px;
    top: 3px;
}

@media screen and (max-width: 768px) {
    .page-title {
        height: 25vh;
    }
}

@media screen and (max-width: 480px) {
    .page-title-nav a {
        font-size: .65rem;
    }

    .page-title {
        padding-left: 24px;
    }

    .page-title .largetitle {
        font-size: 32px;
    }
}

.a-video {
    position: relative;
    z-index: 2;
}

.a-video video {
    width: 100%;
    object-fit: cover;
    /* height: 43.75rem;*/
    height: 100vh;
    z-index: 1;
    margin-bottom: -7px;
}

@media only screen and (max-width: 768px) {
    .a-video video {
        height: 31rem;
    }
}

@media only screen and (max-width: 600px) {
    .a-video video {
        height: 25rem;
    }
}

@media screen and (max-width: 500px) {
    .a-video video {
        height: 18rem;
    }
}

.a-video:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(53 55 60 / 50%);
    z-index: 2;
}

footer {
    border-top: 1px solid rgb(0 0 0 / 5%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__uls {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 100px;
}

.footer__uls ul {
    list-style: none;
    margin: 30px 30px;
    padding: 15px;
}

.footer__uls ul li {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: .8;
    margin: 10px 0;
}

.footer__uls ul li a {
    color: #000;
    font-size: .85rem;
    opacity: .5;
    transition: all .25s ease;
    font-weight: 400;
    padding: 5px;
    display: block;
}

.footer__uls ul li a:hover {
    opacity: 1;
    color: rgba(26, 92, 255);
}

.footer__uls .title {
    text-align: left;
    margin: 0;
    width: 100%;
    padding: 5px 6px;
}

footer .copy {
    position: relative;
    bottom: 0;
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .75rem;
    padding: 20px 50px;
    color: #000;
    border-top: 1px solid rgb(0 0 0 / 5%);
    opacity: .5;
}

footer .copy div {
    flex: 1;
}

@media (width:768px) {
    .footer__uls ul {
        margin: 30px 15px;
        padding: 15px;
    }
}

@media screen and (max-width:767px) {
    .footer__uls {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-bottom: 50px;
    }

    .footer__uls ul {
        margin: 0px 30px;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .copy {
        flex-direction: column-reverse;
        gap: 2rem;
    }
}

.contact-section {
    display: flex;
    justify-content: center;
    gap: 6em;
    padding: 100px 30px;
}

@media screen and (max-width:767px) {
    .contact-section {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 50px 30px;
        gap: 0em;
    }

    .contact-column {
        gap: 16px !important;
    }
}

.contact-row {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.contact-column {
    display: flex;
    flex-direction: row;
    padding: 16px 0px;
    gap: 32px;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info:hover .contact-title {
    color: rgba(26, 92, 255);
}

.contact-info:hover .contact-text {
    color: rgba(26, 92, 255);
}

.contact-title {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.contact-text {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    /transform: translateY(-2px);/
}

.bosluk {
    margin-left: 55px;
}

@media screen and (max-width:767px) {
    .bosluk {
        margin-left: 39px;
    }
}

.urun-container {
    padding: 50px;
}

.urun-resmi img {
    width: 300px;
    height: auto;
}

.urun-aciklama h2{
    font-size: 32px;
    padding: 20px 0px;
}

.urun-aciklama p{
    color: #707070;
}

.about{

}