:root {
    --container-width: 1400px;
    --container-out: calc(calc(100vw - var(--container-width)) / 2);
    --section-margin: 120px;
    --blue: #223B94;
    --red: #FA3800;
}

* {
    font-family: 'Urbanist', sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

.font-staatliches {
    font-family: 'Staatliches', cursive;
}


@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;
    }
}

@media (min-width: 1600px) {
    :root {
        --container-width: 1600px;
    }

    .container {
        max-width: 1600px;
    }
}

body {
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wow {
    visibility: hidden;
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transition: 300ms;
    z-index: 11;
    padding: 10px 0;
}

.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .header-container .logo {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.main-header .header-container .logo .text {
    margin: 0;
    color: var(--blue);
}

.main-header .header-container .logo img {
    width: 170px;
}

.main-header .header-container .logo a {
    display: block;
}

.main-header .actions > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.main-header .actions .action {
    font-size: 32px;
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Staatliches', cursive;
    color: var(--blue);
    transition: 300ms;
    padding: 20px 50px;
    white-space: nowrap;
    z-index: 2;
    cursor: pointer;
}

.main-header .actions .action i {
    font-weight: normal;
}

.main-header .actions > ul > li {
    position: relative;
}

.main-header .actions .languages i {
    margin-right: 10px;
}

.main-header .actions .search i {
    margin-left: 10px;
}

.main-header .actions > ul > li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    height: 23px;
    width: 1px;
    background: var(--blue);
    top: 50%;
    transform: translateY(-50%);
}

.main-header .actions .list {
    position: absolute;
    background: var(--blue);
    opacity: 0;
    list-style: none;
    margin: 0;
    visibility: hidden;
    min-width: 100%;
    left: 0;
    top: 100%;
    z-index: -1;
    transition: 300ms;
    text-transform: uppercase;
    padding: 30px 15px 30px 15px;
}

.main-header .actions p {
    margin: 0;
}

.main-header .actions .active .list {
    opacity: 1;
    visibility: visible;
}

.main-header .actions .list a {
    display: block;
    color: #fff;
    font-family: 'Staatliches', cursive;
    font-size: 24px;
    padding: 10px 0;
    transition: 300ms;
}

.main-header .actions .languages a {
    text-align: center;
}

.main-header .actions .list a:Hover {
    color: rgba(255, 255, 255, .5);
}

.main-header .actions .active:Hover .action {
    color: #fff;
    background: var(--blue);
}

.main-header .toggle-menu {
    display: flex;
    justify-content: flex-start;
}

.main-header .toggle-menu .bars {
    width: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 10px;
    margin-left: -20px;
    padding-bottom: 5px;
}

.main-header .toggle-menu .bars span {
    display: block;
    height: 3px;
    background: var(--blue);
    transition: 300ms;
}

.main-header .toggle-menu .bars span:first-child {
    width: 36px;
}

.main-header .toggle-menu .bars span:last-child {
    width: 24px;
}

.main-header .toggle-menu:Hover .bars span:first-child {
    width: 24px;
}

.main-header .toggle-menu:Hover .bars span:last-child {
    width: 36px;
}

.open-menu .main-header .toggle-menu .bars span:first-child {
    width: 24px;
    transform: rotate(45deg) translateX(9px);
}

.open-menu .main-header .toggle-menu .bars span:last-child {
    width: 24px;
    transform: rotate(-45deg) translateX(9px);
}

.main-header .actions .search:Hover .action {
    opacity: .8;
}

.main-video video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.menu-wrapper {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    border-left: 1px solid #ddd;
    z-index: 9;
    padding-right: var(--container-out);
    width: calc(var(--container-out) + 355px);
    padding-top: 200px;
    background: #fff;
    transition: 300ms;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
}

.open-menu .toggle-menu {
    position: relative;
    z-index: 99;
}

.menu-wrapper > ul {
    width: 100%;
    list-style: none;
    padding: 0 0 0 50px;
    transition: 300ms;
}

.menu-wrapper > ul > li {
    position: relative;
    transition: 300ms;
    transform: translateY(-30px);
    opacity: 0;
}

.menu-wrapper > ul > li:nth-child(1) {
    transition-delay: 300ms;
}

.menu-wrapper > ul > li:nth-child(2) {
    transition-delay: 400ms;
}

.menu-wrapper > ul > li:nth-child(3) {
    transition-delay: 500ms;
}

.menu-wrapper > ul > li:nth-child(4) {
    transition-delay: 600ms;
}

.menu-wrapper > ul > li:nth-child(5) {
    transition-delay: 700ms;
}

.menu-wrapper > ul > li:nth-child(6) {
    transition-delay: 800ms;
}

.menu-wrapper > ul > li > a {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--blue);
}

.menu-wrapper > ul > li > ul {
    list-style: none;
    margin: 0;
    padding: 20px 0 30px 20px;
}

.menu-wrapper > ul > li > ul > li > a {
    color: #000;
    font-size: 18px;
    transition: 300ms;
    display: Block;
}

.menu-wrapper > ul > li > ul > li:Hover > a {
    color: var(--blue);
}

.open-menu .menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.open-menu .menu-wrapper > ul > li {
    opacity: 1;
    transform: translateY(0);
}

.open-menu .toggle-menu.disable {
    pointer-events: none;
}

.main-about {
    padding: 90px 0 140px;
}

.main-about .section-title {
    text-align: center;
    font-family: 'Staatliches', cursive;
    font-size: 72px;
}

.main-about .about-text {
    text-align: center;
}

.main-about .about-text p {
    margin: 50px auto;
    font-size: 24px;
    max-width: 1400px;
}

.main-about .widgets {
    margin-top: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 20px;
}

.main-about .widgets .widget {
    flex: 1;
    text-align: center;
}

.main-about .widgets .widget .title {
    display: block;
    font-family: 'Staatliches', cursive;
    font-size: 72px;
    line-height: 1;
    margin: 26px 0 10px 0;
}

.main-about .widgets .widget .description {
    font-size: 24px;
    color: #A5A5A5;
    max-width: 60%;
    margin: 0 auto;
}

.site-link {
    display: inline-block;
    font-weight: 600;
    color: var(--blue);
    transition: 300ms;
}

.site-link:After {
    content: '\f138';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-left: 15px;
    transition: 300ms;
    display: inline-block;
}

.site-link:Hover:After {
    transform: translateX(20px);
}

.fixed-bar .main-header {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    padding: 10px 0;
}

.main-products {
    background: #F8F8F8;
    padding: 100px 0;
}

.main-products .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.main-products .section-header .section-title {
    font-size: 100px;
    font-family: 'Staatliches', cursive;
    color: var(--red);
    line-height: 1;
}

.main-products .section-header .description {
    margin: 0;
    text-align: right;
    max-width: 50%;
    font-size: 24px;
}

