:root {
    --mustard: #DAA528;
    --bage: #F4F4DB;
    --green: #0a5844;
    --gold: #E1CB83;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
}

.font {
    font-family: "Forum", serif;
    color: var(--mustard);
    font-weight: 400;
    font-size: 18px;
}

header {
    padding: 0 5%;
    background-color: var(--green);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 999;
    width: 100%;
}

header nav.mainMenu {
    display: flex;
    align-items: center;
    gap: 40px;
}

header nav.mainMenu a {
    padding: 30px 20px;
    color: var(--bage);
    font-weight: 400;
    transition-duration: .5s;
    font-size: 16px;
    color: var(--gold);
}


header nav.mainMenu span.subMenu {
    position: relative;
    padding: 30px 20px;
}

header nav.mainMenu span.subMenu a {
    padding: 0;
}

header nav.mainMenu span.subMenu span.subMenuList {
    width: max-content;
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    top: 75px;
    background-color: var(--green);
    padding-top: 20px;
}

header nav.mainMenu span.subMenu span.subMenuList a {
    width: 100%;
    padding: 10px 20px;
}

header nav.mainMenu span.subMenu span.subMenuList a:hover {
    background-color: var(--bage);
    color: var(--green);
    transition-duration: .5s;
}

header nav.mainMenu span.subMenu:hover span.subMenuList {
    display: flex;
}

header a.logo {
    width: auto;
    height: auto;
    padding: 0px 40px;
}

header a.logo img {
    width: auto;
    height: 40px;
}

header a.btn {
    background-color: var(--bage);
    border-radius: 17px;
    border: 1px solid var(--gold);
    color: var(--green);
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 20px;
    gap: 10px;
}

header span.menu {
    display: none;
}

main {

}

main section {
    padding: 50px 5%;
}

main section.slider {
    width: 100%;
    height: 700px;
    display: flex;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


main section.slider div.item {
    width: 100%;
    height: 100%;
    max-height: 700px;
    display: flex;
    justify-content: center; 
    align-items: center;    
    background-position: center right;
     background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 50px 5%;
}

main section.slider div.item div.text {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main section.slider div.item div.text h1, main section.slider div.item div.text h2 {
    width: 100%;
    color: var(--bage);
    font-size: 46px;
    line-height: 1.5em;
    font-weight: 500;
}

main section.slider div.item a.btn {
    width: max-content;
    font-size: 24px;
    font-weight: 500;
    padding: 10px 75px;
    background-color: var(--bage);
    border-radius: 50px;
    border: 2px solid var(--gold);
    color: var(--green);
    position: relative;
    top: 150px; /* butonu aşağı kaydırır */
}
/* SERVİCES */
main section.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 0 50px 5%;
}

main section.services h1, main section.services h2 {
    font-size: 52px;
}

main section.services section.scrollList {
    width: 100%;
    overflow-x: scroll;
    padding: 20px 0;
}

main section.services div.serviceList {
    min-width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 45px;
    overflow-x: scroll;
}

main section.services div.serviceList a.item {
    width: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

main section.services div.serviceList a.item a {
    width: 100%;
}

main section.services div.serviceList a.item figure {
    overflow: hidden;
    width: 100%;
    height: 400px;
    position: relative;
}

main section.services div.serviceList a.item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 10%;
    border-top-right-radius: 10%;
}

main section.services div.serviceList a.item h3 {
    font-size: 16px;
    color: var(--green);
    font-weight: 600;
    line-height: 1.5em;
}

main section.service.alternate {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

main section.service.alternate h2 {
    font-size: 52px;
}

main section.service.alternate div.cards {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}
main section.service.alternate div.cards a.serviceWrapper {
    width: 30%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

main section.service.alternate div.cards a.serviceWrapper h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0a5844;
    min-height: 48px;
    justify-content: center;
}

main section.service.alternate div.cards a.serviceWrapper div.card {
    width: 100%;
    height: 100%;
    position: relative;
    border-bottom-left-radius: 10%;
    border-top-right-radius: 10%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(155, 41, 41, 0.1);
    cursor: pointer;
}

main section.service.alternate div.cards a.serviceWrapper div.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}
main section.service.alternate div.cards a.serviceWrapper:last-child {
    margin-left: auto;
    margin-right: auto;
}

main section.service.alternate div.cards a.serviceWrapper div.card div.overlay {
    position: absolute;
    inset: 0;
    background: rgb(10, 88, 68, 0.7);
    color: #f4f4db;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: .4s;
    text-align: center;
}

main section.service.alternate div.cards a.serviceWrapper div.card:hover img {
    transform: scale(1.1);
    filter: blur(2px);
    border: 1px solid #0a5844;
}

main section.service.alternate div.cards a.serviceWrapper div.card:hover .overlay {
    opacity: 1;
}

main section.service.alternate div.cards a.serviceWrapper div.card div.overlay ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

main section.service.alternate div.cards a.serviceWrapper div.card div.overlay li {
    margin: 10px 0;
    font-size: 20px;
    margin: 0px 40px;
    line-height: 1.7;
}
main section.service.alternate div.cards a.serviceWrapper div.card div.overlay p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0px 40px;

}


