:root {
    --container-width: 1400px;
    --container-out: calc(calc(calc(100vw - var(--container-width)) / 2) + 4px);
    --container-col: calc(var(--container-width) / 12);
    --orange: #E74E00;
    --gray: #8B959B;
    --dark-gray: #2B2F31;
    --bg-gray: #2B2F31
}
.pore {position:relative;}
* {
    font-family: 'AvertaStd';
    scroll-behavior: smooth;
    outline: 0 !important;
}

@media (max-width: 1400px) and (min-width: 1200px) {
    :root {
        --container-width: 1133px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    :root {
        --container-width: 953px;
    }
}

@media (min-width: 1399px) {
    :root {
        --container-width: 1400px;
    }

    .container {
        max-width: 1400px;
    }
}

.toggle-menu {
    display: none;
}

body {
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-header {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: 300ms;
    top: 30px;
    padding: 0 64px;
}

.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .header-container .logo {
    width: 330px;
}

.main-header .header-container .languages {
    width: 330px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.main-header .header-container .menu {
    width: calc(100% - 400px);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header .header-container .menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-header .header-container .menu > ul > li {
    position: relative;
}

.main-header .header-container .menu > ul > li > a {
    display: block;
    padding: 15px 13px;
    transition: 300ms;
    font-size: 18px;
    color: #fff;
}

.main-header .header-container .menu > ul > li > ul {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    background: var(--orange);
    min-width: 230px;
    list-style: none;
    padding: 15px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
}

.main-header .header-container .menu > ul > li > ul > li > a {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, .6);
    transition: 300ms;
}

.main-header .header-container .menu > ul > li > ul > li > a:Hover {
    color: #fff;
}

.main-header .header-container .menu > ul > li > ul > li > a:Hover:after {
    opacity: 1;
}

.main-header .header-container .menu > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.main-header .header-container .menu > ul > li:hover > a {
    color: var(--orange);
}

.main-header .header-container .menu > .socials {
    position: relative;
    margin: 0 20px 0 40px;
    padding-right: 20px;
}

.main-header .header-container .menu > .socials > li > a {
    padding: 8px;
}

.main-header .header-container .menu > .socials:after {
    content: '';
    position: absolute;
    right: 0;
    height: 30px;
    background: rgba(255, 255, 255, .6);
    width: 1px;
    top: calc(50% - 15px);
}

.main-header .video-play-btn {
    font-size: 14px;
    color: #fff;
    font-weight: lighter;
    transition: 300ms;
}

.main-header .video-play-btn img {
    margin-right: 10px;
    transition: 300ms;
    filter: brightness(0) invert(1);
}

.main-header .video-play-btn:Hover {
    color: var(--orange);
}

.main-header .video-play-btn:hover img {
    filter: brightness(1) invert(0);
}

.main-header .languages .lang-content {
    position: relative;
    display: inline-block;
}

.main-header .languages .active {
    position: relative;
    text-align: right;
    color: #ffffff;
    transition: 300ms;
    font-size: 20px;
    /* text-transform: uppercase; */
    cursor: pointer;
}

.main-header .languages .active img {
    opacity: 1;
    margin-right: 10px;
    transition: 300ms;
    width: 30px;
}

.main-header .languages .active:Hover {
    color: #fff;
}

.main-header .languages .list {
    position: absolute;
    left: 0;
    background: #2B2F31;
    list-style: none;
    margin: 0;
    text-align: center;
    min-width: 100%;
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
    margin-left: -20px;
}

.main-header .languages .list li > a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    transition: 300ms;
    /* text-transform: uppercase; */
    color: #fff;
    font-size: 20px;
    padding: 5px 25px 0 0;
}

.main-header .languages .list li > a img {
    transition: 300ms;
    opacity: 1;
    width: 30px;
}

.main-header .languages .list li > a:Hover img {
    transition: 300ms;
    opacity: 1;
}

.main-header .languages .list li > a:Hover {
    color: #fff;
}

.main-header .languages:Hover .list {
    opacity: 1;
    visibility: visible;
}

.main-banner {
    position: relative;
    height: 100vh;
}

.main-banner .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-banner .content .text {
    width: 65%;
    color: #fff;
}

@media (min-width: 992px) {
    .main-banner .content .text {
        margin-left: var(--container-col);
    }
}

.main-banner .content .text h1 {
    font-size: 72px;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-banner .content .text p {
    font-size: 24px;
    font-weight: 600;
    padding-right: 150px;
}

.main-banner .scroll-container {
    position: absolute;
    left: 0;
    bottom: 70px;
    width: 100%;
    z-index: 1;
}

.main-banner video {
    width: 100%;
    object-fit: cover;
    height: 100vh;
}

.main-banner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #2B2F31;
    opacity: .7;
}

.section-categories {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: var(--dark-gray);
    display: flex;
    flex-direction: column;
    z-index: 2;
    padding: 180px 40px 0 40px;
    width: 230px;
    overflow: hidden;
    align-items: flex-start;
    justify-content: space-between;
    max-height: 970px;
    transition: 300ms;
}

.section-categories .sector {
    width: 100%;
    position: relative;
}

.section-categories .sector > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 12px;
    white-space: nowrap;
    transition: 500ms;
    color: rgba(255, 255, 255, 0.4);
    width: 100%;
}

.section-categories .sector a > img {
    transition: 500ms;
    opacity: .6;
    transform: translateX(50px);
}

.section-categories .sector > a .title {
    transform: translateX(0);
    opacity: 0;
    transition: 500ms;
}

.section-categories .section-title {
    color: #707374;
    text-transform: uppercase;
    font-size: 20px;
    opacity: 0;
    transition: 500ms;
    transform: translateX(30px);
}

.section-categories .view-all {
    background: linear-gradient(90deg, #EC6500, #E74E00);
    white-space: nowrap;
    margin-left: -40px;
    width: calc(100% + 80px);
    padding: 15px 0;
    text-align: center;
    color: #fff;
    transition: 300ms;
}

.section-categories .view-all .title {
    transition: 500ms;
    opacity: 0;
    transform: translateX(50px);
    display: inline-block;
}

.section-categories .view-all i {
    margin-right: 10px;
    transition: 500ms;
    transform: translateX(90px);
}

.section-categories:Hover {
    width: 300px;
}

.section-categories:Hover .sector a > img {
    transform: translateX(0);
}

.section-categories:Hover .sector > a .title {
    transform: translateX(0);
    opacity: 1;
}

.section-categories:Hover .section-title {
    transform: translateX(0);
    opacity: 1;
}

.section-categories .sector > a:Hover {
    color: #fff;
}

.section-categories .sector > a:Hover img {
    opacity: 1;
}

.section-categories:hover .view-all i {
    transform: translateX(0);
}

.section-categories:hover .view-all .title {
    opacity: 1;
    transform: translateX(0);
}

.main-about {
    background: var(--orange);
    margin-top: -20px;
    position: relative;
    overflow: hidden;
}

.main-about .about-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 180px 0 90px;
}

.main-about .about-container > div {
    width: 50%;
}

.main-about .about-container .image {
    text-align: center;
}

.main-about .about-container .image img {
    position: absolute;
    top: 0;
    left: 43px;
    opacity: .2;
    height: 118%;
}

.main-about .about-container .content {
    color: #fff;
}

.main-about .about-container .content .title {
    font-size: 48px;
    font-weight: 400;
    max-width: 550px;
    margin-bottom: 30px;
}

.main-about .about-container .content .description p {
    font-size: 20px;
    font-weight: 400;
    color: #e1e1e1;
    max-width: 90%;
    margin-bottom: 60px;
}

.site-btn {
    display: inline-block;
    padding: 18px 36px;
    transition: 300ms;
    border-radius: 40px;
    font-size: 18px;
    border: 0;
    font-weight: lighter;
}

.site-btn.orange-btn {
    background: linear-gradient(90deg, #d74f0a, #d74f0a);
    color: #fff;
    font-weight: 600;
}
.main-about .site-btn.orange-btn {
    background: linear-gradient(90deg, #ffffff, #d74f0a);
    color: #e74e00;
    font-weight: 600;
}
.contact-form .button {
    float: right;
    display: flex;
    justify-content: flex-end;
    margin-right: -15px;
    position: relative;
}

.contact-form .button .site-btn.orange-btn {
    width: initial;
    padding: 18px 36px;
    padding-right: 75px;
    font-size: 17px;
    font-weight: 400;
    transition: all .5s;
    border-radius: 50px;
}

.contact-form .button:hover .site-btn.orange-btn {
    padding-right: 95px;
}

.contact-form .button i {
    position: absolute;
    top: 40%;
    right: 44px;
    color: #fff;
}

.site-btn.white-btn {
    background: #fff;
    color: #000;
}

.site-btn i {
    font-weight: normal;
    margin-left: 14px;
    transition: 300ms;
}

.site-btn:hover > i {
    margin-left: 30px;
}

.main-about .counter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 40px;
    color: #fff;
    font-size: 18px;
}

.main-about .counter .title {
    font-weight: bold;
    color: var(--orange);
    margin: 0;
}

.main-about .counter .description {
    font-weight: lighter;
    margin: 0;
}

.main-about .slider .owl-nav {
    position: absolute;
    left: -50px;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% + 100px);
}

.main-about .slider .owl-nav i {
    transition: 300ms;
    color: var(--orange);
    font-weight: normal;
    cursor: pointer;
}

.main-about .slider .owl-nav .disabled i {
    opacity: .6;
    cursor: no-drop;
}

.main-about .shadow {
    width: 100%;
    margin: 30px 0;
    user-select: none;
}

.main-sectors {
    background: #45494c;
    padding: 40px 0;
}

.main-sectors .sectors-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-image: url(../assets/images/home/sectors-bg.png); */
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 120px;
}