.product-category {
    display: block;
    position: relative;
    background: #fff;
    transition: 300ms;
    text-align: center;
    box-shadow: 0 0 30px #f8f8f8;
    padding: 20px 0;
    overflow: hidden;
}

.product-category img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: 300ms;
}

.product-category .title {
    margin: 50px 0 0 0;
    font-size: 24px;
    color: #A5A5A5;
    font-weight: 600;
    transition: 300ms;
}

.main-products .product-category {
    margin: 30px 0;
}

.product-category:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    transition: 300ms;
    height: 4px;
    z-index: 1;
    background: var(--red);
}

.product-category:Hover:After {
    width: 100%;
}

.product-category:Hover img {
    transform: scale(1.1);
}

.product-category:Hover .title {
    color: var(--blue);
}

.main-products .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 40px;
}

.main-products .owl-dots .owl-dot {
    width: 24px;
    height: 24px;
    transition: 300ms;
    border: 1px solid #A5A5A5;
    border-radius: 100%;
}

.main-products .owl-dots .owl-dot.active {
    background: var(--red);
    border-color: transparent;
}

.main-media {
    position: relative;
}

.main-media .contact {
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    color: #fff;
    margin-bottom: -260px;
    position: relative;
    z-index: 1;
}

.main-media .contact:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../assets/images/icons/icon-teknik-servis-bg.svg);
    background-repeat: no-repeat;
    background-position: right;
}

.main-media .contact > div {
    width: 50%;
}

.main-media .contact .icon {
    text-align: center;
}

.main-media .contact .content .title {
    font-size: 64px;
    font-weight: 600;
    display: block;
}

.main-media .contact .content p {
    font-size: 24px;
    max-width: 60%;
    margin: 20px 0 100px;
}

.site-btn {
    display: inline-block;
    padding: 20px 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 300ms;
}

.site-btn.dark-btn {
    background: #000;
    color: #fff;
}

.site-btn.light-btn {
    background: #fff;
    color: #000;
}

.site-btn:After {
    content: '\f138';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-left: 25px;
    transition: 300ms;
    display: inline-block;
}

.site-btn:Hover:after {
    margin-left: 50px;
}
.wwbutton:Hover .site-btn:after {
    margin-left: 50px;
}
   
.main-media .documents {
    background: #171819;
    background-image: url(../assets/images/img-bg-teknik-dokumanlar.jpg);
    color: #fff;
    padding: 450px 0 100px;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.main-media .documents .documents-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-media .documents .documents-container .title {
    font-size: 48px;
    display: block;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 100px;
}

.main-media .documents .documents-container p {
    color: #A5A5A5;
    margin: 0;
    font-size: 20px;
}

.item {
}

.main-articles {
    padding: 100px 0 60px;
    background: #F8F8F8;
}

.main-articles .section-header {
    text-align: center;
    margin-bottom: 90px;
}

.main-articles .section-header .section-title {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.main-articles .section-header p {
    font-size: 20px;
    color: #A5A5A5;
    margin: 0;
}

.article {
    position: relative;
}

.article .image {
    overflow: hidden;
}

.article .image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 300ms;
}

.main-articles .article {
    max-width: 520px;
    margin: auto;
}

.site-btn.red-btn {
    background: var(--red);
    color: #fff;
}

.main-articles .button {
    margin-top: -30px;
    text-align: right;
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

.main-articles .article:hover .site-btn {
    transform: translateX(50px);
}


.article:Hover .image img {
    transform: scale(1.1);
}

.article .title {
    display: block;
    font-size: 28px;
    color: #000;
    transition: 300ms;
    font-weight: 500;
}

.article .date {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #A5A5A5
}

.article .title:Hover {
    color: var(--red);
}

.main-articles .section-button {
    text-align: center;
    margin-top: 50px;
}

.main-articles .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 40px;
}

.main-articles .owl-dots .owl-dot {
    width: 24px;
    height: 24px;
    transition: 300ms;
    border: 1px solid #A5A5A5;
    border-radius: 100%;
}

.main-articles .owl-dots .owl-dot.active {
    background: var(--red);
    border-color: transparent;
}

.main-product-features {
    margin: 80px 0;
    position: relative;
}

.main-product-features .feature {
    display: Flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 100px;
}

.main-product-features .feature > div {
    width: 50%;
}

.main-product-features .feature .image img {
    width: 100%;
    object-fit: contain;
}

.main-product-features .feature .text {
    margin-bottom: 85px;
}

.main-product-features .feature .description {
    color: #A5A5A5;
    font-size: 24px;
    margin-bottom: 25px;
    max-width: 70%;
}

.main-product-features .feature .title {
    font-size: 64px;
}

.site-btn.blue-btn {
    background: var(--blue);
    color: #fff;
}

.main-product-features .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 40px;
}

.main-product-features .owl-dots .owl-dot {
    width: 24px;
    height: 24px;
    transition: 300ms;
    border: 1px solid #A5A5A5;
    border-radius: 100%;
}

.main-product-features .owl-dots .owl-dot.active {
    background: var(--red);
    border-color: transparent;
}

.main-product-features .owl-nav {
    position: absolute;
    left: -125px;
    top: 0;
    width: calc(100% + 250px);
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-product-features .owl-nav i {
    font-weight: lighter;
    font-size: 65px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    color: #DBDBDB;
}

.main-product-features .owl-nav i:Hover {
    color: var(--blue);
}

.main-footer {
    background: #171819;
    color: #fff;
}

.main-footer .newsletter {
    background: var(--blue);
}

.main-footer .newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.main-footer .newsletter-container .text {
    width: 40%;
}

.main-footer .newsletter-container .form {
    width: 60%;
}

.main-footer .newsletter-container .title {
    font-size: 36px;
    margin-bottom: 25px;
    display: block;
}

.main-footer .newsletter-container .text p {
    color: #C7C7C7;
    max-width: 60%;
    margin: 0;
}

.main-footer .newsletter-container .form-body {
    display: flex;
    column-gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.main-footer .newsletter-container .form-body input {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
}

.main-footer .newsletter-container .form-body input::placeholder {
    color: #fff;
}

.main-footer .newsletter-container .form-body .site-btn {
    white-space: nowrap;
}

.main-footer .newsletter-container .form-body label {
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: invert(1);
}

.main-footer .footer-bar {
    padding: 55px 0;
    display: flex;
    justify-content: space-between;
}

.main-footer .footer-bar .logo-wrapper {
    width: 40%;
}

.main-footer .footer-bar .contacts {
    width: 60%;
}

.main-footer .footer-bar .logo-wrapper .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    margin-bottom: 40px;
}

.main-footer .footer-bar .logo-wrapper .logo p {
    margin: 8px 0 0 0;
    color: #C7C7C7;
    font-size: 20px;
    max-width: 300px;
}

.main-footer .footer-bar .logo-wrapper .socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 25px;
}

