@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
     font-family: "Montserrat", sans-serif !important;
}

.header-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    z-index: 9999;
    height: 100px;
    transition: .3s ease;
}
.header-fixed .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header-categories {
    width: 45%;
}

.header-logo {}

.header-logo>a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo>a>img {
    display: flex;
    width: 150px;
    align-items: center;
}

.header-account-main {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.3rem;
}

.header-categories>ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header-categories>ul>li {}

.header-categories>ul>li>a {
    text-decoration: none !important;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff !important;
}

.header-account-main .header-lang {
    position: relative;
}

.header-account-main .header-lang>button {
    border: none;
    background: no-repeat;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
}

.header-account-main .header-lang>ul {
    position: absolute;
    margin: 0;
    padding: 10px;
    width: 130px;
    list-style: none;
    top: 110%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9;
}
.header-lang.active > ul {
  opacity: 1;
  max-height: 200px; /* Menü yüksekliğine göre ayarla */
  visibility: visible;
}
.header-account-main .header-lang>ul > li:not(:last-child)::after {
    content: "";
    position: absolute;
    background: black;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
}

.header-account-main .header-lang>ul > li > a {
    text-decoration: none;
    color: #000;
    font-size: 13.5px;
    padding-left: 5px;
    transition: .3s ease;
}

.header-account-main .header-lang>ul > li {
    position: relative;
}

.header-account-main .header-lang>ul > li:hover > a {
    font-weight: 500;
}

.header-account-main .header-account {
    position: relative;
}

.header-account-main .header-account > a {
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
}

.header-account-main .header-search {
    width: 220px;
}

.header-account-main .header-search form.is-search-form {
    margin: 0;
    width: 100%;
}

.header-account-main .header-lang::after {
    content: "";
    position: absolute;
    right: -10px;
    height: 100%;
    width: 1px;
    background: #fff;
}

.header-account-main .header-search form.is-search-form input {
    border-radius: 25px;
    height: 25px;
    width: 100%;
    background: #ffffff47;
    border: none !important;
}

.header-account-main .header-search form.is-search-form button.is-search-submit {
    position: absolute;
    right: 11px;
    border: none;
    background: none;
    width: 27px;
    height: 27px;
    z-index: 99;
}

.header-account-main .header-search form.is-search-form label {
    width: 100% !important;
}

.header-account-main .header-search form.is-search-form button.is-search-submit span.is-search-icon {
    border: none;
    background: none;
    padding: 0 !important;
    height: 27px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

.home-slider-video {
    display: flex;
    height: 100vh;
}

.header-account-main .header-search form.is-search-form input::placeholder {
    color: #fff;
    font-family: "Montserrat", sans-serif !important;
    font-size: 13px;
}

.header-account-main .header-account > a > i {
    font-size: 19px;
}

.header-fixed.fixed {
    background: #fff;
    position: fixed !important;
}

.header-fixed.fixed .header-categories>ul>li>a {
    color: #000 !important;
}

.header-fixed.fixed .header-account-main .header-lang>button {
    color: #000;
}

.header-fixed.fixed .header-account-main .header-account > a {
    color: #000;
}

.header-fixed.fixed .header-account-main .header-search form.is-search-form input {
    background: #00000033;
}

.header-fixed.fixed  .header-account-main .header-search form.is-search-form input::placeholder {
    color: #000;
}

.header-categories>ul>li >  ul.sub-menu {
    position: absolute;
    padding: 0;
    list-style: none;
    width: 200px;
    background: #ffff;
    /* padding-bottom: 1rem; */
    border-radius: 10px;
    top: 32px;
    left: -40px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 9;
}

.header-categories>ul>li.menu-item-has-children {position: relative;cursor: pointer;}

.header-categories>ul>li > ul.sub-menu > li {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: .5rem; */
    transition: .3s ease;
}

.header-categories>ul>li > ul.sub-menu > li > a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: .5rem;
}