.main-sectors .sectors-container > div {
    width: 50%;
}

.main-sectors .sectors-container .sector {
    text-align: center;
}

.main-sectors .sectors-container .sector img {
    width: 100px;
    display: inline-block;
}

.main-sectors .sectors-container .sector .icon img {
    height: 120px;
    display: inline-block;
    /* filter: brightness(0) invert(1); */
    width: initial
}

.main-sectors .sectors-container .sector .title {
    font-size: 30px;
    color: #fff;
    margin-bottom: 19px;
    font-weight: 600;
}

.main-sectors .sectors-container .sector .description {
    font-weight: lighter;
    color: #fff;
    max-width: 70%;
    margin: 0 auto 60px auto;
}

.main-sectors .sectors-container .header {
    position: relative;
}

.main-sectors .sectors-container .header:After {
    content: '';
    position: absolute;
    right: -20px;
    width: 1px;
    height: 100%;
    top: 1px;
    background: #fff;
    opacity: .45;
}

.main-sectors .sectors-container .header .title {
    font-size: 72px;
    color: #fff;
    padding: 15px 0;
    margin: 0;
}

.main-sectors .sectors-container .header .sup-title {
    font-size: 20px;
    color: #fff;
    font-weight: lighter;
}

.main-sectors .sectors-container .owl-nav {
    position: absolute;
    right: -190px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    border-radius: 100%;
    row-gap: 10px;
}

.main-sectors .sectors-container .owl-nav span {
    background-image: url(../assets/images/icons/icon-color-left.svg);
    display: block;
    width: 80px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0);
    transition: 300ms;
    opacity: .5;
}

.main-sectors .sectors-container .owl-nav span:Hover {
    opacity: 1;
}

.main-sectors .sectors-container .owl-nav span.next {
    transform: rotate(-180deg);
}

.main-sectors .sectors-container .owl-nav span.next:hover {
    filter: brightness(1);
}

.main-production {
    background: var(--bg-gray);
}

.main-production .production-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 100px;
    position: relative;
}

.main-production .production-container > div {
    width: 50%;
}

.main-production .production-container .image {
    margin-right: calc(calc(var(--container-out) * -1) + 2px);
    width: calc(50% + var(--container-out));
}

.main-production .production-container .content {
    padding-right: 150px;
}

.main-production .production-container .content img {
    width: 80px;
}

.main-production .production-container .content p {
    font-size: 18px;
    color: #BFBFBF;
    margin: 50px 0;
    font-weight: lighter;
}

.main-production .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    font-size: 120px;
    color: #fff;
    font-weight: lighter;
    line-height: 1;
}

.fixed-bar .main-header {
    top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #45494c;
}

.main-media {
    position: relative;
}

.main-media:After {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    /* background: #F5F5F5; */
    z-index: -1;
}

.main-media .media-container {
    display: flex;
    justify-content: space-between;
    padding: 120px 0;
}

.main-media .media-container .offer {
    width: 40%;
    padding-right: 80px;
}

.main-media .media-container {
    position: relative;
}

.main-media .media-container .articles {
    width: 100%;
}

.main-media .media-container > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.main-media .media-container .arrow {
    width: 100%;
}

.main-media .media-container .arrow img {
    width: 55px;
}

.main-media .media-container .offer .title {
    font-size: 48px;
    font-weight: lighter;
    line-height: 1;
    letter-spacing: -2px;
}

.main-media .media-container .offer .description {
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 45px;
    max-width: 300px;
}

.main-media .media-container .article {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 50%;
}

.main-media .media-container .article .image {
    width: 350px;
}

.main-media .media-container .article .content {
    width: calc(100% - 350px);
    padding-left: 23px;
}

.main-media .media-container .article .content .date {
    color: #BFBFBF;
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.main-media .media-container .article .content .title {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    display: block;
    transition: 300ms;
    margin-bottom: 9px;
    line-height: 32px;
}

.main-media .media-container .article .content .summary {
    color: #707374;
    margin-bottom: 20px;
}

.main-media .media-container .article .content .title:Hover {
    color: var(--orange);
}

.main-media .media-container .articles .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 80px;
}

.main-media .media-container .articles .header .title {
    font-size: 32px;
    color: #707374;
}

.site-link {
    color: var(--orange);
    transition: 300ms;
    display: inline-block;
    padding-right: 20px;
}

.site-link:Hover {
    color: #000;
}

.site-link > i {
    margin-left: 10px;
    transition: 300ms;
    margin-right: -20px;
    font-weight: normal;
}

.site-link:Hover > i {
    margin-right: 0;
}

.main-footer {
    background: var(--dark-gray);
    position: relative;
    padding-top: 85px;
    background-image: url(../assets/images/export/footer-logo.png);
    background-position: left bottom;
    background-repeat: no-repeat;
}

.main-footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-footer .footer-logo .logo {
    width: 450px;
}

.main-footer .footer-logo .logo img {
    max-width: 250px;
}

.main-footer .footer-logo .menu {
    width: calc(100% - 400px);
}

.main-footer .footer-logo .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.main-footer .footer-logo .menu ul li > a {
    color: #BFBFBF;
    text-transform: uppercase;
    transition: 300ms;
    font-size: 18px;
    padding: 10px 30px;
    display: block;
}

