p {
    margin: 0;
}

.menu-show {
    overflow: hidden;
}

.desktop-header {
    z-index: 5;
    display: flex;
    align-items: center;
    max-width: 1600px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    background: transparent;
    transition: .4s;
}

.desktop-header .header-left {
    display: flex;
    align-items: center;
    column-gap: 62px;
}

.header-pages {
    display: flex;
    align-items: center;
    padding: 16px 40px;
    column-gap: 32px;
    background: #fff;
    border-radius: 50px;
}

.header-pages a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    text-decoration: none;
}

.page-banner-pages-buttons {
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 16px;
    width: 760px;
    max-width: 100%;
}

.page-banner-pages-buttons .page-banner-page-link {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    padding: 17px 20px;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
}

  


.header-buttons {
    display: flex;
    align-items: center;
    column-gap: 11px;
}

.custom-header-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
}

.design-by-mdf-button a {
    display: flex;
    align-items: center;
    padding: 12px 22px;
    column-gap: 8px;
    background: #026002;
    border-radius: 50px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
}

.mobile-hamburger-button button {
    position: relative;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
}

.mobile-hamburger-button button span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all .3s;
    left: 0;
    background: #026002;
}

.mobile-hamburger-button button span:first-child {
    top: 0;
    background: #026002;
}

.mobile-hamburger-button button span:nth-child(2) {
    top: 50%;
    background: #026002;
    transform: translate(0, -50%);
}

.mobile-hamburger-button button span:last-child {
    bottom: 0;
    background: #026002;
}


.mobile-hamburger-button button.active span:first-child {
    transform: translate(0px, 7px) rotate(45deg);
}

.mobile-hamburger-button button.active span:nth-child(2) {
    display: none;
}

.mobile-hamburger-button button.active span:last-child {
    transform: translate(0px, -7px) rotate(-45deg);
}