/* ZPATERN */

main section.zPattern {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
}

main section.zPattern img {
    width: 50%;
    height: 600px;
    object-fit: cover;
}

main section.zPattern div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    background: linear-gradient(
        270deg,
        rgb(10, 88, 68) 0%,
        rgb(35, 110, 90) 40%,
        rgb(90, 169, 149) 100%
    );
    padding: 100px 5% 50px 5%;
    gap: 50px;
}

main section.zPattern div h2 {
    font-size: 52px;
}

main section.zPattern div p {
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5em;
    text-align: end;
}

main section.zPattern.reverse {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: stretch;
}

main section.zPattern.reverse img {
    width: 50%;
    height: 600px;
    object-fit: cover;
}

main section.zPattern.reverse div {
    width: 50%;
    padding: 50px;
     background: linear-gradient(
        90deg,
        rgb(225, 203, 131) 0%,
        rgb(241, 223, 159) 40%,
        rgb(242, 232, 201) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}

main section.zPattern.reverse div h2 {
    font-size: 52px;
}

main section.zPattern.reverse div p {
    font-size: 24px;
    font-weight: 400;
    color: var(--green);
    line-height: 1.5em;
    text-align: start;
}

/* FİLLER BLOG */

main section.fillerBlog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background-color: #f6f6f6;
}

main section.fillerBlog h2 {
    font-size: 52px;   
}

main section.fillerBlog section.scrollList {
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0;
     padding-bottom: 15px;
}

main section.fillerBlog section.scrollList.noScroll {
    overflow-x: hidden !important;
}

main section.fillerBlog div.blogList {
    height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
}

main section.fillerBlog div.blogList.reverse {
    gap: 65px;
}

main section.fillerBlog div.blogList div.item {
    flex: 0 0 30%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--gold);
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    overflow: hidden;
}

main section.fillerBlog div.blogList div.item img {
    width: 100%;
    height: 475px;
    object-fit: cover;
}

main section.fillerBlog div.blogList div.item span {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 25px;
}

main section.fillerBlog div.blogList div.item span h3 {
    width: 100%;
    font-size: 24px;
    color: var(--black);
    font-weight: 400;
    line-height: 1.5em;
    text-align: center;
    min-height: 120px;
}

main section.fillerBlog div.blogList div.item span a.btn {
    border-radius: 10px;
    border: 1px solid var(--green);
    padding: 5px 0;
    width: 85%;
    text-align: center;
    font-size: 16px;
    color: var(--green);
}


/* LEADFORM */

main section.leadForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 5% 60px 5%;
    gap: 40px;
}

main section.leadForm h2 {
    font-size: 52px;
}

main section.leadForm form {
    width: 100%;
    background-color: var(--gold);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    padding: 50px 100px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    
}

main section.leadForm form div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

main section.leadForm form div label {
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
}

main section.leadForm form div input {
    border: 1px solid var(--green);
    background-color: var(--bage);
    padding: 7px 30px;
    outline: none;
    border-radius: 5px;
    min-height: 30px;
}