.main-footer .footer-logo .menu ul li > a:Hover {
    color: var(--orange);
}

.main-footer .menu-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    padding: 70px 0 65px 0;
}

.main-footer .menu-container .info {
    width: 400px;
}

.main-footer .menu-container .contacts {
    width: 350px;
    padding-right: 50px;
}

.main-footer .menu-container .newsletter {
    width: calc(100% - 850px);
}

.main-footer .menu-container .company-name {
    font-size: 24px;
    font-weight: lighter;
}

.main-footer .menu-container .socials {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
}

.main-footer .menu-container .socials a {
    color: #fff;
    opacity: .5;
    transition: 300ms;
    font-size: 30px;
    display: block;
}

.main-footer .menu-container .socials a:Hover {
    color: var(--orange);
    opacity: 1;
}

.main-footer .menu-title {
    font-size: 24px;
    font-weight: lighter;
    margin-bottom: 30px;
}

.main-footer .address {
    font-weight: lighter;
    color: #BFBFBF;
}

.main-footer .newsletter input:not([type="checkbox"]) {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.main-footer .newsletter .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.main-footer .newsletter .buttons .site-btn {
    white-space: nowrap;
}

.main-footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #707374;
    font-size: 12px;
    padding-bottom: 30px;
}

.main-footer .copyright p {
    margin: 0;
    color: #BFBFBF;
}

.main-footer .copyright .links {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
}

.main-footer .copyright .links a {
    color: #BFBFBF;
    transition: 300ms;
    display: block;
}

.main-footer .copyright .links a:Hover {
    color: #fff;
}

.main-footer .powered a {
    display: flex;
    align-items: center;
    column-gap: 20px;
    white-space: nowrap;
    color: #fff;
    transition: 300ms;
}

.main-footer .powered a img {
    width: 80px;
}

.main-footer .powered a:Hover {
    color: var(--orange);
}

.check-input {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    position: relative;
}

.offer-form .form-body .check-input input[type="checkbox"] {
    width: 0;
    height: 0;
    opacity: 0;
}

.check-input label {
    position: relative;
    padding-left: 35px;
}

.check-input label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #707374;
    border-radius: 3px;
}

.check-input label:after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    display: flex;
    align-items: center;
    justify-content: centeR;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #707374;
    border-radius: 3px;
    color: var(--orange);
    transition: 300ms;
    opacity: 0;
}

.check-input input[type="checkbox"]:checked ~ label:after {
    opacity: 1;
}

.main-footer .site-link {
    color: #EC6500;
    font-weight: lighter;
}

.main-footer .site-link:Hover {
    color: #fff;
}

.page-header {
    position: relative;
}

.page-header .cover {
    width: 100%;
    object-fit: cover;
    max-height: 50vh;
    height: 50vh;
}

.page-header .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.page-header .content > .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.page-header .content .content-container {
    position: relative;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 190px;
}

.page-header .content .content-container h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    max-width: 50%;
}

.page-header .content .content-container .breadcrumb li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    transition: 300ms;
}

.page-header .content .content-container .breadcrumb li a:Hover {
    color: var(--orange);
}

.page-header .content .content-container .breadcrumb li:Not(:last-child) a:after {
    content: '/';
    margin: 0 10px;
    color: #fff;
}

.page-header .scroll {
    position: absolute;
    left: 0;
    width: 100%;
    padding-left: var(--container-out);
    bottom: 0;
    font-size: 14px;
    color: #fff;
    font-weight: lighter;
    transition: 300ms;
    max-width: 1157px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.page-header .dark-scroll .scroll {
    background: #2B2F31;
}

.page-header .scroll img {
    transition: 300ms;
    filter: brightness(0) invert(1);
}

.page-header .dark-scroll .scroll:Hover {
    color: var(--orange);
}

.page-header .dark-scroll .scroll:Hover img {
    filter: brightness(1) invert(0);
}

.about-page #pageContent {
    width: 100%;
    max-width: calc(1157px - var(--container-out));
    position: relative;
}

.text-card {
    padding: 127px 150px 127px 0;
    position: relative;
}

.text-card.card-orange:before {
    content: '';
    position: absolute;
    left: calc(var(--container-out) * -1);
    top: 0;
    width: calc(100% + var(--container-out));
    height: 100%;
    background: linear-gradient(-45deg, #E74E00, #EC6500);
    z-index: -1;
}

.text-card .title {
    font-size: 39px;
    font-weight: lighter;
    margin-bottom: 65px;
    text-align: center;
}

.text-card.card-orange .description p {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: lighter;
}

.text-card.card-orange .description {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: lighter;
}

.production-card {
    margin: 80px 0;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.production-card .image {
    text-align: right;
}

.production-card .image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    max-width: 760px;
}

.production-card .content {
    background: #fff;
    width: 100%;
    max-width: 760px;
    margin-top: -80px;
    padding: 45px 60px;
}

.production-card .content .title {
    font-size: 48px;
    color: #707374;
    font-weight: lighter;
}

.production-card .content .description {
    font-size: 20px;
    color: #707374;
    margin-bottom: 40px;
}

.page .media-container .offer {
    width: 100%;
    row-gap: 100px;
}

.page .main-media:After {
    content: none;
}

.page .main-media .media-container:before {
    left: unset;
    right: 0;
    background-position: 50px center;
    width: 570px;
    background-image: url(../assets/images/export/page-teklif-al.png);
}

#pageContent .shadow-logo-container {
    position: absolute;
    right: -54%;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}

.text-card .mid-title {
    margin: 0;
    font-size: 36px;
}

.text-card.card-dark:before {
    content: '';
    position: absolute;
    left: calc(var(--container-out) * -1);
    top: 0;
    width: calc(100% + var(--container-out));
    height: 100%;
    background: #2B2F31;
    z-index: -1;
}

.text-card.card-dark {
    color: #fff;
}