.mobile-hamburger-button {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-header.show {
    background: #252525;
    transition: .4s;
}

/*Custom Dropdown*/

.custom-dropdown {
    position: relative;
}

    .custom-dropdown .custom-dropdown-button::after
    {
        content: unset;
    }

    .custom-dropdown .dropdown-menu {
        width: max-content;
        transform: translate(0px, 60px) !important;
        border-radius: 0;
        border: 1px solid #e6e6e6;
        inset: auto auto -62px 0px !important;
    }

        .custom-dropdown .dropdown-menu li a {
            padding: 6px 24px;
            font-size: 15px;
            font-family: 'Poppins';
            color: #2c2c2c;
            line-height: 23px;
        }

            .custom-dropdown .dropdown-menu li a:active {
                background-color: #fff;
                color: #2c2c2c;
            }

    .custom-dropdown .custom-dropdown-button {
        padding: 18px 54px;
        padding-left: 24px;
        font-family: Poppins;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #343434;
        background: #fafafa;
        border: 1px solid #E6E6E6;
        border-radius: 4px;
        display: flex;
        align-items: center;
    }

.custom-dropdown .custom-dropdown-link {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.custom-dropdown .custom-dropdown-link::after {
    content: "\f078";
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #026002;
}

.custom-dropdown-inner {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 16px);
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.custom-dropdown:hover .custom-dropdown-inner {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    transition: .4s;
}

.custom-dropdown-inner-navigation-area {
    background: #ffffff;
    padding: 24px;
    width: max-content;
    max-width: 250px;
    box-shadow: 0px 6px 74px 0px #0000002E;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.custom-dropdown-inner-navigation-area ul {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 0;
    list-style: none;
    margin: 0;
    row-gap: 20px;
}

.custom-dropdown-inner-navigation-area ul li {
    width: 100%;
}

.custom-dropdown-inner-navigation-area ul li a {
    max-width: 100%;
    display: block;
    transition: .4s;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: #232323;

}





.custom-language-dropdown {
    position: relative;
}

.custom-language-dropdown .custom-language-dropdown-link {
    color: #232323;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 2px;
    width: 54px;
    height: 54px;
    background: #fff;
    justify-content: center;
    border-radius: 50px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.custom-language-dropdown .custom-language-dropdown-link::after {
    content: "\f078";
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #026002;
}

.custom-language-dropdown-inner {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 16px);
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.custom-language-dropdown:hover .custom-language-dropdown-inner {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
    transition: .4s;
}

.custom-language-dropdown-inner-navigation-area {
    background: #ffffff;
    padding: 24px;
    width: max-content;
    max-width: 250px;
    box-shadow: 0px 6px 74px 0px #0000002E;
    border-radius: 4px;
}

.custom-language-dropdown-inner-navigation-area ul {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 0;
    list-style: none;
    margin: 0;
    row-gap: 20px;
}

.custom-language-dropdown-inner-navigation-area ul li {
    width: 100%;
}

.custom-language-dropdown-inner-navigation-area ul li a {
    max-width: 100%;
    display: block;
    transition: .4s;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: #232323;
    text-decoration: none;
}


.fixed-mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: #252525;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    padding: 40px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    overflow-y: auto;
    row-gap: 24px;
}

.fixed-mobile-menu.show
{
    opacity: 1;
    visibility: visible;
    transform: .4s;
}

.fixed-mobile-menu-pages {
    display: flex;
    flex-direction: column;
    row-gap: 28px;
}

.fixed-mobile-menu-pages a {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
}

.fixed-mobile-menu-pages .accordion {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    row-gap: 28px;
}

.fixed-mobile-menu-pages .accordion .accordion-item {
    background: none;
    border: none;
}

.fixed-mobile-menu-pages .accordion .accordion-item .accordion-header {
    background: none;
    border: none;
}
.fixed-mobile-menu-pages .accordion .accordion-item .accordion-header .accordion-button {
    background: none;
    border: none;
    padding: 0;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    box-shadow: none;
    outline: none;
    padding-right: 24px;
}

.fixed-mobile-menu-pages .accordion .accordion-item .accordion-header .accordion-button::after {
    content: "\f078";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.fixed-mobile-menu-pages .accordion .accordion-item .accordion-body ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
.fixed-mobile-menu-pages .accordion .accordion-item .accordion-body ul li a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #FFFFFFCC;
}

.fixed-mobile-menu-pages .accordion .accordion-item .accordion-body {
    padding: 0;
    padding-top: 16px;
}

.fixed-mobile-menu-design-by-button a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 12px;
    background: #026002;
    border-radius: 50px;
    color: #fff;
    justify-content: center;
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
}

/*Fixed Whatsapp*/

.fixed-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
}

.fixed-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: #009C00;
    border-radius: 50px;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
}


/*Footer*/

footer {
    background: #343434;
    position: relative;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
}

footer::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.footer-inner {
    max-width: 1600px;
    margin: auto;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 110px 0;
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}

.footer-bottom-inner {
    max-width: 1600px;
    margin: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    z-index: 1;
    position: relative;
    border-top: 1px solid #FFFFFF3D;
}


.footer-logo-description-and-social-medias {
    display: flex;
    flex-direction: column;
    row-gap: 56px;
}

.footer-logo-and-description {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.footer-description {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

.footer-social-medias ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 12px;
}

.footer-social-medias ul li a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF36;
    background: #FFFFFF0A;
    border-radius: 50px;
    font-size: 24px;
    text-decoration: none;
    color: #FFFFFF;
}

.footer-pages-area {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.footer-pages-area .footer-pages-list ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    list-style: none;
}

.footer-pages-area .footer-pages-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

    .footer-pages-area .footer-pages-list ul li a {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #fffc;
        text-decoration: none;
    }

.footer-newsletter-area {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
}

.footer-newsletter-text {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.footer-newsletter-title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: #FFFFFF;
}