.main-footer .footer-bar .logo-wrapper .socials a {
    font-size: 20px;
    color: #C7C7C7;
    transition: 300ms;
}

.main-footer .footer-bar .logo-wrapper .socials a:Hover {
    color: #fff;
}

.main-footer .footer-bar .contacts {
    background: rgb(115 115 115 / 0.1);
    padding: 45px 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
    max-height: 200px;
}


.main-footer .footer-bar .contacts .address p {
    margin: 0;
    font-size: 18px;
}

.main-footer .footer-bar .contacts .touch .phone {
    font-size: 54px;
    display: block;
    white-space: nowrap;
    color: #fff;
    font-weight: 700;
    transition: 300ms;
}

.main-footer .footer-bar .contacts .touch .email {
    color: #fff;
    transition: 300ms;
    font-size: 32px;
    font-weight: 600;
    display: block;
}

.main-footer .footer-bar .contacts .touch a:Hover {
    text-decoration: underline;
}

.main-footer .menu-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 65px 0 125px 0;
    border-block: 1px solid #737373;
}

.main-footer .menu-container > aside {
    flex: 1;
}

.main-footer .menu-container > aside .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

.main-footer .menu-container > aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
}

.main-footer .menu-container > aside ul li a {
    display: block;
    transition: 300ms;
    color: #ffF;
    margin-bottom: 15px;
}

.main-footer .menu-container > aside ul li a:Hover {
    color: var(--red);
}

.main-footer .copyright-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 65px 0 55px 0;
}

.main-footer .copyright-container nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 45px;
}

.main-footer .copyright-container nav a {
    transition: 300ms;
    display: block;
    color: #C7C7C7;
    white-space: nowrap;
}

.main-footer .copyright-container nav a:hover {
    color: #fff;
}

.main-footer .copyright-container nav .powered {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 12px;
}

.main-footer .copyright-container nav .powered img {
    height: 10px;
}

.main-footer .copyright-container .copyright {
    color: #C7C7C7;
    margin: 0;
}

.breadcrumb {
    border-radius: 0;
    margin-top: 100px;
    background-size: cover;
    background-position: center center;
    padding-top: 50px;
    height: 500px;
    margin-bottom: 0;
    background-color: #000D3B;
}

.about-page .breadcrumb {
    height: 850px;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.breadcrumb ul li a {
    color: #fff;
    transition: 300ms;
    display: block;
}

.breadcrumb ul li:not(:last-child) a:after {
    content: '/';
    margin: 0 10px;
    color: #fff;
}

.breadcrumb ul li a:Hover {
    color: var(--red);
}

.breadcrumb .page-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 90px calc(var(--container-width) / 12) 0 calc(var(--container-width) / 12);
    color: #fff;
}

.about-page .breadcrumb .page-header {
    padding: 150px calc(var(--container-width) / 12);
}

.breadcrumb .page-header .page-title {
    font-size: 72px;
    font-family: 'Staatliches', cursive;
    margin-bottom: 40px;
    width: 100%;
}

.about-page .breadcrumb .page-header .page-title {
    margin-bottom: 125px;
}

.breadcrumb .page-header .page-description {
    font-size: 24px;
    margin-bottom: 100px;
    width: calc(100% - 400px);
}

.breadcrumb .scroll a {
    display: block;
    font-size: 50px;
    transition: 300ms;
    color: #fff;
}

.breadcrumb .scroll a > i {
    font-weight: lighter;
}

.breadcrumb .scroll a:Hover {
    transform: translateY(10px);
}

.breadcrumb .page-header > .text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.about-page .breadcrumb .page-header .page-description {
    width: 100%;
}

.about-page .about-text {
    display: flex;
    column-gap: 155px;
    align-items: flex-start;
    justify-content: space-between;
}

.about-page .about-text > header {
    width: 40%;
}

.about-page .about-text > header > p {
    font-size: 32px;
    margin-bottom: 120px;
}

.about-page .about-text > footer {
    width: 60%;
    /*position: sticky;*/
    top: 150px;
}

.about-page .about-text > footer p {
    font-size: 18px;
}

.about-page .about-text > footer p:last-child {
    margin: 0;
}

.about-counters {
    background: #F8F8F8;
    padding: 240px 0;
    margin: 150px 0 200px;
}

.about-counters .counters {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 calc(var(--container-width) / 12);
    background-size: cover;
    background-position: center bottom;
}

.about-counters .counters .title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.about-counters .counters .count {
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
}

.about-counters .counters .description {
    margin: 0;
    font-size: 18px;
    color: #737373;
    max-width: 70%;
}

.about-counters .counters .counter:last-child .title {
    font-size: 72px;
}

.about-counters .counters .counter:last-child .count {
    font-size: 200px;
}

.about-counters .counters .counter:last-child .description {
    font-size: 36px;
}

.about-counters .counters .counter {
    width: 100%;
}

.about-vision-and-mission {
    margin: 200px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 120px;
}

.about-vision-and-mission > div {
    flex: 1;
}

.about-vision-and-mission > div .title {
    display: block;
    font-size: 72px;
    margin-bottom: 70px;
}

.about-vision-and-mission > div p {
    font-size: 24px;
    color: #737373;
    margin-left: 50px;
    padding-left: 75px;
    border-left: 2px solid var(--red);
}

.about-milestones {
    background: #F8F8F8;
    padding: 200px 0;
}

.about-milestones .milestones-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 160px;
}

.about-milestones .milestones-header h2 {
    font-size: 72px;
    font-weight: 700;
}

.about-milestones .milestones-header p {
    color: #737373;
    font-size: 24px;
}

.about-milestones .milestone-container {
    position: relative;
}

.about-milestones .milestone-container:before {
    content: '';
    position: absolute;
    left: calc(50% - .5px);
    width: 1px;
    background: #DBDBDB;
    height: 100%;
}

.about-milestones .milestone-container .milestone {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 280px;
    margin-bottom: 90px;
    position: relative;
}

.about-milestones .milestone-container .milestone .image {
    position: relative;
}

.about-milestones .milestone-container .milestone .image:After {
    content: '';
    position: absolute;
    right: -152px;
    top: 0;
    width: 24px;
    height: 24px;
    background: #FA3800;
    border-radius: 100%;
}

.about-milestones .milestone-container .milestone:nth-child(even) {
    flex-direction: row-reverse;
}

.about-milestones .milestone-container .milestone:nth-child(even) .image:After {
    right: unset;
    left: -152px;
}

.about-milestones .milestone-container .milestone > div {
    width: 50%;
}

.about-milestones .milestone-container .milestone .year {
    font-size: 48px;
    display: block;
    font-weight: 600;
    color: var(--blue);
    padding-bottom: 20px;
    border-bottom: 1px solid #DBDBDB;
    margin-bottom: 20px;
}