.page-header .orange-scroll .scroll {
    background: linear-gradient(90deg, #EC6500, #E74E00);
    display: none;
}

.production-image {
    margin-top: -120px;
    position: relative;
}

.production-image img {
    width: 100%;
}

.production-image-card {
    display: flex;
    justify-content: space-between;
    margin: 100px 0;
}

.production-image-card > div {
    width: 50%;
}

.production-image-card .content {
    background: #F8F8F8;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.production-image-card .content:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 100%;
    background: #f8f8f8;
    top: 0;
    z-index: -1;
}

.production-image-card:nth-child(even) .content:after {
    left: -300px;
}

.production-image-card:nth-child(odd) .content:after {
    right: -300px;
}

.production-image-card .image {
    padding: 50px 0;
}

.production-image-card .title {
    color: #BFBFBF;
    font-size: 48px;
    font-weight: lighter;
    margin-bottom: 80px;
}

.production-image-card p:not(.title) {
    color: #707374;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 0;
}

.production-page .text-card {
    padding-bottom: 250px;
}

.production-page {
    overflow: hidden;
}

.production-page .text-card:after {
    content: '';
    position: absolute;
    left: calc(1157px - var(--container-out));
    width: 457px;
    height: 420px;
    top: 0;
    background-image: url(../assets/images/icons/icon-uretim-gray.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.milestones-page #pageContent {
    position: relative;
}

.milestones-page #pageContent .icon {
    position: absolute;
    right: -300px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.milestones {
    position: relative;
    margin-top: 100px;
}

.milestones .milestone {
    display: flex;
    justify-content: space-between;
    margin-bottom: 110px;
}

.milestones .milestone .content {
    width: calc(1157px - var(--container-out));
    min-width: calc(1157px - var(--container-out));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    padding-left: 15%;
    border-right: 1px solid #E74E00;
    padding-right: 50px;
}

.milestones .milestone .year {
    width: 100%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transform: rotate(180deg);
    font-size: 210px;
    font-weight: bolder;
    line-height: 0;
    color: #E0E3E5;
}

.milestones .milestone:nth-child(even) .year {
    color: #F1F1F1;
}

.milestones .milestone .title {
    font-size: 48px;
    color: #707374;
    font-weight: 500;
}

.milestones .milestone .description {
    color: #707374;
    font-weight: lighter;
    font-size: 20px;
}

.milestones .milestone:nth-child(even) .content {
    border-color: #dfdfdf;
}

.milestones .milestone:nth-child(even) .content .title {
    color: #BFC8CB;
}

.quality-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.quality-content .items {
    width: calc(1157px - var(--container-out));
    min-width: calc(1157px - var(--container-out));
    padding: 100px 50px 0 0;
}

.quality-content .image {
    width: 100%;
}

.quality-content .quality-item {
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid #BFBFBF;
}

.quality-content .quality-item .title {
    font-size: 28px;
    color: #707374;
    font-weight: 500;
}

.quality-content .quality-item .description {
    font-size: 20px;
    font-weight: lighter;
    color: #707374;
}

.page .sectors-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
    margin: 100px 0;
}

.page .sectors-container .sector {
    width: calc(33.3% - 30px);
    box-shadow: 0 0 50px rgba(0, 0, 0, .1);
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px;
    transition: 300ms;
}

.page .sectors-container .sector .title {
    margin: 0;
    width: 100%;
    transition: 300ms;
    font-size: 24px;
    color: #707374;
}

.page .sectors-container .sector img {
    transition: 300ms;
    filter: invert(1);
    width: 128px;
    opacity: .4;
}

.page .sectors-container .sector:Hover {
    background: #2B2F31;
}

.page .sectors-container .sector:Hover .title {
    color: #fff;
}

.page .sectors-container .sector:Hover img {
    filter: brightness(0) invert(1);
}

.sector-details-page .right-panel {
    width: 100%;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(210px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(210px); }
}

.sector-details-page .text-card:after {
    content: '';
    position: absolute;
    width: 110px;
    height: 220px;
    background-image: url(../assets/images/amblem.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size:100%;
    left: 0;
    -webkit-animation: mover 3s infinite  alternate;
    animation: mover 3s infinite  alternate;
}

.sector-details-page .right-panel:nth-child(1) {
    padding-left: 50%;
    margin-bottom: 60px;
    margin-top: -490px;
}
.sector-details-page .right-panel:nth-child(1)  img{
   border-radius:30px
}

.sector-details-page .products {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0 90px;
    position: relative;
    z-index: 2;
}

.sector-details-page .products .header-panel {
    width: 40%;
}

.sector-details-page .products .header-panel .sup-title {
    font-size: 20px;
    color: #2B2F31;
    font-weight: lighter;
}

.sector-details-page .products .header-panel .title {
    font-size: 48px;
    color: #2B2F31;
    width: 2rem;
}

.sector-details-page .products .right-panel {
    width: 60%;
    position: relative;
}

.sector-details-page .products:After {
    content: '';
    position: absolute;
    right: 0;
    width: 50%;
    /* background: #F8F8F8; */
    height: 100%;
    top: 0;
    z-index: -1;
}

.sector-details-page .products .right-panel .slider {
    padding-right: 220px;
    position: relative;
}

.sector-details-page .products .right-panel .slider:After {
    content: '';
    position: absolute;
    right: calc(calc(var(--container-out) * -1) + 2px);
    width: 50%;
    background: #F8F8F8;
    height: calc(100% + 300px);
    top: -150px;
    z-index: -1;
}

.sector-details-page .products .right-panel .slider .owl-nav {
    position: absolute;
    right: -220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 190px;
    top: 50%;
    transform: translateY(-50%);
}

.sector-details-page .products .right-panel .slider .owl-nav i {
    display: flex;
    width: 80px;
    height: 80px;
    transition: 300ms;
    background: #BFBFBF;
    color: #fff;
    transition: 300ms;
    font-size: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-weight: normal;
}

.sector-details-page .products .right-panel .slider .owl-nav i:Hover {
    background: #707070;
}

.sector-details-page .products .right-panel .slider .item a {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    display: block;
    background: #fff;
}

.sector-details-page .products .right-panel .slider .owl-stage {
    padding: 30px 0;
}

.sector-details-page .products .right-panel .slider .owl-item:not(.active) {
    opacity: 0;
    transition: 300ms;
}

.sector-details-page .products .right-panel .slider .item a img {
    transition: 300ms;
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 30px;
}

.sector-details-page .products .right-panel .slider .item a:Hover img {
    padding: 5px;
}

.offer-form {
    box-shadow: 0 0 130px rgba(0, 0, 0, .1);
    padding: 70px 120px;
    margin: 50px 0;
    overflow: hidden;
    position: relative;
    padding-right: 400px;
}

.offer-form .image {
    position: absolute;
    right: -20%;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-form .title {
    font-size: 48px;
    font-weight: lighter;
    margin-bottom: 10px;
    color: #2B2F31;
}

.offer-form .description {
    font-size: 20px;
    font-weight: lighter;
    color: #707374;
}

.offer-form .form-body {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.offer-form .form-body input, .offer-form .form-body textarea {
    width: 100%;
    margin: 10px;
    transition: 300ms;
    border: 1px solid #E0E3E5;
    font-size: 20px;
    padding: 20px;
    border-radius: 20px;
}

.offer-form .form-body textarea {
    width: 100%;
}

.offer-form .form-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.page .articles-container {
    display: flex;
    flex-wrap: wrap;
    margin: 100px 0;
    row-gap: 50px;
}

.page .articles-container .article {
    width: calc(33.3% - 30px);
    margin: 15px;
}

.page .articles-container .article .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 50px;
}

.page .articles-container .article .content .date {
    color: #BFBFBF;
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 14px;
}

.page .articles-container .article .content .title {
    font-size: 24px;
    color: #000;
    display: block;
    transition: 300ms;
    margin-bottom: 10px;
    font-weight: 500;
}

.page .articles-container .article .content .summary {
    color: #707374;
    margin-bottom: 20px;
    font-weight: lighter;
}

.page .articles-container .article .content .title:Hover {
    color: var(--orange);
}

.page .article-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page .article-details > .image {
    width: 50%;
}

.page .article-details > .content {
    width: 50%;
    padding-left: 60px;
}

.page .article-details .date {
    color: #BFBFBF;
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.page .article-details .title {
    font-size: 36px;
    color: #000;
    display: block;
    transition: 300ms;
    margin-bottom: 10px;
}

.page .article-details .summary {
    color: #707374;
    margin-bottom: 20px;
}

.page .article-details .title:Hover {
    color: var(--orange);
}

.page .contacts-info {
    margin: 100px 0;
}

.page .contact-widgets {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page .contact-widgets > div {
    width: 33.3%;
    text-align: center;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    position: relative;
    padding: 0 10px;
}

.page .contact-widgets > div:Not(:last-child):After {
    content: '';
    position: absolute;
    right: 0;
    height: 70%;
    top: 15%;
    background: #E0E3E5;
    width: 1px;
}

.page .contact-widgets > div .value {
    font-size: 20px;
    font-weight: lighter;
    min-height: 90px;
}

.page .contacts-company-title {
    font-size: 24px;
    font-weight: lighter;
    text-align: center;
    margin-bottom: 40px;
}

.page .contact-widgets > div:not(.socials) a {
    font-size: 20px;
    color: var(--orange);
    transition: 300ms;
    font-weight: lighter;
}

.page .contact-widgets > div a i {
    font-weight: normal;
}

.page .contact-widgets > .socials {
    row-gap: 0;
    justify-content: center;
}

.page .contact-widgets > .socials .value {
    min-height: unset;
    margin-top: 20px;
}

.page .contact-widgets > .socials nav {
    display: flex;
    align-items: center;
    font-size: 25px;
    column-gap: 20px;
}

.page .contact-widgets > .socials nav a {
    transition: 300ms;
    display: block;
    color: #707374;
}

.page .contact-widgets > .socials nav a:Hover {
    color: var(--orange);
}

.contact-form .image {
    display: none;
}

.offer-form.contact-form {
    padding-right: 120px;
}

.main-header .header-container .menu > ul > li > ul > li > a > img {
    transition: 300ms;
    transform: translateX(-10px);
    opacity: 0;
    display: inline-block;
    margin-left: 10px;
}

.main-header .header-container .menu > ul > li > ul > li:Hover > a img {
    opacity: 1;
    transform: translateX(0);
}

.site-btn > img {
    transition: 300ms;
    margin-left: 20px;
    transform: translateY(-2px);
    width: 20px !important;
}

.site-btn:Hover > img {
    margin-left: 30px;
}

.main-sectors .sectors-container .owl-nav span.prev {
    opacity: .2;
}

.main-about .shadow {
    box-shadow: none !important;
}

.site-link-custom {
    color: var(--orange);
    transition: 300ms;
    display: inline-block;
    padding-right: 20px;
}

.site-link-custom img {
    transition: 300ms;
    margin-left: 10px;
}

.site-link-custom:hover {
    color: var(--orange);
}

.site-link-custom:Hover img {
    transform: translateX(10px);
}

.main-footer .menu-container .newsletter .orange-btn:Hover {
    margin-right: -10px;
}

#return-top {
    position: absolute;
    right: 80px;
    top: 50%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(-180deg) translatey(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    color: var(--orange);
    column-gap: 20px;
    cursor: pointer;
}

#return-top i {
    transition: 300ms;
    width: 48px;
    height: 48px;
    transform: rotate(180deg);
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-weight: lighter;
    font-size: 20px;
    color: #2b2f31;
}

.page .main-media .media-container .arrow img {
    width: 84px;
}

.white-color {
    color: #fff;
}

.media-page .page-header .content .content-container {
    height: 65%;
}

.sector-details-page .text-card b {
    font-size: 48px;
    font-weight: lighter;
    margin-bottom: 20px;
}

.sector-details-page .text-card .title {
    margin-bottom: 10px;
    width: 50%;
    font-weight: 500;
    margin-top: 35px;
}
.sector-details-page .text-card .sup-title {
    margin-bottom: 10px;
    width: 50%;
    font-weight: 500;
    text-align:center;
    font-size:24px
}
.sector-details-page .text-card {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: lighter;
    color: #BFBFBF;
}

.sector-details-page .text-card .description {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: lighter;
    color: #BFBFBF;
}

.sector-details-page .text-card.card-dark {
    padding-bottom: 250px;
}

.sector-details-page .offer-form .image {
    right: -57px;
    opacity: .3;
    z-index: -2;
}

.sector-details-page .offer-form .image img {
    /* height: 100%; */
}

.page-header-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 330px;
    height: 100%;
    transition: 500ms;
    background: url(../assets/images/sectors/menu-bg.png);
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 50px;
    overflow: hidden;
}

.page-header-menu-content > div {
    width: 100%;
}

.page-header-menu-content .menu-content {
    color: #fff;
    transition: 300ms;
    opacity: .5;
}

.page-header-menu-content .menu-content .title {
    margin-top: 10px;
    font-size: 32px;
    /* white-space: nowrap; */
    width: 227px;
}

.page-header-menu-content .menu-button {
    text-align: left;
    transition: 300ms;
    padding-left: 10px;
}

.page-header-menu-content .menu-button a {
    color: #ec6500;
    font-size: 14px;
    font-weight: 700;
    transition: 300ms;
}

.page-header-menu-content .menu-button a img {
    margin-right: 10px;
}

.page-header-menu-content:Hover {
    width: 400px;
}

.page-header-menu-content:Hover .menu-button {
    padding-left: 0;
}

.page-header-menu-content:Hover .menu-content {
    opacity: 1;
}

.main-footer .menu-container .newsletter .orange-btn {
    height: 40px;
    padding: 0 36px;
    display: inline-flex;
    align-items: center;
}

.page-header .content .content-container {
    position: relative;
}

.page-header .content .content-container .sector-img {
    position: absolute;
    left: 0;
    top: -128px;
    width: 128px;
}

.sector-details-page .products .right-panel .slider .owl-nav i:before {
    content: none;
}

.sector-details-page .products .right-panel .slider .owl-nav i {
    position: relative;
}

.sector-details-page .products .right-panel .slider .owl-nav i:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-image: url(../assets/images/icons/icon-sektorler-right.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px auto;
    filter: brightness(0) invert(1);
}

.sector-details-page .products .right-panel .slider .owl-nav .owl-prev i:after {
    transform: rotate(180deg);
}

.offer-form .form-body input:focus, .offer-form .form-body textarea:focus {
    border-color: var(--orange);
}

.offer-form .form-body input::placeholder, .offer-form .form-body textarea::placeholder {
    color: #BFBFBF;
}

.check-input label[for="check2"] {
    font-weight: lighter;
}

.check-input label[for="check2"] a {
    display: block;
}

.production-card .title {
    font-weight: 500 !important;
}

.main-sectors .btn-container {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    width: fit-content;
    padding-left: calc(50% - 155px);
}

.main-sectors .btn-container .site-btn {
    position: relative;
}

@media (max-width: 1650px) {
    .main-header .header-container .languages {
        width: 120px;
    }

    .main-header .languages .active {
        font-size: 14px;
    }

    .main-header .languages .list li > a {
        font-size: 14px;
    }

    .main-header .languages .list li {
        min-width: 100px;
    }

    .main-header .header-container .menu > .socials {
        display: none;
    }

    .main-sectors .sectors-container .owl-nav {
        width: 100px;
        height: 100px;
        right: -50px;
        /* top: 0; */
    }

    .main-sectors .sectors-container .owl-nav span {
        width: 40px;
    }

    .main-about .slider {
        width: calc(100% - 100px);
        margin-left: 50px;
    }

    #return-top {
        right: 15px;
    }
}

@media (max-width: 1600px) {
    .milestones {
        margin-top: 30px;
    }

    .milestones .milestone {
        flex-direction: column-reverse;
    }

    .milestones .milestone .content {
        width: 100%;
        min-width: 100%;
        padding: 0 30px 30px 30px !important;
        border-right: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .milestones .milestone .year {
        writing-mode: unset;
        text-orientation: unset;
        transform: rotate(0);
        line-height: 1;
        text-align: center;
        width: 100%;
        justify-content: center;
        font-size: 40px;
        margin: 0;
    }

    .milestones .milestone .title {
        font-size: 20px;
    }

    .milestones-page #pageContent .icon {
        display: none;
    }
}

@media (max-width: 1470px) {
    #pageContent .shadow-logo-container {
        display: none;
    }

    #return-top {
        top: 30px;
        transform: rotate(-180deg) translatey(0);
    }
}