.header-categories>ul>li > ul.sub-menu > li:hover {
    background: #000000;
}

.header-categories>ul>li > ul.sub-menu > li:hover > a {
    color: #fff;
}

.header-categories>ul>li.menu-item-has-children::after {
    content:"\F282";
    position: absolute;
    font-family: 'bootstrap-icons';
    color: #fff;
    font-size: 13px;
    top: 4px;
    right: -18px;
}

.header-categories>ul>li > ul.sub-menu.active {
    opacity: 1;
    visibility: visible;
}


.header-fixed.header-page {
    position: unset;
}

.header-fixed.header-page .header-categories>ul>li>a {
    color: #000 !important;
    font-size: 12px;
}

.header-fixed.header-page .header-account-main .header-lang>button {
    color: #000;
}

.header-fixed.header-page .header-account-main .header-search form.is-search-form input {
    background: #00000033;
}

.header-fixed.fixed .header-categories>ul>li.menu-item-has-children::after {
    color: #000;
}

.header-fixed .is-search-submit path {
    fill: #fff !important;
}

.header-fixed.fixed .is-search-submit path {
    fill: #000 !important;
}

.header-fixed.header-page .is-search-submit path {
    fill: #000 !important;
}

.header-fixed.header-page  .header-account-main .header-search form.is-search-form input::placeholder {
    color: #000;
}

.header-fixed.header-page  .header-categories>ul>li.menu-item-has-children::after {
    color: #000;
}

.header-fixed.fixed .header-account-main .header-lang::after {
    background: #000000;
}

/*home-css*/
.home-pageetext-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 3rem;
}

.welcome-text {
    width: 100%;
    text-align: center;
    padding: 1rem;
    background: #f1dfc6;
}

.welcome-text > span {
    font-size: 33px;
    font-weight: 700;
}

.home-pagetext-desc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-pagetext-desc >span {
    margin: 0;
    text-align: center;
    width: 100%;
    font-weight: 500;
}

.home-pagetext-desc >p {
    margin: 0;
    text-align: center;
    width: 52%;
    font-weight: 500;
}
.home-pagetext-link {}

.home-pagetext-link > a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    gap: .8rem;
    align-items: center;
    transition: .3s ease;
}

.home-pagetext-link > a > i {
    font-size: 23px;
}

.home-pagetext-link > a:hover {font-weight: 600;}

.home-pagetext-images {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.home-pagetext-images .home-image {
    width: calc(33.3% - 1.5rem);
}

.home-pagetext-images .home-image > a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    transition: .3s ease;
}

.home-pagetext-images .home-image > a > img {
    width: 100%;
    transition: .3s ease;
}

.home-pagetext-images .home-image > a > span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffff;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease;
}

.home-pagetext-images .home-image > a > span > i {
    font-size: 25px;
}

.home-pagetext-images .home-image.image-mid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.home-pagetext-images .home-image.image-mid > a:nth-child(1)  > span {
    right: 20px;
    left: unset;
    flex-direction: row-reverse;
}