main section.leadForm form button {
    min-height: 32px;
    background-color: var(--bage);
    border: 1px solid var(--green);
    color: var(--black);
    padding: 0 65px; 
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

/* PAGEHEADER */

main section.pageHeader {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    
}

main section.pageHeader a.btn {
    padding: 10px 75px;
    font-size: 24px;
    background-color: var(--bage);
    color: var(--green);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--gold);
    position: relative;
    z-index: 9999;
}

main section.text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

main section.text h2 {
    font-size: 52px;
    margin: 0 auto;
    width: 60%;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 50px;
}

main section.text h3 {
font-size: 18px;
}

main section.text h4 {
font-size: 18px;
}
main section.text ul{
    margin-left: 50px;
    font-size: 16px;
    line-height: 2.5em;

}

main section.text ul li {
    
}

main section.text p {
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 500;
}

main section.text p + h3, main section.text p + h4, main section.text h3 + h4 {
    margin-top: 20px;
}

main section.text.reverse {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 50px 5% 20px 5%;
}

main section.text.reverse h3 {
    font-size: 52px;
    margin: 0 auto;
    width: 60%;
    text-align: center;
    line-height: 1.5em;
}

/* GALLERY */

main section.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

main section.gallery h2 {
    font-size: 52px;
}

main section.gallery div.galleryList {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

main section.gallery div.galleryList figure {
    width: 30%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
}

main section.gallery div.galleryList figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTACT FORM */

main section.contactForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 50px;
}

main section.contactForm h2 {
    font-size: 52px;
}

main section.contactForm form {
    width: 100%;
    background-color: var(--gold);
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 70px 5%;
}

main section.contactForm form div {
    width: 85%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

main section.contactForm form div input, main section.contactForm form div select {
    flex: 1 1 25%;
    background-color: var(--bage);
    border: 1px solid var(--green);
    border-radius: 5px;
    min-height: 40px;
    font-family: "Nunito Sans", sans-serif;
    outline: none;
    color: var(--black);
    font-size: 16px;
    text-align: center;
}

main section.contactForm form textarea {
    width: 85%;
    height: 350px;
    padding: 10px 30px;
    background-color: var(--bage);
    color: var(--green);
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    resize: none;
    border: 1px solid var(--green);
    font-family: "Nunito Sans", sans-serif;
    outline: none;
    font-size: 16px;
}

main section.contactForm form button {
    font-size: 16px;
    font-weight: 500;
    color: var(--bage);
    background-color: var(--green);
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
}

/* PRODUCTS */

main section.products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

main section.products h2 {
    font-size: 52px;
}

main section.products div.productList {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    
}

main section.products div.productList a.item {
    width: 30%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid var(--green);
    border-right: 1px solid var(--green);
    border-left: 1px solid var(--green);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

main section.products div.productList a.item figure {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

main section.products div.productList a.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 50px;
}

main section.products div.productList a.item span {
    width: 100%;
    padding: 50px 25px;
    background-color: var(--bage);
    overflow: hidden;
    border-bottom-right-radius: 50px;
}

main section.products div.productList a.item span h3 {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5em;
    min-height: 110px;
}

/* PRODUCT DETAİL */

main section.productDetail {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 5%;
}

main section.productDetail h2 {
    font-size: 52px;
    text-align: center;
    color: var(--mustard);
    line-height: 1.3em;
    margin-bottom: 50px;
}

main section.productDetail div.detailContent {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}

main section.productDetail figure {
    width: 30%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--green);
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

main section.productDetail figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main section.productDetail div.info {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

main section.productDetail div.info p {
    font-size: 20px;
    line-height: 1.6em;
}

main section.productDetail div.info ul {
    font-size: 20px;
}

main section.productDetail div.info strong {
    font-weight: 600;
    font-size: 22px;
}

/* FOOTER */

footer {
    width: 100%;
    padding: 50px 5%;
    background-color: var(--green);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 99;
}

footer .wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 150px;
    padding-top: 30px;
    position: relative;
    z-index: 10;
}

/* SOL TARAF */
footer div.wrapper div.left {
    flex: 0 0 auto;
    margin-right: 25%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center; /* GÖRSELDEKİ GİBİ ORTALANIYOR */
    gap: 10px;
}

footer div.wrapper div.left .logo img {
    width: 200px;
    height: auto;
}

footer div.wrapper div.left nav.social {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

footer div.wrapper div.left nav.social img {
    height: 35px;
    width: auto;
}

footer div.wrapper div.left nav.social a.copyright {
    display: block;
    position: absolute;
    left: -7%;
    bottom: -55px;
}

/* SAĞ TARAF */
footer div.wrapper div.right {
    flex: 1; 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 50px;
}

footer .wrapper .right::before {
    content: "";
    position: absolute;
    top: -12px; /* çizginin yukarıdan uzaklığı */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}

/* Menü */
footer div.wrapper div.right nav.menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

footer div.wrapper div.right nav.menu a {
    color: var(--gold);
    font-size: 20px;
    font-weight: 300;
}

/* İletişim */
footer div.wrapper div.right nav.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    color: var(--gold);
}

footer div.wrapper div.right nav.contact a {
    color: var(--gold);
    line-height: 1.4em;
    font-size: 20px;
    font-weight: 300;
}

/* FİXEDMENU */

nav.fixedMenu {
    width: 100px;
    height: 100px;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 99999999;
    transition-duration: .5s;
    cursor: pointer;
}

nav.fixedMenu div {

}

nav.fixedMenu div a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--bage);
    border: 1px solid var(--green);
    transition-duration: .5s;
}