.about-milestones .milestone-container .milestone .description {
    font-size: 20px;
    color: #737373;
}

#pageContent {
    margin: 90px auto;
}

.quality-text-summary #pageContent {
    margin-top: 0;
}

.gray-bg {
    background: #F8F8F8;
}

.quality-page .quality-text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 155px;
}

.quality-page .quality-text > header {
    width: 40%;
    font-size: 25px;
    /*position: sticky;*/
    top: 150px;
}

.quality-page .quality-text > * p:last-child {
    margin: 0;
}

.quality-page .quality-text > footer {
    width: 60%;
    font-size: 20px;
}

.quality-page .quality-text-summary {
    padding: 100px 0 150px 0;
}

.quality-page .quality-section {
    padding: 100px 0;
}

.quality-page .quality-section .section-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 130px;
}

.quality-page .quality-section .section-container .navigation {
    width: 300px;
    position: sticky;
    top: 150px;
}

.quality-page .quality-section .section-container > .content {
    width: calc(100% - 430px);
    padding-top: 100px;
}

.quality-page .quality-section:nth-child(even) {
    background: #F8F8F8;
}

.quality-page .quality-section .section-container .quality-section-title {
    display: block;
    font-size: 37px;
    margin-bottom: 50px;
    height: 50px;
    font-weight: 700;
}

.quality-page .quality-section .section-container .navigation .nav {
    border: 0;
    flex-direction: column;
    row-gap: 25px;
}

.quality-page .quality-section .section-container .navigation .nav button {
    width: 100%;
    text-align: left;
    font-size: 20px;
    color: #737373;
    border: 0;
    background: transparent;
    transition: 300ms;
}

.quality-page .quality-section .section-container .navigation .nav button:hover,
.quality-page .quality-section .section-container .navigation .nav button.active {
    color: var(--blue);
}

.tab-pane:not(.active) .quality-section-body {
    max-height: 0;
}

.tab-pane .quality-section-body {
    transition: 300ms;
    font-size: 20px;
}

.quality-section-body table {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.quality-section-body table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.quality-section-body table h2 {
   
    margin-left: -10px;
    margin-top: -10px;
    width: calc(100% + 20px);
    margin-bottom: -10px;
    padding: 20px 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}
.quality-section-body table tr:nth-child(1) td {
    background: var(--blue);
    margin-left: -10px;
    margin-top: -10px;
    width: calc(100% + 20px);
    margin-bottom: -10px;
    padding: 20px 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.quality-section-body table h3 {
  
    margin-left: -10px;
    margin-top: -10px;
    width: calc(100% + 20px);
    margin-bottom: -10px;
    padding: 20px 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.quality-section-body table tr:nth-child(2) td {
    background: #A5A5A5;
    margin-left: -10px;
    margin-top: -10px;
    width: calc(100% + 20px);
    margin-bottom: -10px;
    padding: 20px 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.quality-card {
    border: 1px solid #C7C7C7;
    padding: 50px 30px;
    transition: 300ms;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.quality-card .quality-card-header p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 14px;
    color: #737373;
    font-weight: 600;
    text-transform: uppercase;
}

.quality-card .quality-card-header p > span:first-child {
    min-width: 80px;
}

.quality-card .title {
    color: #737373;
    font-size: 20px;
    transition: 300ms;
    display: block;
}

.quality-card .download {
    display: inline-block;
    transition: 300ms;
}

.quality-card:Hover {
    border-color: var(--red);
}

.quality-card .title:Hover {
    color: var(--red);
}

.quality-card:Hover .download {
    transform: translateY(-10px);
}

.quality-page .quality-section .section-container .navigation nav {
    width: 100%;
}

.quality-page .owl-dots {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    column-gap: 10px;
    margin-top: 50px;
}

.quality-page .owl-dots .owl-dot {
    width: 50px;
    height: 6px;
    background: #DBDBDB;
    transition: 300ms;
}

.quality-page .owl-dots .owl-dot.active {
    background: var(--red);
}

.product-category-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.product-category-container > .product-category {
    width: calc(33% - 30px);
    box-shadow: none;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.products-container .product-item {
    display: block;
    width: calc(25% - 30px);
    margin: 15px;
    text-align: center;
    position: relative;
    padding: 50px 20px;
}

.products-container .product-item .title {
    font-size: 20px;
    margin: 0;
    color: #000;
    font-weight: 600;
    transition: 300ms;
}

.products-container .product-item .category {
    color: #A5A5A5;
    margin: 0;
    transition: 300ms;
}

.products-container .product-item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    transition: 300ms;
    height: 4px;
    z-index: 1;
    background: var(--red);
}

.products-container .product-item:Hover:After {
    width: 100%;
}

.products-container .product-item:Hover .title,
.products-container .product-item:Hover .category {
    color: var(--blue);
}

.product-page .breadcrumb {
    height: 760px;
}

.product-page .breadcrumb .page-header {
    flex-direction: unset;
    color: #000;
    align-items: unset;
}

.product-page .breadcrumb .page-header .text {
    display: block;
    width: 50%;
}

.product-page .breadcrumb .page-header .page-description {
    font-size: 18px;
    margin-bottom: 50px;
}

.product-page .breadcrumb .page-header .logo img {
    width: 100px;
}

.product-page .breadcrumb .page-header .logo {
    margin-bottom: 30px;
}

.product-page .breadcrumb .page-header .page-title {
    margin-bottom: 5px;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 64px;
}

.product-page .breadcrumb .page-header .category {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
}

.product-page .breadcrumb .page-header > .image {
    width: 50%;
    position: relative;
}

.product-page .breadcrumb .page-header > .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
}

.product-detail-nav {
    position: sticky;
    top: 108px;
    background: var(--red);
    z-index: 5;
}

.product-detail-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.product-detail-nav ul a {
    font-size: 20px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    transition: 300ms;
    padding: 25px;
    font-weight: 700;
}

.product-detail-nav ul a:Hover {
    background: var(--blue);
}

h2.product-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.product-section-body {
    font-size: 20px;
    color: #737373;
}

.product-details .overview .slider {
    margin-top: 80px;
}

.product-details #overview .slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 30px;
}

.product-details #overview .slider .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border: 1px solid #A5A5A5;
    transition: 300ms;
    border-radius: 100%;
}

.product-details #overview .slider .owl-dots .owl-dot.active {
    background: var(--red);
    border-color: transparent;
}

.product-section-body table {
    width: 100%;
}

.product-section-body table tr:first-of-type td {
    border-top: 0;
}

.product-section-body table td {
    border-block: 1px solid #C7C7C7;
    padding: 20px 0;
    text-align: center;
    position: relative;
    height: 60px;
}

.product-section-body table td b {
    font-weight: 600;
}

.document-alert {
    border-radius: 15px;
    background: #EAF3F5;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
}