@media (max-width: 1400px) {
    .main-header .video-play-btn {
        display: none;
    }

    .main-production .title {
        font-size: 65px;
    }

    .main-sectors .sectors-container .header .title {
        font-size: 60px;
    }

    .quality-content .items {
        width: 60%;
        min-width: 60%;
    }

    .page .sectors-container .sector {
        height: 300px;
    }
}

@media (max-width: 1200px) {
    .main-footer .menu-container > div {
        width: unset !important;
        padding: 0 30px;
    }

    .main-footer .footer-logo .logo {
        width: 265px;
    }

    .main-footer .footer-logo .menu {
        width: calc(100% - 200px);
        padding-left: 30px;
    }

    .main-footer .footer-logo .menu ul li > a {
        padding: 10px 9px;
    }
}

@media (max-width: 992px) {
    .section-categories {
        display: none;
    }

    .main-banner video {
        height: unset;
        aspect-ratio: 1;
    }

    .main-banner .content .text {
        width: 100%;
    }

    .main-banner .content .text h1 {
        font-size: 25px;
    }

    .main-banner .content .text p {
        font-size: 14px;
    }

    .main-banner .scroll-container {
        bottom: 10px;
    }

    .main-header {
        padding: 19px 30px;
        top: 0;
    }

    .main-header .header-container > .languages, .main-header .video-play-btn {
        display: none;
    }

    .main-header .header-container .menu {
        position: fixed;
        left: 0;
        top: 40px;
        width: 100%;
        height: calc(100% - 80px);
        background: var(--dark-gray);
        transition: 300ms;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
    }

    .fixed-bar .main-header .header-container .menu {
        top: 80px;
    }

    .open-menu .main-header {
        background: var(--bg-gray);
    }

    .open-menu .toggle-menu i:before {
        content: '\f00d';
    }

    .open-menu .main-header .header-container .menu {
        max-height: 100%;
        opacity: 1;
    }

    .main-header .header-container .menu ul {
        flex-direction: column;
    }

    .main-header .header-container .logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .main-header .header-container .logo a {
        width: calc(100% - 50px);
    }

    .main-header .header-container .logo a img {
        width: 120px;
    }

    span.toggle-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        background: var(--orange);
        height: 40px;
        border-radius: 100%;
        color: #fff;
        z-index: 9;
    }

    .main-about .about-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 0;
    }

    .main-about .about-container > div {
        width: 100%;
        text-align: center;
    }

    .main-about .about-container .content .title {
        font-size: 25px;
    }

    .main-about .about-container .content .description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .main-about .about-container .image img {
        margin-left: -50px;
    }

    .main-about .slider {
        display: none;
    }

    .main-sectors {
        padding: 50px 0;
        overflow: hidden;
    }

    .main-sectors .sectors-container {
        flex-direction: column;
        padding: 0;
        background-size: cover;
        border-radius: 0 60px 60px 60px;
    }

    .main-sectors .sectors-container > div {
        width: 100%;
        text-align: center;
        padding-bottom: 50px;
    }

    .main-sectors .sectors-container .header .title {
        font-size: 25px;
    }

    .site-btn {
        font-size: 13px;
    }

    .main-sectors .sectors-container .header .sup-title {
        font-size: 14px;
    }

    .main-sectors .sectors-container .owl-nav {
        width: 70px;
        height: 70px;
        left: calc(50% - 35px);
        bottom: -125px;
        top: unset;
    }

    .main-sectors .sectors-container .owl-nav span {
        width: 30px;
    }

    .main-production {
        padding: 50px 0;
    }

    .main-production .production-container > div {
        width: 100%;
    }

    .main-production .production-container .content {
        padding-right: 0;
    }

    .main-production .production-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-bottom: 30px;
    }

    .main-production .title {
        position: unset;
        transform: translateX(0);
        margin-bottom: 30px;
        font-size: 35px;
    }

    .main-media .media-container {
        padding: 50px 0;
        flex-direction: column;
        row-gap: 50px;
    }

    .main-media:After {
        opacity: 0;
    }

    .main-media .media-container .offer {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .main-media .media-container .arrow {
        margin-bottom: 50px;
    }

    .main-media .media-container .offer .title {
        font-size: 25px;
    }

    .main-media .media-container .articles {
        width: 100%;
        background: #F8F8F8;
        padding: 10px;
        text-align: center;
    }

    .main-media .media-container .articles .header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .main-media .media-container .article {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main-media .media-container .article .image {
        width: 100%;
        margin-bottom: 30px;
    }

    .main-media .media-container .article .content {
        width: 100%;
        padding-left: 0;
    }

    .main-media .media-container:before {
        content: none;
    }

    .main-media .media-container .offer .description {
        max-width: 100%;
    }

    .main-footer .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 30px;
    }

    .main-footer .footer-logo .menu {
        padding-left: 0;
    }

    .main-footer .footer-logo .menu ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-left: -20px;
    }

    .main-footer .menu-container {
        flex-direction: column;
        padding: 30px 0;
    }

    .main-footer .menu-container > div {
        width: 100%;
        padding: 20px 0;
    }

    .main-footer .copyright {
        flex-direction: column;
        row-gap: 30px;
    }

    .main-footer .newsletter .buttons {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }

    .main-footer .newsletter .buttons .site-btn {
        width: 100%;
        text-align: center;
    }

    .main-sectors .sectors-container .header .sup-title {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .main-media .media-container .offer .content {
        width: 100%;
    }

    .main-header .header-container .menu > ul > li > ul {
        position: unset;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .main-header .header-container .menu > ul > li {
        text-align: center;
        width: 100%;
    }

    .main-header .header-container .menu > ul > li > ul > li > a:After {
        display: none;
    }

    .page-header .cover {
        min-height: initial;
        height: 30vh;
    }

    .page-header .content .content-container h1 {
        font-size: 20px;
    }

    .page-header .scroll {
        padding-left: 0;
        max-width: 100%;
        height: unset;
    }

    .about-page #pageContent {
        max-width: 100%;
    }

    #pageContent .shadow-logo-container {
        position: unset;
        display: none;
    }

    .text-card {
        padding: 30px;
        text-align: center;
    }

    .sector-details-page .text-card.card-dark {
        padding-bottom: 30px;
    }

    .sector-details-page .text-card:after {
        display: none;
    }

    .text-card .title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .text-card.card-orange:before {
        left: 0;
        width: 100%;
    }

    .text-card.card-orange .description {
        font-size: 14px;
    }

    .production-card .content {
        width: 100%;
        margin-top: 20px;
        padding: 0;
    }

    .production-card .content .title {
        font-size: 25px;
    }

    .production-card .content .description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .production-card {
        margin: 30px 0;
        text-align: center;
    }

    .production-page .text-card:after {
        content: none;
    }

    .text-card.card-dark:before {
        left: 0;
        width: 100%;
    }

    .production-page .text-card {
        padding-bottom: 30px;
    }

    .production-image {
        margin-top: 30px;
    }

    .production-image-card {
        flex-direction: column;
        margin: 30px 0;
    }

    .production-image-card .content {
        width: 100%;
        padding: 20px;
    }

    .production-image-card:nth-child(odd) .content:after {
        content: none;
    }

    .production-image-card .title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .production-image-card .image {
        padding: 0;
    }

    .production-image-card > div {
        width: 100%;
    }

    .production-image-card .image img {
        width: 100%;
    }

    .quality-content .image {
        display: none;
    }

    .quality-content .items {
        width: 100%;
        padding-right: 0;
        padding-top: 30px;
    }

    .page .sectors-container .sector {
        width: 100%;
        margin-bottom: 20px;
        height: 200px;
    }

    .sector-details-page .right-panel:nth-child(1) {
        margin-top: 20px;
        width: 100%;
        /* padding-left: 0; */
    }

    .sector-details-page .products {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 30px;
    }

    .sector-details-page .products .header-panel {
        width: 100%;
        text-align: center;
    }

    .sector-details-page .products .header-panel .title {
        font-size: 25px;
    }

    .sector-details-page .products .header-panel .sup-title {
        font-size: 14px;
    }

    .sector-details-page .products .right-panel {
        width: 100%;
    }

    .sector-details-page .products .right-panel .slider .owl-nav {
        left: 0;
        bottom: -130px;
        top: unset;
        width: 100%;
        align-items: center;
        justify-content: center;
        column-gap: 30px;
    }

    .sector-details-page .products .right-panel .slider {
        padding-right: 0;
    }

    .sector-details-page .products .right-panel .slider .item a img {
        object-fit: contain;
    }

    .sector-details-page .products .right-panel .slider:After {
        right: 0;
        width: 100%;
    }

    .sector-details-page .products:After {
        background: transparent;
    }

    .sector-details-page .products .right-panel .slider .owl-nav i {
        width: 60px;
        height: 60px;
    }

    .offer-form .image {
        display: none;
    }

    .offer-form {
        padding: 30px;
    }

    .offer-form .form-body input, .offer-form .form-body textarea {
        width: 100%;
    }

    .page .articles-container .article {
        width: 100%;
    }

    .page .article-details {
        flex-direction: column;
    }

    .page .article-details > .image {
        width: 100%;
    }

    .page .article-details > .content {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }

    .page .article-details > .image img {
        width: 100%;
    }

    .offer-form.contact-form {
        padding-right: 30px;
    }

    .offer-form .title {
        font-size: 25px;
    }

    .page .contact-widgets {
        flex-direction: column;
        row-gap: 30px;
    }

    .page .contact-widgets > div {
        width: 100%;
    }

    .page .contact-widgets > div:Not(:last-child):After {
        content: none;
    }

    .page .contacts-info {
        margin: 30px 0;
    }

    #return-top {
        display: none;
    }

    .page-header-menu-content {
        display: none;
    }

    .submit-btn {
        white-space: nowrap;
    }
}