.footer-newsletter-description {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

.footer-newsletter-input-area {
    position: relative;
}

.footer-newsletter-input-area input {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    width: 100%;
    padding: 24px;
    border-radius: 50px;
    background: #EDEDED1A;
    border: none;
    outline: none;
    box-shadow: none;
}

.footer-newsletter-input-area input::placeholder {
    color: #FFFFFF;
}

.footer-newsletter-input-area .footer-newsletter-submit-button {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translate(0, -50%);
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    padding: 16px 29px;
    border-radius: 50px;
    background: #026002;
    border: 1px solid #026002;
    color: #fff;
    box-shadow: none;
    outline: none;
}

.footer-phone-number-and-email {
    display: flex;
    flex-direction: column;
    row-gap: 75px;
}

.footer-phone-number-area {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.footer-phone-number-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

.footer-phone-number a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-email-area {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.footer-email-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

.footer-email a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.footer-address-item {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.footer-address-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

.footer-address a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    text-decoration: none;
}

.mobile-footer-pages .accordion {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    row-gap: 28px;
}

.mobile-footer-pages .accordion .accordion-item {
    background: none;
    outline: none;
    border: none;
    box-shadow: none;
}

.mobile-footer-pages .accordion .accordion-item .accordion-header {
    background: none;
    border: none;
}

.mobile-footer-pages .accordion .accordion-item .accordion-header .accordion-button {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    box-shadow: none;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.mobile-footer-pages .accordion .accordion-item .accordion-header .accordion-button::after {
    width: 24px;
    height: 24px;
    content: "\f078";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.mobile-footer-pages .accordion .mobile-footer-page a {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
}

.mobile-footer-pages .accordion .accordion-item .accordion-body {
    padding: 0;
    padding-top: 16px;
}

.mobile-footer-pages .accordion .accordion-item .accordion-body ul {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-footer-pages .accordion .accordion-item .accordion-body ul li a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #FFFFFFCC;
    text-decoration: none;
}

.mobile-footer-pages {
    padding-top: 24px;
    border-top: 1px solid #FFFFFF29;
    display: none;
}

.footer-copyright {
    font-family: Poppins;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    color: #FFFFFF;
}


/*Banner*/

.page-banner-image, .page-banner-image img {
    height: 654px;
    object-fit: cover;
}

.page-banner-image {
    position: relative;
}

.page-banner-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #00000033, #00000033),
radial-gradient(50% 49.92% at 50% 49.92%, #0000004f 0%, #00000000 100%),
radial-gradient(22.94% 38.87% at 100% 0%, #00000085 0%, #00000000 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

.page-banner {
    position: relative;
}

.page-text-area
{
    margin-top: 88px;
    margin-bottom: 88px;
}

.page-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    max-width: 1600px;
    flex-direction: column;
    padding: 280px 0;
    padding-bottom: 20px;
    row-gap: 16px;
}

.page-banner-title-and-breadcrumb {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.page-banner-title-and-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}

.page-banner-breadcrumb {
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

.page-banner-breadcrumb::-webkit-scrollbar
{
    display: none;
}

.page-banner-breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.page-banner-breadcrumb ul li i {
    color: #fff;
    font-size: 13px;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-banner-breadcrumb ul li svg {
        font-size: 13px;
        width: 13px;
        height: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.page-banner-breadcrumb ul li a {
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    color: #FFFFFF;
    text-decoration: none;
}

.page-banner-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 54px;
    line-height: 64px;
    color: #fff;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

.page-banner-title::-webkit-scrollbar
{
    display: none;
}

.page-banner-kucuk-baslik {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 36px;
    line-height: 46px;
    color: #FFFFFF;
}

.page-banner-description {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}



/*Custom Page*/

.custom-page-container {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    position: relative;
    z-index: 4;
}

.custom-page-light-text-and-button-area {
    display: flex;
    align-items: end;
    justify-content: space-between;
    column-gap: 20px;
}

.custom-page-light-text-area {
    display: flex;
    align-items: start;
    column-gap: 32px;
    flex-direction: column;
}

.custom-page-light-small-title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #026002;
}

.custom-page-light-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 54px;
    line-height: 64px;
    color: #232323;
    width: 900px;
}

.custom-page-light-title span {
    color: #555555;
}



.custom-page-dark-text-and-button-area {
    display: flex;
    align-items: end;
    justify-content: space-between;
    column-gap: 20px;
}

.custom-page-dark-text-area {
    display: flex;
    align-items: start;
    column-gap: 32px;
    flex-direction: column;
}

.custom-page-dark-small-title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.custom-page-dark-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 54px;
    line-height: 64px;
    color: #FFFFFF;
    width: 900px;
}

.custom-page-dark-button-area .custom-page-dark-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F3;
    text-decoration: none;
    background: #026002;
    padding: 15px 20px;
    border-radius: 50px;
}


.custom-page-dark-mobile-button-area {
    display: none;
}

.custom-page-dark-mobile-button-area .custom-page-dark-mobile-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F3;
    text-decoration: none;
    background: #026002;
    padding: 15px 20px;
    border-radius: 50px;
    width: max-content;
    max-width: 100%;
    margin: auto;
}


.custom-page-light-button-area .custom-page-light-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F3;
    text-decoration: none;
    background: #026002;
    padding: 15px 20px;
    border-radius: 50px;
}

.custom-page-dark-mobile-button-area {
    display: none;
}

.custom-page-light-mobile-button-area {
    display: none;
}

.custom-page-light-mobile-button-area .custom-page-light-mobile-button {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F3;
    text-decoration: none;
    background: #026002;
    padding: 15px 20px;
    border-radius: 50px;
    width: max-content;
    max-width: 100%;
    margin: auto;
}




@media only screen and (min-width: 992px)
{
    .fixed-mobile-menu
    {
        opacity: 0!important;
        visibility: hidden!important;
        transition: .4s;
    }
    .mobile-hamburger-button
    {
        display: none;
    }
}

@media only screen and (max-width: 1640px)
{
    .desktop-header {
    max-width: 1440px;
}

.desktop-header .header-left {
    column-gap: 24px;
}

.header-pages {
    column-gap: 20px;
}

.footer-inner {
    max-width: 1440px;
}

.footer-bottom-inner {
    max-width: 1440px;
}

.page-banner-text {
    max-width: 1440px;
}

.custom-page-container {
    max-width: 1440px;
}

}

@media only screen and (max-width: 1440px)
{
    .desktop-header {
    max-width: 1320px;
}

.header-pages {
    column-gap: 16px;
}

.header-pages a {
    font-size: 14px;
    line-height: 22px;
}

.custom-dropdown .custom-dropdown-link {
    font-size: 14px;
    line-height: 22px;
}

.footer-inner {
    max-width: 1320px;
}

.footer-bottom-inner {
    max-width: 1320px;
}

.footer-newsletter-input-area input {
    padding: 16px 24px;
}

.footer-newsletter-input-area .footer-newsletter-submit-button {
    padding: 10px 20px;
}

.page-banner-text {
    max-width: 1320px;
}

.custom-page-container {
    max-width: 1320px;
}

}

@media only screen and (max-width: 1399px)
{
    .desktop-header {
    max-width: 1240px;
}

.custom-language-dropdown .custom-language-dropdown-link {
    width: 44px;
    height: 44px;
    font-size: 14px;
    line-height: 22px;
}

.custom-header-button a {
    width: 44px;
    height: 44px;
}

.design-by-mdf-button a {
    padding: 8px 16px;
    column-gap: 8px;
    font-size: 14px;
    line-height: 22px;
}

.footer-inner {
    max-width: 1240px;
}

.footer-bottom-inner {
    max-width: 1240px;
}

.page-banner-text {
    max-width: 1240px;
}

.custom-page-container {
    max-width: 1240px;
}

.custom-page-light-small-title {
    font-size: 15px;
    line-height: 23px;
}

.custom-page-light-title {
    font-size: 36px;
    line-height: 46px;
    width: 600px;
}

.custom-page-dark-small-title {
    font-size: 15px;
    line-height: 23px;
}

.custom-page-dark-title {
    font-size: 36px;
    line-height: 46px;
    width: 600px;
}

}
@media only screen and (max-width: 1280px)
{
    .header-logo a img {
    width: 120px;
    height: 32px;
}

.desktop-header {
    max-width: 1150px;
}
.header-pages a {
    font-size: 13px;
    line-height: 21px;
}

.custom-dropdown .custom-dropdown-link {
    font-size: 13px;
    line-height: 21px;
}

.header-pages {
    column-gap: 10px;
    padding: 14px 20px;
}
.desktop-header .header-left {
    column-gap: 12px;
}

.footer-inner {
    max-width: 1150px;
}

.footer-bottom-inner {
    max-width: 1150px;
}

.page-banner-text {
    max-width: 1150px;
}

.custom-page-container {
    max-width: 1150px;
}

}

@media only screen and (max-width: 1199px)
{
    .header-buttons {
    column-gap: 6px;
}

.custom-language-dropdown .custom-language-dropdown-link {
    width: 38px;
    height: 38px;
    font-size: 13px;
    line-height: 21px;
}

.custom-header-button a {
    width: 38px;
    height: 38px;
}

.custom-header-button a svg {
    width: 18px;
    height: unset;
}

.design-by-mdf-button a {
    padding: 6px 14px;
    column-gap: 8px;
    font-size: 13px;
    line-height: 21px;
}

.header-logo a img {
    width: 100px;
    height: 39px;
}

.header-pages {
    column-gap: 10px;
    padding: 10px 14px;
}   

.desktop-header {
    max-width: 990px;
}

.footer-inner {
    max-width: 990px;
}

.footer-bottom-inner {
    max-width: 990px;
}

.footer-pages-area .footer-pages-title {
    font-size: 16px;
    line-height: 24px;
}

.footer-pages-area .footer-pages-list ul li a {
    font-size: 15px;
    line-height: 23px;
}

.footer-description {
    font-size: 15px;
    line-height: 23px;
}

.footer-newsletter-title {
    font-size: 26px;
    line-height: 34px;
}

.footer-newsletter-description {
    font-size: 16px;
    line-height: 24px;
}

.footer-newsletter-input-area input {
    font-size: 15px;
    line-height: 23px;
    padding: 20px;
}

.footer-newsletter-input-area .footer-newsletter-submit-button {
    font-size: 15px;
    line-height: 23px;
}

.footer-phone-number-title {
    font-size: 16px;
    line-height: 24px;
}

.footer-phone-number a {
    font-size: 16px;
    line-height: 24px;
}

.footer-email-title {
    font-size: 16px;
    line-height: 24px;
}

.footer-email a {
    font-size: 16px;
    line-height: 24px;
}

.footer-address-title {
    font-size: 16px;
    line-height: 24px;
}

.footer-address a {
    font-size: 16px;
    line-height: 24px;
}

.page-banner-text {
    max-width: 990px;
}

.custom-page-container {
    max-width: 990px;
    padding: 0 12px;
}

}

@media only screen and (max-width: 991px)
{
    .header-pages
    {
        display: none;
    }

    .desktop-header {
    max-width: 100%;
    padding: 16px;
}

.header-logo a img {
    width: 94px;
    height: 24px;
}
.design-by-mdf-button
{
    display: none;
}

.footer-inner {
    max-width: 100%;
    padding: 110px 12px;
}

.footer-bottom-inner {
    max-width: 100%;
    padding: 32px 12px;
}   

.footer-phone-number-and-email {
    row-gap: 20px;
}

.fixed-whatsapp a {
    width: 48px;
    height: 48px;
    font-size: 24px;
}

.fixed-whatsapp {
    bottom: 70px;
}

.page-banner-text {
    max-width: 100%;
    padding: 70px 16px;
    padding-bottom: 30px;
    justify-content: end;
    row-gap: 10px;
    padding-right: 0;
}

.page-banner-breadcrumb ul li a {
    font-size: 11px;
    line-height: 19px;
}

.page-banner-title {
    font-size: 20px;
    line-height: 28px;
}

.page-banner-image, .page-banner-image img {
    height: 224px;
    object-fit: cover;
}

.custom-page-container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

.custom-page-dark-text-and-button-area {
    align-items: start;
    flex-direction: column;
    row-gap: 32px;
}

.custom-page-dark-button-area
{
    display: none;
}

.custom-page-light-button-area
{
    display: none;
}

.custom-page-dark-mobile-button-area {
    display: block;
}

.custom-page-light-mobile-button-area {
    display: block;
}

.custom-page-light-text-and-button-area {
    align-items: start;
    flex-direction: column;
    row-gap: 32px;
}

.page-banner-description {
    display: none;
}

.page-banner-title-and-breadcrumb {
    row-gap: 10px;
}

    .page-banner-kucuk-baslik
    {
        display: none;
    }


    .page-banner-pages-buttons {
        display: flex;
        flex-wrap: wrap;
        row-gap: 16px;
        column-gap: 12px;
        width: 760px;
        max-width: 100%;
        white-space: nowrap;
        flex-wrap: nowrap;
        overflow: hidden;
        margin-top: 0;
        overflow-x: auto;
        height: 65px;
    }

        .page-banner-pages-buttons .page-banner-page-link {
            font-size: 13px;
            line-height: 20px;
            padding: 5px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


    .page-banner-pages-buttons::-webkit-scrollbar
    {
        display: none;
    }

}

@media only screen and (max-width: 767px)
{
    .desktop-footer-pages
    {
        display: none!important;
    }

    .mobile-footer-pages
    {
        display: block;
    }

    .footer-phone-number-and-email {
    padding-top: 24px;
    border-top: 1px solid #FFFFFF29;
}

.footer-newsletter-area {
    padding-top: 24px;
    border-top: 1px solid #FFFFFF29;
}

.footer-inner {
    row-gap: 24px;
}

.footer-bottom > .row {
    row-gap: 20px!important;
}

.footer-newsletter-area {
    row-gap: 24px;
}

.footer-top > .row {
    row-gap: 24px!important;
}

.footer-logo-description-and-social-medias {
    row-gap: 24px;
}

.footer-inner {
    padding: 62px 0px;
}

.footer-social-medias ul li a {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.custom-page-light-small-title {
    font-size: 14px;
    line-height: 22px;
}

.custom-page-light-title {
    font-size: 26px;
    line-height: 38px;
    width: 440px;
}

.custom-page-dark-small-title {
    font-size: 14px;
    line-height: 22px;
}

.custom-page-dark-title {
    font-size: 26px;
    line-height: 38px;
    width: 440px;
}
}

@media only screen and (max-width: 490px)
{
    
.custom-page-light-title {
    font-size: 26px;
    line-height: 38px;
    width: 100%;
}


.custom-page-dark-title {
    font-size: 26px;
    line-height: 38px;
    width: 100%;
}

}

@media only screen and (max-width: 475px)
{
    .footer-bottom-inner {
    row-gap: 16px;
    flex-direction: column;
}

.footer-copyright {
    text-align: center;
}

.footer-newsletter-input-area input {
    font-size: 13px;
    line-height: 24px;
    padding: 12px 18px;
}

.footer-newsletter-input-area .footer-newsletter-submit-button {
    right: 8px;
    padding: 8px 16px;
}

.footer-newsletter-input-area .footer-newsletter-submit-button {
    font-size: 14px;
    line-height: 20px;
}

}