.home-pagetext-images .home-image.image-right > a > span {
    left: unset;
    right: 20px;
    flex-direction: row-reverse;
}
.background-banner {
    background-image: url(https://alkur.duowebsoft.com/wp-content/themes/default/image/background.png);
    height: 400px;
    background-size: cover;
    position: relative;
}

.background-banner-text {
    position: absolute;
    top: 40%;
    transform: translateX(50%);
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-banner-text > span {
    color: #ffff;
    font-size: 25px;
    width: 75%;
    display: flex;
    text-align: center;
    background: #000000a8;
    padding: 1rem;
}

.home-pagetext-desc > p > strong {
}
.home-pagetext-images .home-image > a:hover > img {
    transform: scale(1.1);
}

.home-pagetext-images .home-image > a:hover > span {
    transform: scale(1.1);
}

.home-slide-wrapper {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  background: #f1dfc6;
  padding: 2rem;
}

.home-slide-text {
  display: flex;
  animation: scroll-left 20s linear infinite;
}

.home-slide-text a {
  margin-right: 100px;
  text-decoration: none;
  font-size: 17px;
  color: #222;
  transition: color 0.3s;
  position: relative;
  font-weight: 500;
  transition: .3s ease;
}

.home-slide-text a:hover {
  color: #000000;
  font-weight: 600;
}

.home-slide-text a::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #000;
    border-radius: 50%;
    left: -51px;
    top: 38%;
    font-weight: 500;
}

.home-slide-text a:hover::before {
    font-weight: 500;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.home-machines-wrapper {
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    gap: .5rem;
    justify-content: space-between;
}

.home-machines-wrapper .home-machines-text {
    width: calc(33% - .5rem);
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.home-machines-wrapper .home-machines-images {
    width: calc(67% - .5rem);
    display: flex;
    gap: 1.5rem;
    justify-content: end;
}

.home-machines-wrapper .home-machines-images > img {
    width: calc(50% - 1.5rem);
    border: 4px solid;
}

.home-machines-wrapper .home-machines-text .home-machines-title > span {
    font-size: 25px;
    font-weight: 700;
}

.home-machines-wrapper .home-machines-text .home-machines-desc {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.home-machines-wrapper .home-machines-text .home-machines-desc > p {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.home-machines-wrapper .home-machines-text .home-machines-desc > p > strong {
    display: inline-flex;
    margin-bottom: .9rem;
   
}



/*home-css-end*/

/*footer*/
.footer-contact-wrapper {
    position: absolute;
    top: 35%;
    transform: translateX(50%);
    width: 49%;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.footer-contact-wrapper .footer-contact-text {
    color: #ffff;
    font-size: 25px;
    width: 72%;
    display: flex;
    background: #000000a8;
    padding: 1rem;
    flex-direction: column;
}

.footer-contact-wrapper .footer-contact-link {
    display: flex;
    background: #000000a8;
    padding: .5rem 1rem;
}

.footer-contact-wrapper .footer-contact-text > span {
    color: #ffff;
    font-size: 16px;
}

.footer-contact-wrapper .footer-contact-text > h3 {
    font-weight: 700;
}

.footer-contact-wrapper .footer-contact-link > a {
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

.footer-contact-wrapper .footer-contact-link > a > i {
    font-size: 28px;
}

.footer-bottom {
    background: #f1dfc6;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.footer-bottom .footer-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 45%;
}

.footer-bottom .footer-bottom-wrap .footer-logo {
    width: 35%;
}

.footer-bottom .footer-bottom-wrap .footer-logo > a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom .footer-bottom-wrap .footer-logo > a > img {
    width: 100%;
}

.footer-bottom .footer-bottom-wrap .footer-info {
    width: 60%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-bottom .footer-bottom-wrap .footer-info a {
    text-decoration: none;
    color: #000;
}

.footer-bottom .footer-bottom-wrap .footer-info .footer-address {}

.footer-bottom .footer-bottom-wrap .footer-info .footer-address > a {
    font-weight: 500;
    font-size: 15px;
}

.footer-bottom .footer-bottom-wrap .footer-info .footer-tel {
    display: flex;
    gap: .5rem;
}

.footer-bottom .footer-bottom-wrap .footer-info .footer-tel > span {
    font-size: 15px;
    font-weight: 500;
}

.footer-bottom .footer-bottom-wrap .footer-info .footer-mail {}

.footer-bottom .footer-bottom-wrap .footer-info .footer-mail > span {
    font-size: 15px;
    font-weight: 500;
}

.footer-info-text > span {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
}

.footer-bottom .footer-bottom-wrap .footer-info::before {
    content: "";
    position: absolute;
    left: -29px;
    height: 100%;
    width: 1px;
    background: #000000;
}
/*footer-end*/

/*page-detail*/
.page-detail-container .about-page.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.page-head-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-detail-container {
    padding: 3rem 0;
}

.page-head-content .page-title {}

.page-head-content .page-title > span {
    color: #808080;
    font-size: 15px;
    font-weight: 600;
}

.page-head-content .page-text {}

.page-head-content .page-text > span {
    font-size: 13px;
    font-style: italic;
    color: #808080;
    font-weight: 500;
}

.about-page.page-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}

.page-content-wrapper .content-title {}

.page-content-wrapper .content-title > span {
    font-size: 25px;
    font-weight: 700;
    color: #000;
}

.page-content-wrapper .content-text {}

.about-page .page-content-wrapper .content-text > p {
    text-align: center;
    width: 80%;
}

.page-content-wrapper .content-text > p {
    font-size: 16px;
    font-weight: 500;
}

.about-page .page-content-wrapper .content-text {
    display: contents;
    text-align: center;
    justify-content: center;
}

.page-contact-link {}

.page-contact-link > a {
    background: #999b9e;
    padding: .5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
}


.page-content-top {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.page-content-top .page-content-left {
    width: calc(75% - 1rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-content-top .page-content-right {
    width: calc(25% - 1rem);
}

.page-content-top .page-content-right > img {
    width: 100%;
}

.page-content-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.page-content-gallery .page-content-img {
    width: calc(25% - 1rem);
}

.page-content-gallery .page-content-img > img {
    width: 100%;
}

.page-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.page-detail-container .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/*page-detail-end*/

/*contact-page*/
.contact-page.page-content-wrapper {
    flex-direction: unset;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 3.5rem;
    width: 100%;
    align-items: stretch;
    height: 100%;
}

.contact-page.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.contact-page .page-content-left {
    position: relative;
    width: 35%;
    display: flex;
    align-items: center;
}

.contact-page .page-content-left .contact-iframe {
    display: flex;
    margin-bottom: 1rem;
    position: relative;
    z-index: 999;
}

.contact-page.page-content-wrapper .page-content-right {
    width: 65%;
    display: flex;
    justify-content: end;
    background: #f6dfc4;
    padding: 1rem;
}

.contact-page.page-content-wrapper .page-content-right .contact-form {
    padding: 2rem;
    width: 63%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .contact-form-title {}

.contact-page.page-content-wrapper .page-content-right .contact-form .contact-form-title > span {
    font-size: 25px;
    font-weight: 700;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 {
    width: 95%;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form label {
    width: 100%;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form label span.wpcf7-form-control-wrap {
    width: 100%;
    display: flex;
    position: relative;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form label span.wpcf7-form-control-wrap > input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid;
    outline: none;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form label span.wpcf7-form-control-wrap > textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid;
    outline: none;
}

.contact-page .page-content-left .contact-iframe::after {
    content: "";
    width: 100%;
    background: #ffffff;
    position: absolute;
    height: 100%;
    z-index: -1;
    bottom: -5px;
    right: -6px;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form label span.wpcf7-form-control-wrap > input::placeholder {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form label span.wpcf7-form-control-wrap > textarea::placeholder {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    top: 0px;
    font-weight: 500;
    font-size: 14px;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form input.wpcf7-submit {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: #fff;
    border: none;
    outline: none;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 1rem;
    font-size: 17px;
    margin-top: 1rem;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form input.wpcf7-submit::after {
    content:"\F135";
    position: absolute;
    font-family: 'bootstrap-icons';
    right: 0;
    z-index: 99;
    color: #000;
}

.contact-social-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-social-media > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.contact-page.page-content-wrapper .page-content-right .contact-form .wpcf7 > form > p {
    margin: 0;
    height: fit-content;
    display: flex;
}

.wpcf7-spinner {
    display: none;
}

.contact-social-media > ul > li > a {
    color: #000;
    font-size: 20px;
}
/*contact-page-end*/

/*videos-page*/
.videos-container.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.videos-page.page-content-wrapper {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 1rem;
}

.videos-page.page-content-wrapper .video-wrap {
    width: calc(20% - 1rem);
}
/*videos-page-end*/