.check-input input[type="checkbox"] {
    width: 0;
    height: 0;
    opacity: 0;
}

.main-about .opsiyon {
    text-align: left;
    color: #fff;
}

.main-about .opsiyon span {
    font-size: 84px;
    font-weight: lighter;
    line-height: 95px;
}

.main-about .opsiyon p {
    font-size: 24px;
    position: relative;
    margin-bottom: 50px;
    padding-bottom:20px;
}
.main-about .opsiyon p:after {
   content:"";
    position: absolute;
    width:50%;
    height:2px;
    background:#fff;
    left:0;
    bottom:0px;
}
.sablon-detay {margin:120px 0;}
.sablon-detay p{color: #707070;
    font-size: 24px;
    font-weight: lighter;}
.galeri-page {margin:120px 0 120px;}
.galeri-page .title{margin:60px 0 60px;font-size:48px;color:#EC6500;}

.page .sectors-container .sector {
    width: initial; 
    box-shadow: none; 
    height: initial; 
    display: initial; 
    align-items: initial; 
    justify-content: initial; 
    flex-direction: initial; 
    padding: initial; 
    transition: 300ms; 
}
.main-sectors .sectors-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  flex-wrap: initial;
    row-gap: initial;
    column-gap: initial;
    margin: 0px 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 120px;
}
.cermikler-main-sectors.main-sectors .sectors-container .header .sup-title{
   color: #303030;
    
}
.cermikler-main-sectors.main-sectors .sectors-container .header .title {
   color: #303030;
    
}
.cermikler-main-sectors .sectors-container .sector:Hover .title,.cermikler-main-sectors .sectors-container .sector .title {
    color: #303030;
}
.cermikler-main-sectors .sectors-container .sector .description {
    color: #303030;
}
.main-sectors.cermikler-main-sectors  .sectors-container .sector img,.cermikler-main-sectors .sectors-container .sector:hover img  {
    filter: initial;
}
.main-sectors.cermikler-main-sectors  {
    background: #fff;
  
}
.main-sectors.cermikler-main-sectors  .sectors-container .sector img {
  
    opacity: 1;
}
.main-sectors.cermikler-main-sectors .sectors-container .owl-nav {
   
    background: var(--orange);
   
}
.cermikler-main-sectors  .site-btn.white-btn {
     background: var(--orange);
    color: #fff;
}
.cermikler-main-sectors .site-btn.white-btn img {
    -webkit-filter: invert(1) !important;
    filter: invert(1)!important;
}
.main-sectors.cermikler-main-sectors  .sectors-container {
   
    padding: 10px 120px 120px 0;
}
.main-product-group{margin: 136px 0 50px;}
.main-product-group .item{margin-bottom:30px;display: flex;align-items: center;width: 100%;}
.main-product-group .item img{border-radius:30px;transition: all .5s;position:relative;top:0px;}
.main-product-group .item:hover img{top:-10px;}
.main-product-group .item h4 {
position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    transition:all .5s;

}
.main-product-group .item:hover h4 {

    bottom: 25px;
   

}
.main-product-group .item h4 span {

text-align: center;

background: var(--orange);

color: #fff;

padding: 9px 24px;

border-radius: 15px;

font-size: 18px;
}