.document-alert .text p {
    font-size: 24px;
    font-weight: 500;
    max-width: 380px;
    margin: 0;
}

.document-alert .details p {
    font-size: 20px;
    font-weight: 500;
    max-width: 300px;
}

.document-alert .details .download-link {
    color: var(--red);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 700;
    transition: 300ms;
}

.document-alert .details .download-link img {
    margin-left: 20px;
    transition: 300ms;
}

.document-alert .details .download-link:Hover img {
    transform: translateY(10px);
}

.product-section-body ol {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
    color: #A5A5A5;
}
.product-section-body ol li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #C7C7C7;
}
.product-section-body ol p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #C7C7C7;
}

.product-section-body ol li p:not(.title) {
    font-weight: 700;
    color: #000;
}

.product-section-body ol li:last-child {
    border: 0;
}

.feature-lists {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.feature-lists > div {
    width: 50%;
    background: #FCFCFC;
    padding: 60px;
}

.product-section-body table .titleCol {
    background: #EAF3F5;
}

.product-section-description {
    font-size: 20px;
    font-weight: 500;
    color: #A5A5A5;
    margin-top: -30px;
    margin-bottom: 50px;
}

.product-details .drawing-gallery {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: center;
}

.product-details .drawing-gallery > a {
    width: calc(33% - 30px);
    padding: 50px 20px 40px 20px;
    border: 1px solid #C7C7C7;
    transition: 300ms;
}

.product-details .drawing-gallery figcaption {
    font-size: 20px;
    display: block;
    color: #000;
    font-weight: 600;
    margin-top: 130px;
    transition: 300ms;
}

.product-details .drawing-gallery > a:Hover {
    border-color: var(--red);
}

.product-details .drawing-gallery > a:Hover figcaption {
    transform: translateX(20px);
    color: var(--red);
}

.product-details .dimensions .section-header {
    text-align: center;
}

.product-details #documents .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 30px;
}

.product-details #documents .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border: 1px solid #A5A5A5;
    transition: 300ms;
    border-radius: 100%;
}

.product-details #documents .owl-dots .owl-dot.active {
    background: var(--red);
    border-color: transparent;
}

.product-details > section {
    position: relative;
    z-index: 1;
    margin: 80px 0;
}

.product-details > .gray-bg {
    padding: 75px 0;
    background: #FCFCFC;
}

.product-details > .gray-bg:after {
    z-index: -1;
    content: '';
    left: calc(calc(100vw - var(--container-width)) / -2);
    background: #FCFCFC;
    height: 100%;
    top: 0;
    position: absolute;
    width: calc(100vw - 21px);
}

.product-details > section:last-child {
    /* margin-bottom: 80px; */
}

.product-page #pageContent {
    margin-bottom: 0;
}

.category-type-text {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.components-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.components-container .component {
    width: calc(25% - 20px);
    margin: 10px;
    border: 1px solid #DBDBDB;
    padding: 95px 55px;
    transition: 300ms;
    display: flex;
    flex-direction: column;
    position: relative;
}

.components-container .component .title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.components-container .component .title span {
    display: block;
}

.components-container .component .description {
    margin: 0;
    color: #737373;
    font-size: 15px;
}

.components-container .component:After {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--red);
    transition: 300ms;
}

.components-container .component:Hover:after {
    width: 100%;
}

.products-container.components-type .product-item {
    text-align: left;
}

.products-container.components-type .product-item .content {
    padding-top: 30px;
}

.products-container.components-type .product-item .content .category {
    margin-top: 22px;
}

.product-details #component {
    display: flex;
    justify-content: space-between;
}

.product-details #component .image {
    width: 800px;
    border: 1px solid #DBDBDB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.product-details #component .content {
    width: calc(100% - 800px);
    padding-left: 85px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 100px;
}

.product-details #component .content .product-section-title {
    margin-bottom: 24px;
}

.product-details #component .content .technic-description {
    font-size: 20px;
    color: #737373;
    padding-bottom: 50px;
    position: relative;
}

.product-details #component .content .technic-description:After {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #DBDBDB;
}

.product-details #component .content footer p {
    margin: 0;
    color: #737373;
}

.product-details #component .content footer p a {
    transition: 300ms;
    display: inline-block;
    color: var(--blue);
    font-weight: 500;
}

.product-details #component .content footer p a:Hover {
    color: var(--red);
}

label.check {
}

#request-form .product-section-title {
    text-align: center;
}

#request-form .form-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 26px;
    width: calc(calc(var(--container-width) / 12) * 10);
    margin: auto;
}

#request-form .form-body input {
    width: calc(100% - 13px);
}

#request-form .form-body textarea {
    width: 100%;
    height: 250px;
}

#request-form .form-body input,
#request-form .form-body textarea {
    padding: 24px;
    font-size: 20px;
    margin: 15px 0;
    border: 0;
    border-bottom: 1px solid #C7C7C7;
}

#request-form .form-body footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.check-item input {
    width: 0;
    height: 0;
    opacity: 0;
}

.check-item label {
    position: relative;
    color: #A5A5A5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    user-select: none;
}

.check-item label:Before {
    content: '';
    width: 24px;
    height: 24px;
    border: 1px solid;
    transition: 300ms;
    margin-right: 14px;
}

.check-item label:after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    width: 24px;
    height: 24px;
    margin-right: 14px;
    position: absolute;
    left: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 500;
    font-size: 14px;
}

.check-item label a {
    font-weight: 500;
    transition: 300ms;
    color: var(--blue);
}

.check-item label a:Hover {
    color: var(--red);
}

.check-item input:checked ~ label:before {
    border-color: var(--blue);
}

.check-item input:checked ~ label:after {
    opacity: 1;
}

.area-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 50px;
}

.area-container .area {
    width: calc(33% - 10px);
    border: 1px solid #C7C7C7;
    position: relative;
}

.area-container .area .image {
    overflow: hidden;
}

.area-container .area .image img {
    transition: 300ms;
}

.area-container .area .content {
    padding: 30px 40px;
}

.area-container .area .content .title {
    display: block;
    font-size: 24px;
    min-height: 100px;
    font-weight: 700;
    color: #000;
    transition: 300ms;
}

.area-container .area .content .read-more {
    color: var(--red);
    transition: 300ms;
    font-weight: 500;
    display: block;
}

.area-container .area:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--red);
    transition: 300ms;
}

.area-container .area:Hover:after {
    width: 100%;
}

.area-container .area:Hover .image img {
    transform: scale(1.1);
}

.area-details-page .gray-bg {
    padding: 75px 0;
    background: #FCFCFC;
    position: relative;
    margin-bottom: 80px;
}

.area-details-page .gray-bg:after {
    z-index: -1;
    content: '';
    left: calc(calc(100vw - var(--container-width)) / -2);
    background: #FCFCFC;
    height: 100%;
    top: 0;
    position: absolute;
    width: calc(100vw - 21px);
}