nav.fixedMenu div a.phone {
    background-color: var(--green);
    border: 1px solid var(--gold);
    bottom: 0;
    right: 0;
    z-index: 9999;
    transition-duration: .6s;
}

nav.fixedMenu div a.instagram {
    right: 4%;
    bottom: 4%;
    transition-duration: .9s;
}

nav.fixedMenu div a.facebook {
    right: 4%;
    bottom: 4%;
    transition-duration: .3s;
}

nav.fixedMenu div a.whatsapp {
    right: 4%;
    bottom: 4%;
    transition-duration: .9s;
}

nav.fixedMenu:hover div a.instagram {
    right: 75px;
    bottom: 70px;
    transition-duration: .6s;
}

nav.fixedMenu:hover div a.facebook {
    right: 100px;
    bottom: 0px;
    transition-duration: .3s;
}

nav.fixedMenu:hover div a.whatsapp {
    right: 5px;
    bottom: 100px;
    transition-duration: .9s;
}

nav.fixedMenu div a.phone img {
    width: 35px;
    height: 35px;
}

@media only screen and (max-width: 600px) {
    header {
        padding: 10px 3%;
        z-index: 99;
    }

    header a.logo {
        padding: 0;
        z-index: 999999;
    }

    header a.logo img {
        height: 30px;
        width: auto;
    }

    header a.btn {
        z-index: 99999;
    }

    header span.menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 7px;
        width: 30px;
        height: 40px;
        z-index: 999999;
    }

    header span.menu span {
        width: 100%;
        height: 2px;
        background-color: var(--gold);
        transition-duration: .5s;
    }

    header span.menu.active span:nth-child(2) {
        opacity: 0;
        transition-duration: .5s;
    }

    header span.menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-9px, 8px);
        transition-duration: .5s;
    }

    header span.menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -4px);
        transition-duration: .5s;
    }

    header nav.mainMenu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        left: 100%;
        top: 0;
        width: 100%;
        height: 50vh;
        gap: 40px;
        padding: 0;
        transition-duration: .5s;
        background-color: var(--green);
    }

    header nav.mainMenu.active {
        left: 0;
        transition-duration: .5s;
    }

    header nav.mainMenu:first-of-type {
        justify-content: flex-end;
        z-index: 99999;
    }

    header nav.mainMenu:last-of-type {
        top: 50vh;
        padding-top: 40px;
    }

    header nav.mainMenu a, header nav.mainMenu span.subMenu {
        padding: 0;
        width: 100%;
        text-align: center;
        z-index: 9;
    }

    header nav.mainMenu span.subMenu {
        z-index: 99999;
    }

    header nav.mainMenu span.subMenu span.subMenuList {
        width: 100%;
        background-color: var(--gold);
        top: 50px;
        z-index: 99999;
    }

    header nav.mainMenu span.subMenu span.subMenuList a {
        color: var(--green);
        z-index: 99999;
    }

    main {
        display: block;
        position: relative;
        z-index: 9;
    }

    main section {
        padding: 30px 3%;
    }

    main section.slider {
        height: 600px;
    }

    main section.slider div.item {
        max-height: 600px;
        padding: 50px 3%;
        background-attachment: scroll;
    }

    main section.slider div.item div.text h1, main section.slider div.item div.text h2 {
        font-size: 40px;
        text-align: end;
    }

    main section.slider div.item a.btn {
        padding: 10px 30px;
        top: 110px;
    }

    main section.services {
        gap: 30px;
    }

    main section.services h2 {
        font-size: 30px;
    }

    main section.zPattern {
        flex-direction: column;
    }

    main section.zPattern div h2 {
        text-align: end;
    }

    main section.zPattern img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    main section.zPattern.reverse {
        flex-direction: column;
    }

    main section.zPattern.reverse div {
        width: 100%;
    }

    main section.zPattern.reverse div h2 {
        text-align: start;
    }

    main section.zPattern.reverse img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    }

    main section.zPattern div {
        width: 100%;
        padding: 50px 3%;
    }

    main section.fillerBlog {
        gap: 30px;
    }

    main section.fillerBlog h2 {
        font-size: 30px;
    }

    main section.fillerBlog div.blogList.reverse {
        gap: 25px;
    }

    main section.fillerBlog section.scrollList.noScroll {
        overflow-x: scroll !important;
    }

    main section.fillerBlog div.blogList div.item {
        width: 290px;
        height: 450px;
        flex: 0 0 85%;
    }

    main section.leadForm {
        gap: 30px;
        padding: 50px 3%;
    }

    main section.leadForm h2 {
    font-size: 30px;
    }

    main section.leadForm form {
        flex-direction: column;
        align-items: center;
    }

    main section.leadForm form div input {
        padding: 7px 45%;
    }

    main section.leadForm form button {
        padding: 7px 63%;
        margin-top: 30px;
        font-weight: 500;
    }

    main section.pageHeader a.btn {
        padding: 10px 30px;
    }

    main section.text h2 {
        margin-bottom: 30px;
        font-size: 30px;
    }

    main section.text p {
        font-size: 16px;
    }

    main section.text p + h3, main section.text p + h4, main section.text h3 + h4 {
    margin-top: 18px;
    }

    main section.text h4 {
    font-size: 16px;
    }

    main section.gallery {
        flex-direction: column;
    }

    main section.gallery div.galleryList figure {
        width: 100%;
        height: 450px;
    }

    main section.contactForm h2 {
    font-size: 48px;
    text-align: center;
    }

    main section.contactForm form {
        padding: 50px 3%;
    }

    main section.contactForm form div {
        flex-direction: column;
        width: 85%;
    }

    main section.contactForm form div input, main section.contactForm form div select {
        width: 100%;
    }

    main section.contactForm form textarea {
        height: 300px;
    }

    main section.contactForm form button {
        width: 85%;
    }

    main section.products div.productList {
        flex-direction: column;
    }

    main section.products div.productList a.item {
        width: 100%;
    }

    main section.productDetail h2 {
    font-size: 30px;
    }

    main section.productDetail div.detailContent {
        flex-direction: column;
    }

    main section.productDetail figure {
        width: 100%;
        height: 400px;
    }

    main section.productDetail div.info {
        width: 100%;
        gap: 10px;
    }

    main section.productDetail div.info p {
        font-size: 16px;
    }

    main section.service.alternate div.cards {
        flex-direction: column;
    }

    main section.service.alternate div.cards a.serviceWrapper {
        width: 100%;
    }

    main section.service.alternate div.cards a.serviceWrapper div.card div.overlay {
        opacity: 1;
    }

    footer {
        padding: 20px 3%;
        z-index: 9;
    }

    footer div.wrapper div.right nav.menu {
        align-items: center;
        gap: 15px;
    }

    footer div.wrapper {
        gap: 50px;
        justify-content: center;
    }

    footer div.wrapper div.left {
        margin: 0;
    }

    footer div.wrapper div.right {
        flex-direction: column;
    }


}