.main-product-group .items-two{

height: calc(100% - 30px);

background-color: #eeeeeec7;

border-radius: 30px;

padding: 0 30px;

display: flex;

align-items: center;

justify-content: space-between;

/* background-image: url(./images/katalog-bg.png); */

background-size: cover;

border: 1px solid #c5c4c4;

background-repeat: no-repeat;

background-position-x: -191px;
}

ba {}
.main-product-group .items-two img{

width: 58%;

display: flex;

align-items: center;

justify-content: center;
}

.main-product-group .items-two .text{padding: 20px;}
.main-product-group .items-two h5{
    color: var(--orange);
    font-size: 24px;
}
.main-product-group .items-two p{
    color: #707070;
    font-size: 18px;
}
.main-product-group .header{position:relative;}
.main-product-group .title{font-size: 120px;
    color: #606060;
    padding: 15px 0;
	text-align:center;
    margin: 00px 0 30px;font-weight:500;}
.main-product-group .sup-title{
    font-size: 17vw;
    color: #606060;
    opacity:.1;
    padding: 15px 0;
    text-align:center;
    margin: 00px 0 30px;
    font-weight: 600;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 185px;
    z-index: -1;
    }
.arac {padding-bottom: 38px;position:relative;padding-top: 70px;}
.arac:after {position:absolute;background: var(--orange);width:100%;height:30%;bottom:0;left:0;content:"";z-index:-1}
.arac .content{position:relative;}
.arac .item{position:absolute;bottom: -20px;left:30px;height: 100%;display: flex;align-items: center;justify-content: start;color: #fff;width: 33%;}
.arac .item h3{color:var(--orange);font-size:52px;line-height:48px;}
.galeri-panel  {width: 100%;background: #fff;padding: 50px;border-radius: 30px;}
.galeri-panel  {width: 100%;background: #fff;padding: 50px;border-radius: 30px;}
.galeri-panel .items {position:relative;}
.galeri-panel .items .items-title {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 28px;
    }
.galeri-panel .items .items-title h5{color:#707070;font-size:20px;text-transform: uppercase;font-weight: 600;}
.galeri-panel .items .items-title h6{color:#707070;font-size:18px;font-weight: 500;}
.galeri-panel .items img {
    height: 400px;
    object-fit: cover;
    object-position: right;
    border: 1px solid #c7c4c4;
    padding: 66px 0px 30px 28px;
    border-radius: 30px;
    cursor:pointer;
    background:#fff
    }
.galeri-panel .items:hover img{
border: 1px solid var(--orange);}

.new-product {margin:90px 0;}
.new-product h2 {text-align:center;color:#606060;font-size:46px;font-weight:600;}
.attrach  {
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 1;
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    }
.fabrikamlink {padding-left: 200px;
    position: relative;
    top: 190px;
    width: 60%;
    margin-top: -100px;}
.fabrikamlink a{font-size: 27px;
    color: var(--orange);
    font-weight: 600;}
.arac .header {}
.arac .header .title{font-size: 32px;
    color: #fff;}
.arac .header .site-link-custom{color:#fff;}

 .grupslider .slick-slide {
      margin: 0 15px;
  }

 
 .grupslider .slick-list {
      margin: 0 -15px;
  } 
 .yeniurunslider .slick-slide {
      margin: 0 15px;
  }

 
 .yeniurunslider .slick-list {
      margin: 0 -15px;
  }
  
  
 .grupslider .slick-prev:before, .grupslider .slick-next:before {
    font-family: 'Font Awesome 5 Pro';
    font-size: 30px;
    opacity: 1;
}
.grupslider .slick-prev,.grupslider .slick-prev:hover,.grupslider .slick-next,.grupslider .slick-next:hover{background:  var(--orange);border-radius: 50px;display:flex;padding: 30px;align-items: center;justify-content: center;z-index: 9;}
.grupslider .slick-prev {
    left: -105px;
    transition:all .5s;
}
.grupslider .slick-prev:hover {
    left: -115px;
 }
.grupslider .slick-next {
    right: -105px;
    transition:all .5s;
}
.grupslider .slick-next:hover {
    right: -115px;
}


 .yeniurunslider .slick-prev:before, .yeniurunslider .slick-next:before {
    font-family: 'Font Awesome 5 Pro';
    font-size: 30px;
    opacity: 1;
}
.yeniurunslider .slick-prev,.yeniurunslider .slick-prev:hover,.yeniurunslider .slick-next,.yeniurunslider .slick-next:hover{background: var(--orange);border-radius: 50px;display:flex;padding: 30px;align-items: center;justify-content: center;z-index: 9;}
.yeniurunslider .slick-prev {
    left: -105px;
    transition:all .5s;
}
.yeniurunslider .slick-prev:hover {
    left: -115px;
 }
.yeniurunslider .slick-next {
    right: -105px;
    transition:all .5s;
}
.yeniurunslider .slick-next:hover {
    right: -115px;
}

.add-cart-button {
    width: 52px;
    text-align: right;
    position: absolute;
    bottom: 11px;
    left: 14px;
}
.add-cart {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    z-index: 1;
    cursor: pointer;
}
.add-cart:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(./images/icon-sepete-ekle.svg);
    background-position: center center;
    background-size: contain;
    border-radius: 100%;
    background-repeat: no-repeat;
    transition: 300ms;
}

.items:hover .add-cart:before {
    
    background-image: url(./images/icon-sepete-hover-ekle.svg);
  
}
.modal-content {
   
    width: 88%;
   
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0rem;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 22px;
    font-weight: 500;
    color: var(--orange);
}
.modal-header {
   
    padding: 0rem 1rem;
}
.modal-header .close {    border: none;
    background: none;
    font-size: 36px;
    color: var(--orange);
    padding: 0;}
	.fabrikamdan {
    background: url(./images/icon-sepete-hover-ekle.svg);
    position: fixed;
    background-size: 60%;
    left: 50px;
    top: 73px;
    width: 109px;
    z-index: 9;
    padding: 10px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: 8px 13px;
}
@media(max-width:1400px){
	.arac .item h3 {
   
    font-size: 27px;
    line-height: 30px;
}
.main-media .media-container .article {
    display: block;
   
}
.main-media .media-container .article .image {
    width: 100%;
}
.main-media .media-container .article .content {
    width: 100%;
    padding-left: 0;
    padding-top: 33px;
}
.main-footer .newsletter .buttons {
    display: block;
   
}
.main-banner .content .text h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 600;
}
}

@media(max-width:1025px){
	.main-sectors .sectors-container {
   
    padding: 50px;
}

.main-header .header-container .menu > ul > li > a {
	
    padding: 15px 13px;
  
}
.offer-form {
   
    padding-right: 120px;
}
}
@media(max-width:992px){
.main-header .header-container .menu > ul > li > ul > li > a > img {
  
    display: none;
}	
.grupslider .slick-next {
		right: -50px;
   
}
	.grupslider .slick-prev {
    left: -50px;
  
}
.grupslider .slick-next:hover {
    right: -50px;
}
.grupslider .slick-prev:hover {
    left: -50px;
  
  }
  .main-banner {
  
    height: auto;
}
.main-footer .newsletter .buttons .site-btn {
    width: 100%;
    text-align: center;
    display: flex;
    margin-top: 20px;
}
.main-sectors.cermikler-main-sectors .sectors-container {
    padding: 10px 0 120px 0;
}
.fabrikamlink {
    padding-left: 0;
    position: relative;
    top: 190px;
    width: 21%;
    margin-top: -100px;
}

.text-card .title {
  
    text-align: left;
}
.text-card .sup-title {
  
    text-align: left;
}
.products .galeri-panel  {padding: 5px;}
}
@media(max-width:768px){
.arac .content img {
    height: 375px;
    object-fit: cover;
}	
}
@media(max-width:450px){
	.main-product-group {
    margin: 67px 0 50px;
}
	.main-product-group .sup-title {
   
    display: none;
}
.main-product-group .title {
    font-size: 49px;
  
}
.main-banner {
    height: 100vh;
}
.main-banner video {
    height: 100vh;
}
	.fabrikamdan {
  
    left: 2px;
    top: 54px;
    width: 89px;
    
}
.main-header .header-container .logo a img {
    width: 185px;
}
.main-header {
    padding: 15px 19px;
    top: 0;
}
.modal-content {
    width: 100%;
}
.attrach {
   
    height: 250px;
    background-size: contain;
}
.main-media .media-container .article {
  
    width: 100%;
    margin-bottom: 50px;
}
.main-footer .footer-logo .menu ul li > a {
    padding: 10px 25px;
}
.arac .content img {
    height: 207px;
    object-fit: cover;
}
.arac .item {
    position: initial;
   
    color: #000c1a;
    width: 100%;
}
.sector-details-page .text-card .title {
   
    width: 70%;
    
}
.sector-details-page .text-card .sup-title {
   
    text-align: left;
}
.text-card.card-orange .description p {
   
    text-align: left;
}
.page-header .content .content-container .breadcrumb li a {
   
    text-transform: lowercase;
    font-size: 9px;
}
.page-header .content .content-container {
  
    padding-bottom: 0;
	}
.main-header .header-container .menu {
     top: 0;
    height: calc(100% - 0px);
   
}
.fixed-bar .main-header .header-container .menu {
    top: 0;
    overflow: auto;
}
.galeri-panel .items img {
    height: 371px;
   
    padding: 102px 0px 30px 28px;
  
}
}