.area-details-page .breadcrumb {
    height: 835px;
}

.area-details-page #pageContent {
    margin-top: 0;
}

.area-details-page .featureds {
    background: #fff;
    display: flex;
    padding: calc(var(--container-width) / 12);
    margin-top: -200px;
    position: relative;
    column-gap: 20px;
}

.area-details-page .featureds .featured {
    width: 50%;
}

.area-details-page .featureds .featured img {
    margin-bottom: 40px;
}

.area-details-page .featureds .featured .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 60%;
}

.area-details-page .featureds .featured p {
    max-width: 60%;
}

.area-details-page .products-container > header {
    width: 100%;
    text-align: center;
}

.area-details-page .products-container > header h2 {
    font-size: 36px;
    font-weight: 600;
}

.area-details-page .products-container .product-item {
    width: calc(33% - 30px);
}

.filter-products-page #pageContent {
    margin-top: 0;
}

.filter-products-page .filter-products .form-body {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 80px 0;
    column-gap: 30px;
    row-gap: 30px;
}

.filter-products-page .filter-products .form-body .input {
    width: calc(25% - 30px);
}

.filter-products-page .filter-products .form-body .button {
    width: calc(50% - 30px);
    text-align: right;
    padding-top: 10px;
}

.filter-products-page .filter-products .form-body .input select {
    width: 100%;
    padding: 15px 30px;
    border: 1px solid #A5A5A5;
    border-radius: 5px;
}

.filter-products-page .filter-products .form-body .input label {
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
    color: #171819;
}

.filter-products-page .search-results {
    background: #A5A5A5;
    padding: 20px 0;
}

.filter-products-page .search-results p {
    margin: 0;
    font-size: 24px;
    color: #ffF;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 30px;
}

.articles-container .article {
    width: calc(33% - 30px);
}

.articles-container .article .button {
    margin-top: -30px;
    text-align: right;
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

.articles-container .article:hover .site-btn {
    transform: translateX(50px);
}

.article-details-page .breadcrumb .page-header {
    flex-direction: unset;
    justify-content: space-between;
    column-gap: 100px;
}

.article-details-page .breadcrumb .page-header > div {
    width: 50%;
}

.article-details-page .breadcrumb .page-header .article-date {
    font-size: 20px;
    color: #A5A5A5;
    margin-bottom: 25px;
}

.article-details-page .breadcrumb .page-header .page-title {
    font-size: 36px;
    font-family: inherit;
}

.article-details-page .article-body {
    color: #737373;
    font-size: 20px;
}

.documents-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.documents-container .quality-card {
    width: calc(25% - 20px);
}

.document-request-form {
    display: flex;
    justify-content: space-between;
    padding: 0 calc(calc(var(--container-width) / 12) * 2);
}

.document-request-form > .text {
    width: 385px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.document-request-form > .text .quality-card {
    padding: 0;
    border: 0;
}

.document-request-form > .text .quality-card .title {
    max-width: 70%;
}

.document-request-form > .form {
    width: calc(100% - 385px);
    padding-left: 105px;
    border-left: 1px solid #C7C7C7;
}

.document-request-form > .form .title {
    font-size: 48px;
    font-weight: 600;
    display: block;
    margin-bottom: 64px;
}

.document-request-form > .form .input {
    margin-bottom: 20px;
}

.document-request-form > .form .input input {
    width: 100%;
    border: 0;
    font-size: 20px;
    padding: 20px;
    border-bottom: 1px solid #C7C7C7;
    transition: 300ms;
}

.document-request-form > .form .input input:focus {
    border-color: var(--blue);
}

.document-request-form > .form .check-item {
    margin-bottom: 40px;
}

.contacts-page .form-body {
    padding: 0 calc(calc(var(--container-width) / 12) * 2);
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    margin-bottom: 100px;
}

.contacts-page .form-body .title {
    font-size: 48px;
    font-weight: 600;
    display: block;
    margin-bottom: 64px;
    text-align: center;
    width: 100%;
}

.contacts-page .form-body .input {
    margin-bottom: 20px;
    width: calc(100% - 30px);
}

.contacts-page .form-body .input.full-width {
    width: 100%;
}

.contacts-page .form-body .input input,
.contacts-page .form-body .input select,
.contacts-page .form-body .input textarea {
    width: 100%;
    border: 0;
    font-size: 20px;
    padding: 20px;
    border-bottom: 1px solid #C7C7C7;
    transition: 300ms;
}

.contacts-page .form-body .input input:focus {
    border-color: var(--blue);
}

.contacts-page .form-body footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.contacts-page .contact-boxes .boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 135px calc(var(--container-width) / 12);
}

.contacts-page .contact-boxes .boxes > div {
    flex: 1;
}

.contacts-page .contact-boxes .boxes .address {
    font-size: 24px;
}

.contacts-page .contact-boxes .boxes .title {
    font-weight: 600;
    color: #737373;
    text-transform: uppercase;
    margin-bottom: 25px;
}


.contacts-page .contact-boxes .boxes a {
    display: inline-block;
    font-size: 32px;
    color: #737373;
    font-weight: 600;
    transition: 300ms;
    position: relative;
}

.contacts-page .contact-boxes .boxes a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: 300mS;
}

.contacts-page .contact-boxes .boxes a:Hover:before {
    width: 100%;
}

.contacts-page .contact-boxes .boxes a:Hover {
    color: var(--blue);
}

.contacts-page #pageContent {
    margin-bottom: -7px;
}

.page-details-body {
    font-size: 20px;
    color: #000000;
}

.page-details-body a {
    color: #000000;
    transition: 300ms;
    display: inline-block;
    text-decoration: underline;
}

.page-details-body a:Hover {
    color: var(--blue);
}

.page-details-body h2 {
    font-size: 48px;
    font-weight: 700;
    color: #171819;
    margin-bottom: 60px;
}

.layout-container {
    padding: 0 calc(var(--container-width) / 12) 0 calc(var(--container-width) / 12);
}

@media (max-width: 1830px) {
    .main-product-features .slider {
        padding: 0 100px;
    }
}

@media (max-width: 1400px) {
    .main-product-features .feature .title {
        font-size: 40px;
    }
}

