:root {
    --main-color: #e00a1a;
    /* --accent-color: #f1f1f1;
    --accent-color: #bfbfbf; */

    --gyro-dark-gray: #808080;
    --gyro-light-gray: #bfbfbf;

    --main-text: #242422;
    --light-text: #fefefe;

    --heading: 'Red Hat Display', sans-serif;
    --text: 'Red Hat Text', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    accent-color: var(--main-color);
}

body {
    font-size: 16px;
    color: var(--main-text);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--display);
}

body,
a,
p,
span {
    font-family: var(--text);
}

a {
    text-decoration: none;
    color: var(--main-text);
    transition: color 0.15s ease-out;
}

a:hover {
    color: var(--main-red);
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.container.smaller-page {
    max-width: 860px;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.container.center {
    text-align: center;
}

.btn {
    background: var(--main-color);
    color: #fff;
    border-radius: 0.25rem;
    padding: 0.8rem 2rem;
    display: block;
    width: fit-content;
    font-weight: 500;
    /* text-transform: uppercase; */
}

.btn.accent {
    background: #fff;
    color: var(--main-text);
}

span.subtext {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--main-color);
    /* text-align: center; */
    display: block;
}

/* Header */
header {
    /* position: fixed; */
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 9999;
    width: 100%;
}

header .first {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--gyro-light-gray);
}

header .first .container {
    padding: 0;
    display: flex;
    justify-content: space-between;
}

header .first .left {
    display: flex;
    gap: 3rem;
}

header .first .right a {
    font-size: 0.875rem;
    position: relative;
    padding-left: 0.9rem;
}

header .first .right a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent var(--main-color);
}

header .first .location,
header .first .mail {
    display: flex;
    align-items: center;
    font-family: var(--heading);
    font-size: 0.875rem;
    font-weight: 400;
    gap: 0.25rem;
}

header .first .mail a,
header .first .mail svg {
    transition: color 0.15s ease-out;
}

header .first .mail:hover a,
header .first .mail:hover {
    color: var(--main-color);
}

header .first .mail {
    position: relative;
}

header .first .mail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2rem;
    width: 1rem;
    height: 1px;
    background-color: var(--main-color);
}

header .second {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gyro-light-gray);
}

header .second .container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

header .second .custom-logo-link img {
    max-height: 62px;
    width: auto;
}

header .second .main-navigation {
    display: flex;
}

.mobile-menu {
    display: none;
}

header .second .mobile-menu-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: none;
}

header .second ul#primary-menu {
    display: flex;
    list-style-type: none;
    gap: 1.25rem;
}

header .second .menu-menu-1-container {
    display: flex;
    align-items: center;
}

header .second .links li {
    display: flex;
    align-items: center;
}

header .second .menu-item-has-children {
    position: relative;
    padding-right: 0.9rem;
    position: relative;
}

header .second .menu-item-has-children .sub-menu {
    position: absolute;
    background: #fff;
    padding: 1rem;
    padding-top: 3rem;
    list-style-type: none;
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    left: -1rem;
    top: 21px;
    /* border: 1px solid var(--gyro-light-gray); */
    border-top: none;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    /* z-index: -1; */
    display: none;
}

header .second .menu-item-has-children:hover .sub-menu {
    display: flex;
}

header .second ul#primary-menu .menu-item-has-children::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: var(--main-color) transparent transparent transparent;
}

header .second ul#primary-menu .action a {
    background: var(--main-color);
    color: #fff;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}

/* Hero banner */
.hero {
    position: relative;
    max-height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    color: #fff;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 600;
}

/* .hero h2 span {
    color: var(--main-color);
} */

.hero p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.hero .btns {
    display: flex;
    gap: 1rem;
}

.hero .btn {
    margin-top: 2rem;
}

/* About us */
.about-us {
    padding: 5rem 0;
}