@media (max-width: 1200px) {
    .main-header .actions .action {
        font-size: 20px;
        padding: 20px 40px;
    }

    .main-header .actions .list a {
        font-size: 18px;
    }

    .main-about .section-title {
        font-size: 40px;
    }

    .main-about .widgets .widget .title {
        font-size: 50px;
    }

    .main-products .section-header .section-title {
        font-size: 70px;
    }

    .main-media .contact .content .title {
        font-size: 40px;
    }

    .main-product-features .feature .description {
        max-width: 100%;
    }

    .main-footer .footer-bar .contacts .touch .phone {
        font-size: 30px;
    }

    .main-footer .footer-bar .contacts .touch .email {
        font-size: 20px;
    }

    .main-footer .footer-bar .contacts {
        max-height: unset;
        padding: 25px 35px;
        column-gap: 30px;
    }

    .about-counters .counters .counter:last-child .count {
        font-size: 120px;
    }

    .about-counters .counters .counter:last-child .title {
        font-size: 48px;
    }

    .about-counters .counters .counter:last-child .description {
        font-size: 25px;
    }

    .breadcrumb .page-header {
        padding: 50px 0;
    }

    .product-page .breadcrumb .page-header .page-description {
        width: 100%;
    }

    .product-detail-nav ul a {
        font-size: 16px;
    }

    .product-detail-nav{
        top: 93px;
    }
}