.about-us .cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.about-us span {
    color: var(--main-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.about-us h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.about-us .cols img {
    border-radius: 0.25rem;
}

.about-us .cols.video {
    padding-top: 6rem;
}

.about-us .cols.video video {
    border-radius: 0.25rem;
}

.about-us .cols.video .right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us .cols.video .right h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    padding-left: 1rem;
}

/* Certification */
.certification {
    /* background: var(--main-text); */
    background: var(--gyro-dark-gray);
    background-image: url('assets/paralax.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: var(--light-text);
    padding: 3rem 0;
    color: var(--main-text);
}

.certification .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certification .container h2 {
    font-weight: 600;
    font-size: 2rem;
}

/* Products */
.products {
    padding: 5rem 0;
}

.products.part-blades {
    padding-bottom: 2rem;
}

.products.parts {
    padding-top: 2rem;
}

.products .subtext {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--main-color);
    text-align: center;
    display: block;
}

.products h2 {
    font-size: 2rem;
    font-weight: 600;
}

.products h2,
.products h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.products h3 {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.products p {
    text-align: center;
    margin-bottom: 4rem;
}

.products .btn {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    background: var(--gyro-light-gray);
    color: var(--main-text);
}

.products .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto !important;
    background: var(--main-color);
    border-radius: 0.25rem;
    align-items: center;
    overflow: hidden;
}

.products img {
    width: 100%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

.products .swiper {
    padding-bottom: 3rem;
}

.swiper-pagination {
    bottom: -1rem;
}

.swiper-pagination-bullet {
    width: 32px !important;
    height: 4px !important;
    border-radius: unset !important;
}

.swiper-pagination-bullet-active {
    background: var(--main-color) !important;
}

/* News section */
.news {
    /* background: var(--gyro-light-gray); */
    background: var(--gyro-dark-gray);
    background-image: url('assets/paralax.jpg');
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 5rem;
}

.news .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.news .left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.news .left .btn {
    margin-top: 1rem;
}

.news .right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 5rem 0;
}

.news .right .article {
    display: flex;
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.25rem;
    gap: 1rem;
}

.news .right .article img {
    max-width: 7rem;
    border-radius: 0.25rem;
}

.news .right .article h3 {
    font-weight: 500;
}

/* Page parts */
.page-heading {
    text-align: center;
    width: 100%;
    /* color: #fff; */
    background-image: url('assets/paralax.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.page-heading h1 {
    font-size: 3rem;
    font-weight: 600;
    padding: 4rem 0;
}

.page-heading.article h1 {
    padding-bottom: 0;
}

.page-heading.article span {
    font-weight: 500;
    padding-bottom: 4rem;
    display: block;
}

/* Contact page */
.contact-page .container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contact-page .left {
    grid-column: 1 / 5;
    padding-right: 2rem;
}

.contact-page .right {
    grid-column: 5 / 7;
}

.contact-page h2 {
    margin-bottom: 0.25rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-page p.subtext {
    margin-bottom: 2rem;
}

.contact-page .input-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-page .required {
    font-weight: 500;
    color: var(--main-color);
}

.contact-page input[type='text'],
.contact-page input[type='email'] {
    border: 1px solid var(--main-text);
    border-radius: 0.25rem;
    width: 100%;
    height: calc(3rem - 2px);
    margin-bottom: 1rem;
}

.contact-page textarea {
    border: 1px solid var(--main-text);
    border-radius: 0.25rem;
    width: 100%;
    /* height: calc(3rem - 2px); */
    margin-bottom: 1rem;
}

.contact-page input[type='submit'] {
    border: none;
    font-family: var(--display);
    font-size: 1rem;
    margin-top: 0.5rem;
    width: 100%;
    height: calc(3rem - 2px);
    color: #fff;
    font-weight: 500;
    border-radius: 0.25rem;
    cursor: pointer;
    background: var(--main-color);
}

.contact-page .warning {
    text-align: center;
    font-weight: 500;
    margin-top: 2rem;
}

.contact-page .group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-page .group svg {
    color: var(--main-color);
}

.contact-staff {
    padding: 3rem 0;
    background: var(--gyro-dark-gray);
    background-image: url(assets/paralax.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.contact-staff span.subtext {
    text-align: center;
}

.contact-staff h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-staff .blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-staff .blocks .block {
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.25rem;
    display: flex;
    gap: 1rem;
}

.contact-staff .blocks .block img {
    max-width: 77px;
    max-height: 77px;
    height: 100%;
    object-fit: cover;
    border-radius: 0.15rem;
}

.contact-staff .blocks .block .subtext {
    text-align: left;
}

.contact-staff .blocks .block h3 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-staff .blocks .block a {
    position: relative;
    padding-left: 0.9rem;
}

.contact-staff .blocks .block a::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 53%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent var(--main-color);
}

.contact-map {
    padding: 3rem 0;
}

.contact-map span.subtext,
.contact-map p {
    text-align: center;
}

.contact-map h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-map p {
    margin-bottom: 3rem;
}

.contact-map iframe {
    border-radius: 0.25rem;
}

/* Product page */
.product section.header .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
}

.product section.header .container .left {
    grid-column: 1 / 3;
}

.product section.header .container .left .wrapper {
    max-height: 350px;
}

.product section.header .container .left .wrapper .swiper-slide {
    display: flex;
}

.product section.header .container .left .wrapper img {
    display: block;
    object-fit: contain;
    border-radius: 0.25rem;
    overflow: hidden;
}

.product section.header .container .right {
    grid-column: 3 / 6;
}

.product section.header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product section.header p {
    margin-bottom: 1.5rem;
}

.product .banner {
    /* background: var(--main-text); */
    background: var(--gyro-dark-gray);
    background-image: url(assets/paralax.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: var(--light-text);
    padding: 3rem 0;
    color: var(--main-text);
}

.product .banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product .banner .container h2 {
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.product .technical-info {
    padding: 3rem 0;
}

.product .technical-info .subtext {
    text-align: center;
}

.product .technical-info h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.product .technical-info .cols-wrapper {
    display: flex;
    gap: 3rem;
}

.product .technical-info .cols-wrapper .left,
.product .technical-info .cols-wrapper .right {
    width: 50%;
}

.product .technical-info .block {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product .technical-info .block .wrapper {
    width: 30px;
    height: 30px;
    background: var(--main-color);
    color: #fff;
    border-radius: 30px;
    position: relative;
}

.product .technical-info .block .wrapper svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product .pricing-options {
    background: var(--gyro-dark-gray);
    background-image: url(assets/paralax.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding: 3rem 0;
}

.product .pricing-options .subtext {
    text-align: center;
}

.product .pricing-options h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product .pricing-options .information {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 2rem;
}

.product .pricing-options .options {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.product .pricing-options .options .option {
    background: #fff;
    border-radius: 0.25rem;
    text-align: center;
    /* min-width: 300px; */
    flex: 1 1 clamp(300px, 25%, 100%);
}

.product .pricing-options .options .option .heading {
    background: var(--main-color);
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.product .pricing-options .options .option h3 {
    font-weight: 600;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.product .pricing-options .options .option div.price {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.product .pricing-options .options .option .price p {
    font-size: 1.5rem;
    font-weight: 600;
}

.product .pricing-options .options .option .point {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 0.25rem;
    padding: 0 1rem;
}

.product .pricing-options .options .option .point svg {
    color: var(--main-color);
}

.product .pricing-options .options .option .btn {
    margin: 1.5rem auto;
}

.product .download-area {
    padding: 3rem 0;
}

.product .download-area .subtext {
    text-align: center;
}

.product .download-area h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.product .download-area .downloads {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.product .download-area .downloads .file {
    text-align: center;
    width: 100%;
}

.product .download-area .downloads .file .btn {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1rem;
}

.product .buy-form {
    padding: 3rem;
}

.product .buy-form h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.product .buy-form .container {
    display: flex;
    gap: 3rem;
}

.product .buy-form .container .left,
.product .buy-form .container .right {
    width: 50%;
}

.product .buy-form .container .right {
    display: flex;
    align-items: center;
}

.product .buy-form .container .right img {
    border-radius: 0.25rem;
}

.product .buy-form .required {
    font-weight: 500;
    color: var(--main-color);
}

.product .buy-form .input-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product .buy-form input {
    border: 1px solid var(--main-text);
    border-radius: 0.25rem;
    width: 100%;
    height: calc(3rem - 2px);
    margin-bottom: 1rem;
}

.product .buy-form textarea {
    border: 1px solid var(--main-text);
    border-radius: 0.25rem;
    width: 100%;
    /* height: calc(3rem - 2px); */
    margin-bottom: 1rem;
}

.product .buy-form input[type='submit'] {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

/* FAQ page */
.faq-page {
    padding: 3rem 0;
}

.faq-page .subtext {
    max-width: 440px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.faq-page .btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.faq-page .acordeons {
    display: flex;
    gap: 3rem;
}

.faq-page .acordeons .left,
.faq-page .acordeons .right {
    width: 50%;
}

.question {
    border-bottom: 1px solid #131313;
}

.question:last-child {
    border-bottom: 1px solid #131313;
}

.question button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 20px;
    color: #131313;
    text-transform: capitalize;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 25px 20px 25px 0;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.question button svg {
    color: var(--main-color);
    transition: transform 0.3s;
}

.question p {
    line-height: 1.6;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.question button.show + p {
    padding-bottom: 25px;
    height: auto;
}

.question button.show {
    color: #ff7a00;
}

.question button.show svg {
    transform: rotate(180deg);
}

/* Footer */
footer .top .container {
    padding: 2rem 0;
    border-top: 1px solid var(--main-text);
    display: flex;
    justify-content: space-between;
}

footer .custom-logo-link img {
    width: 288px;
    height: auto;
}

footer .top .container .wrapper {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

footer .top .container .group {
    display: flex;
    flex-direction: column;
}

footer .bottom {
    background: var(--main-text);
    color: var(--light-text);
    padding-top: 2rem;
}

footer .bottom h2 {
    margin-bottom: 1rem;
    font-weight: 600;
}

footer .bottom a {
    color: var(--light-text);
}

footer .cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 4rem;
}

footer .socials {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
}

footer .socials .icon {
    width: 30px;
    height: 30px;
    background: var(--main-color);
    color: #fff;
    position: relative;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .socials a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

footer .socials .icon svg {
    color: #fff;
}

footer .cols svg {
    color: var(--main-color);
    height: 18px;
}

footer ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

footer ul li a {
    position: relative;
    padding-left: 0.9rem;
}

footer ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent var(--main-color);
}

footer .cols .group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

footer table {
    margin-bottom: 2rem;
}

footer table,
footer table td {
    border: 1px solid hsla(0, 0%, 50%, 0.502);
    border-collapse: collapse;
}

footer table td {
    padding: 0.5rem;
}

footer .copyright {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid hsla(0, 0%, 50%, 0.502);
}

footer .copyright a {
    position: relative;
    padding-left: 0.9rem;
}

footer .copyright a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent var(--main-color);
}

@media (max-width: 1250px) {
    header .second .mobile-menu-btn {
        display: block;
    }

    header .second .main-navigation {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        width: 280px;
        height: 100%;
        background: #fff;
        top: 0;
        right: -100%;
        bottom: 0;
        z-index: 99999;
        transition: right 0.15s ease-out;
    }

    .mobile-menu.open {
        right: 0;
    }

    .mobile-menu .header {
        display: flex;
        justify-content: space-between;
        background: var(--gyro-light-gray);
        padding: 0.5rem;
    }

    .mobile-menu .header h2 {
        margin: 0;
    }

    .mobile-menu .header button {
        border: none;
        background: none;
    }

    .mobile-menu #primary-menu {
        padding: 1rem;
    }

    .mobile-menu ul {
        list-style-type: none;
    }

    .mobile-menu .sub-menu {
        height: 0;
        overflow: hidden;
    }

    .mobile-menu .toggled .sub-menu {
        height: auto;
    }

    .mobile-menu a {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        display: block;
        font-size: 18px;
    }

    .mobile-menu .menu-item-has-children {
        position: relative;
        padding-right: 1.5rem;
    }

    .mobile-menu .menu-item-has-children::after {
        content: '';
        position: absolute;
        right: 1rem;
        top: 20px;
        border-style: solid;
        border-width: 8px 5px 0 5px;
        border-color: var(--main-color) transparent transparent transparent;
    }

    .mobile-menu .menu-item-has-children.toggled::after {
        transform: rotate(180deg);
    }

    .mobile-menu .menu-item-has-children .sub-menu {
        padding-left: 0.5rem;
    }

    .certification .container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .certification .container h2 {
        text-align: center;
    }

    .contact-staff .blocks {
        grid-template-columns: repeat(2, 1fr);
    }

    footer .cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .product .pricing-options .options {
        flex-wrap: wrap;
    }

    footer .top .custom-logo {
        display: none;
    }

    footer .top .container {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    footer .top .container .wrapper {
        flex-direction: column;
        align-items: center;
    }

    .product .buy-form .input-group {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
}

@media (max-width: 860px) {
    .contact-page .left {
        padding-right: unset;
    }

    .contact-page .input-group {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .contact-page .container {
        display: flex;
        flex-direction: column;
    }

    .contact-page .container h2,
    .contact-page p.subtext,
    span.subtext {
        text-align: center;
    }

    .contact-page .group {
        justify-content: center;
        text-align: center;
    }

    .product .technical-info .cols-wrapper {
        flex-direction: column;
        gap: unset;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .product .technical-info .cols-wrapper .left,
    .product .technical-info .cols-wrapper .right {
        width: 100%;
    }

    .product .buy-form .container {
        flex-direction: column;
    }

    .product .buy-form .container .left,
    .product .buy-form .container .right {
        width: 100%;
    }

    .product .buy-form h2 {
        text-align: center;
    }

    .product section.header .container .left .wrapper {
        max-height: unset;
    }

    .product section.header .container .left .wrapper img {
        width: 100%;
        height: 100%;
    }

    .product section.header .container {
        display: flex;
        flex-direction: column;
    }

    .product section.header h1 {
        text-align: center;
    }

    .product section.header p {
        text-align: center;
    }

    .product section.header .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .news .container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .news .container .left,
    .news .container .right {
        width: 100%;
    }

    .news .container .left {
        text-align: center;
    }

    .news .right {
        padding-top: 0;
        padding-bottom: 0;
    }

    .about-us .cols {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-us h2 {
        text-align: center;
    }

    .about-us .left p {
        text-align: center;
    }

    .hero h2 {
        font-size: 2rem;
    }
}

@media (max-width: 680px) {
    header .first {
        display: none;
    }

    .contact-staff .blocks {
        grid-template-columns: repeat(1, 1fr);
    }

    footer .cols {
        grid-template-columns: repeat(1, 1fr);
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }

    footer .socials,
    footer .cols .group {
        justify-content: center;
    }

    footer table,
    footer .bottom .btn {
        margin-left: auto;
        margin-right: auto;
    }

    footer .copyright {
        justify-content: center;
    }

    footer .copyright a {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero img {
        height: 400px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        margin-top: 1rem;
        padding: 0.5rem 1rem;
    }

    .hero .btns br {
        display: none;
    }
}