@media (max-width: 992px) {
    .main-header .actions > ul > li:first-child {
        display: none;
    }

    .main-header .header-container .logo .text {
        display: none;
    }

    .main-header .actions .action {
        font-size: 16px;
        padding: 15px 10px;
    }

    .main-video video {
        height: unset;
    }

    .main-about .widgets {
        flex-direction: column;
        row-gap: 20px;
    }

    .main-about .widgets .widget {
        width: 100%;
    }

    .main-products .section-header {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .main-products .section-header .description {
        max-width: 100%;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .main-media .contact {
        flex-direction: column;
        padding: 50px 0;
    }

    .main-media .contact > div {
        width: 100%;
    }

    .main-media .contact .content p {
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .main-media .contact .content {
        text-align: center;
        margin-top: 30px;
    }

    .main-media .contact:before {
        background-position: center;
    }

    .main-media .documents {
        padding-top: 330px;
    }

    .main-product-features .feature {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .main-product-features .feature > div {
        width: 100%;
    }

    .main-product-features .owl-nav {
        position: unset;
        width: 100%;
        justify-content: flex-start;
        left: 0;
    }

    .main-product-features .slider {
        padding: 0;
    }

    .main-product-features .feature .text {
        margin-bottom: 20px;
    }

    .main-product-features .owl-nav i {
        width: 50px;
        height: 50px;
        font-size: 40px;
    }

    .main-footer .newsletter-container {
        flex-direction: column;
    }

    .main-footer .newsletter-container .text {
        width: 100%;
        margin-bottom: 20px;
    }

    .main-footer .newsletter-container .text p {
        max-width: 100%;
    }

    .main-footer .newsletter-container .form {
        width: 100%;
    }

    .main-footer .newsletter-container .form-body {
        flex-wrap: wrap;
        border: 0;
        justify-content: flex-end;
        margin-top: 20px;
        position: relative;
    }

    .main-footer .newsletter-container .form-body input {
        width: calc(100% - 90px);
    }

    .main-footer .newsletter-container .form-body .site-btn {
        margin-top: 30px;
    }


    .main-footer .newsletter-container .form-body:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 100px;
        width: 100%;
        height: 1px;
        background: #fff;
    }

    .main-footer .footer-bar {
        flex-direction: column;
        padding: 30px 0;
    }

    .main-footer .footer-bar .logo-wrapper {
        width: 100%;
    }

    .main-footer .footer-bar .contacts {
        width: 100%;
        flex-direction: column;
        margin-top: 30px;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 20px;
    }

    .main-footer .footer-bar .contacts > .address {
        max-width: 60%;
    }

    .main-footer .menu-container {
        padding: 50px 0;
        border: 0;
        flex-direction: column;
        row-gap: 20px;
    }

    .main-footer .copyright-container {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }

    .main-footer .copyright-container nav {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }

    .menu-wrapper {
        width: 100%;
        padding-right: 0;
        padding-top: 100px;
    }

    .main-header .toggle-menu .bars {
        width: 25px;
        row-gap: 5px;
        margin-left: 0;
    }

    .main-header .toggle-menu .bars span:first-child {
        width: 25px;
    }

    .main-header .toggle-menu .bars span:last-child {
        width: 18px;
    }

    .main-header .toggle-menu .bars span {
        height: 1px;
    }

    .open-menu .main-header .toggle-menu .bars span:first-child {
        transform: rotate(45deg) translateX(5px);
    }

    .open-menu .main-header .toggle-menu .bars span:last-child {
        transform: rotate(-45deg) translateX(5px);
    }

    .main-about {
        padding: 30px 0 50px;
    }

    .main-media .contact .icon img {
        max-width: 40%;
    }

    .main-about .about-text p {
        font-size: 18px;
    }

    .main-about .widgets .widget .title {
        font-size: 35px;
    }

    .main-about .widgets .widget .description {
        font-size: 20px;
    }

    .about-page .breadcrumb {
        height: unset;
    }

    .about-page .breadcrumb .page-header {
        padding: 30px 0;
    }

    .about-page .breadcrumb .page-header .page-title {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .breadcrumb .page-header .page-description {
        font-size: 14px;
        width: 100%;
    }

    .about-page .about-text {
        flex-direction: column;
    }

    .about-page .about-text > header {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-page .about-text > footer {
        width: 100%;
        top: unset;
        position: static;
    }

    .about-page .about-text > header > p {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .about-counters .counters {
        flex-direction: column;
        row-gap: 30px;
        padding: 0;
    }

    .about-counters {
        margin: 50px 0;
        padding: 50px 0;
    }

    .about-counters .counters .counter {
        text-align: center;
    }

    .about-counters .counters .description {
        max-width: 100%;
        padding: 0 30px;
        font-size: 18px !important;
    }

    .about-counters .counters .title {
        font-size: 25px !important;
    }

    .about-counters .counters .count {
        font-size: 50px !important;
    }

    .about-vision-and-mission {
        flex-direction: column;
        margin: 50px 0;
    }

    .about-vision-and-mission > div .title {
        font-size: 35px;
        margin-bottom: 30px;
    }

    .about-vision-and-mission > div p {
        font-size: 20px;
    }

    .about-milestones .milestones-header {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .about-milestones {
        padding: 50px 0;
    }

    .about-milestones .milestones-header h2 {
        font-size: 40px;
    }

    .about-milestones .milestones-header p {
        font-size: 20px;
    }

    .about-milestones .milestone-container:before {
        left: 2px;
    }

    .about-milestones .milestone-container .milestone {
        flex-direction: column;
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .about-milestones .milestone-container .milestone:nth-child(even) {
        flex-direction: column;
    }

    .about-milestones .milestone-container .milestone > div {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-milestones .milestone-container .milestone .image:After {
        right: unset !important;
        left: -30px !important;
    }

    .breadcrumb .page-header {
        padding: 0;
    }

    .breadcrumb {
        height: unset;
        margin-top: 74px;
    }

    .breadcrumb .page-header > .text {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .breadcrumb .page-header .page-title {
        font-size: 35px;
    }

    .quality-page .quality-text {
        flex-direction: column;
    }

    .quality-page .quality-text-summary {
        padding: 30px 0 30px;
    }

    .quality-page .quality-text > header {
        width: 100%;
        position: unset;
        margin-bottom: 30px;
    }

    .quality-page .quality-text > footer {
        width: 100%;
    }

    .quality-page .quality-section {
        padding: 30px 0;
    }

    .quality-page .quality-section .section-container {
        flex-direction: column;
        row-gap: 30px;
    }

    .quality-page .quality-section .section-container > .content {
        width: 100%;
        padding-top: 0;
    }

    .quality-page .quality-section .section-container .navigation {
        width: 100%;
        position: unset;
    }

    .quality-page .quality-section .section-container .navigation .nav {
        flex-direction: unset;
        flex-wrap: unset;
    }

    .quality-page .quality-section .section-container .navigation .nav button {
        white-space: nowrap;
        min-width: 33%;
        margin-right: 15px;
    }

    .table-container {
        max-width: 100% !important;
        overflow: auto;
    }

    .table-container table td {
        white-space: nowrap;
    }

    .quality-page .quality-text {
        flex-direction: column;
    }

    .quality-page .quality-text-summary {
        padding: 30px 0 30px;
    }

    .quality-page .quality-text > header {
        width: 100%;
        position: unset;
        margin-bottom: 30px;
    }

    .quality-page .quality-text > footer {
        width: 100%;
    }

    .quality-page .quality-section {
        padding: 30px 0;
    }

    .quality-page .quality-section .section-container {
        flex-direction: column;
        row-gap: 30px;
    }

    .quality-page .quality-section .section-container > .content {
        width: 100%;
        padding-top: 0;
    }

    .quality-page .quality-section .section-container .navigation {
        width: 100%;
        position: unset;
    }

    .quality-page .quality-section .section-container .navigation .nav {
        flex-direction: unset;
        flex-wrap: unset;
        overflow: auto;
    }

    .quality-page .quality-section .section-container .navigation .nav button {
        white-space: nowrap;
        min-width: 45%;
        margin-right: 15px;
    }

    .table-container {
        max-width: 100% !important;
        overflow: auto;
    }

    .layout-container {
        padding: 0;
    }

    .area-container .area {
        width: 100%;
    }

    .area-details-page .breadcrumb {
        height: unset;
        padding-bottom: 130px;
    }

    .area-details-page .featureds {
        padding: 15px;
        flex-direction: column;
    }

    .area-details-page .featureds .featured {
        width: 100%;
    }

    .area-details-page .featureds .featured .title {
        max-width: 100%;
    }

    .area-details-page .featureds .featured p {
        max-width: 100%;
    }

    .area-details-page .products-container .product-item {
        width: 100%;
    }

    #request-form .form-body {
        width: 100%;
    }

    #request-form .form-body input {
        width: 100%;
    }

    #request-form .form-body footer {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 30px;
    }

    .area-details-page .gray-bg:after {
        content: none;
    }

    .articles-container .article {
        width: 100%;
        margin-bottom: 20px;
    }

    .article-details-page .breadcrumb .page-header {
        flex-direction: column;
    }

    .article-details-page .breadcrumb .page-header > div {
        width: 100%;
    }

    .article-details-page .breadcrumb .page-header > .article-cover {
        margin-bottom: -50px;
    }

    .contacts-page .form-body {
        padding: 0;
    }

    .contacts-page .form-body .input {
        width: 100%;
    }

    .contacts-page .form-body footer {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 30px;
    }

    .contacts-page .contact-boxes .boxes {
        padding: 50px 0;
        flex-direction: column;
        row-gap: 30px;
    }

    .documents-container .quality-card {
        width: 100%;
    }

    .document-request-form {
        padding: 0;
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .document-request-form > .text {
        width: 100%;
    }

    .document-request-form > .form {
        width: 100%;
        padding-left: 0;
        border: 0;
    }

    .product-category-container > .product-category {
        width: 100%;
    }

    .product-page .breadcrumb {
        height: unset;
    }

    .product-page .breadcrumb .page-header {
        flex-direction: column;
    }

    .product-page .breadcrumb .page-header > .image {
        display: none;
    }

    .product-page .breadcrumb .page-header .text {
        width: 100%;
        padding-bottom: 30px;
    }

    .product-page .breadcrumb .page-header .page-title {
        font-size: 45px;
    }

    .product-detail-nav ul a {
        font-size: 14px;
        padding: 15px;
        white-space: nowrap;
    }

    .product-detail-nav ul {
        overflow: auto;
    }

    .product-details > .gray-bg {
        padding: 30px 0;
    }

    .product-details > section {
        margin: 30px 0;
    }

    .document-alert {
        margin: 0 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        row-gap: 30px;
    }

    .feature-lists {
        flex-direction: column;
    }

    .feature-lists > div {
        width: 100%;
        padding: 30px;
    }

    .product-details > .gray-bg:after {
        content: none;
    }

    .product-details .drawing-gallery > a {
        width: 100%;
        margin-bottom: 15px;
    }

    .product-detail-nav {
        top: 74px;
    }

    .products-container .product-item {
        width: 100%;
    }

    .components-container .component {
        width: 100%;
    }

    .product-details #component {
        flex-direction: column;
    }

    .product-details #component .image {
        width: 100%;
    }

    .product-details #component .content {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }

    #pageContent {
        margin: 30px 0;
    }

    .filter-products-page .filter-products .form-body .input {
        width: calc(50% - 10px);
    }

    .filter-products-page .filter-products .form-body .button {
        width: 100%;
        text-align: left;
    }

    .filter-products-page .filter-products .form-body {
        column-gap: 20px;
    }

    .main-header .header-container .logo img {
        width: 100px;
    }

    .quality-section-body table h2 {
        font-size: 25px;
    }

    .quality-section-body table h3 {
        font-size: 20px;
    }

    .breadcrumb ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        font-size: 14px;
    }

    .article-details-page .breadcrumb {
        margin-bottom: 80px;
    }

    .document-request-form > .text .quality-card .title {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .product-section-body table {
        font-size: 14px;
    }

    .product-section-body ol li {
        font-size: 16px;
    }
}
table {width:100%;}
.calisma table tr td:last-child
 {
    font-weight: 700;
    color: #000;
	 text-align: right;
}
.calisma table tr td:first-child
 {
    text-align: left;
}
.input-button  {
    opacity: 0;
    z-index: 99;
    position: absolute;
    top: -15px;
    }
.wwbutton {
    float: right;
    display: flex;
    width: 100%;
    justify-content: end;
    position: relative;
    }
.noturun p {margin-top:70px;color: var(--red);font-size:24px;}
@media (max-width: 1550px) and (min-width: 1500px) {
    .menu-wrapper {
 
    padding-top: 120px;
}
}