/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"); /* import font */
 
:root{
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
} /* variables*/
 
/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--white);
    font-family: "Montserrat", sans-serif;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}

/* Header */
.header{
    background-color: var(--black);
    position: sticky;
    top: 0;
    width: 100%;
}
/* Logo */
.logo{
    display: inline-block;
    font-size: 60px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 8px;
}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--black);
    overflow: hidden;
    z-index: 9999;
 
}
.menu a{
    display: block;
    padding: 30px;
    color: var(--white);
}
.menu a:hover{
    background-color: var(--gray);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */
 
.hamb-line {
    background: var(--white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
 
} /* Style span tag */
 
.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}
 
#side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon */
#side-menu:checked ~ nav{
    max-height: 100%;
}
#side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
#side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
#side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

/* Responsiveness */
@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        z-index: 9999;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
        color: var(--gray);
 
    }
 
    .hamb{
        display: none;
    }
}

@media (max-width: 480px) {
    .section .section_inner, .section_inner, {
        --section-inner-width: 360px;
        width: 360px;
    }
}

@media (max-width: 640px) {
    .section .section_inner, .section_inner, {
        --section-inner-width: 480px;
        width: 480px;
    }
}

@media (max-width: 800px) {
    .section .section_inner, .section_inner, {
        --section-inner-width: 640px;
        width: 640px;
    }
}

@media (max-width: 960px) {
    .section .section_inner, .section_inner, {
        --section-inner-width: 768px;
        width: 768px;
    }
}

@media (max-width: 1180px) {
    .section .section_inner, .section_inner, {
        --section-inner-width: 940px;
        width: 940px;
    }
}

@media (max-width: 800px) {
    .section_inner {
        width: 100% !important;
    }
}

@media (max-width: 400px) {
    .section .title {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .title * {
        font-size: 26px !important;
    }
}

@media (max-width: 640px) {
    .title {
        font-size: 22px;
    }
}

@media (max-width: 800px) {
    .title * {
        font-size: 28px;
    }
}

@media (max-width: 960px) {
    .title {
        margin: 0 auto 15px;
    }
}



::-webkit-scrollbar {
    width: var(--scrollbar_width, 12px);
}

::-webkit-scrollbar-button {
    background: #ececec;
    width: 12px;
    height: 0;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: var(--scrollbar_thumb_radius, 10px);
    border-radius: var(--scrollbar_thumb_radius, 10px);
    background-color: var(--scrollbar_thumb_bg, #828485);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.wrapper {
  position: relative;
  background-color: black;
  z-index: -200
}

.section {
    width: 100%;
    position: relative;
    padding: 40px 0;
    line-height: 1.4;
    background-position: center center;
    background-repeat: repeat;
    transition: .5s;
    opacity: 1;
}

.section1 {
  position: relative;
  z-index: -100;
  width: 100%;
  background-image: url(../images/repair.png);
  background-position: center center;
  background-repeat: repeat;
  padding-top: 150px;
  padding-bottom: 100px;
}

.section_inner {
    --section-inner-width: var(--inner-width, 940px);
    --section-inner-max-width: 100%;
    width: var(--section-inner-width);
    max-width: var(--section-inner-max-width);
    margin: 0 auto;
    position: relative;
}

.arr1 {
    display: flex;
    margin-bottom: 70px;
    flex-direction: row-reverse;
}

@media (max-width: 930px) {
    .arr1 {
        flex-direction: column;
    }
}

.headliner {
    position: relative;
}

.title {
    position: relative;
    text-align: left;
    font-size: 26px;
    margin-bottom: 20px;
    margin-left: 8px;
    line-height: 130%;
    color: #fff;
}

.left {
    margin-top: 50px;
    display: flex;
    height: 100px;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.bg_left {
    margin-top: 40px;
    margin-left: 0;
    margin-right: -40px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.txt1 {
    position: relative;
    font-size: 18px;
    margin: 10px 8px;
    overflow: hidden;
    height: auto;
}

.image1 {
    z-index: 9999;
}

@media (max-width: 930px) {
    .image1 {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 700px) {
    .img {
        width: 90%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .left {
        text-align: center;
        justify-content: center;
        margin-bottom: 70px;
    }
}

footer {
    background: #3d3d3d;
    padding: 10px 0;
    text-align: center;
}
footer a {
    color: #70726F;
    font-size: 20px;
    padding: 10px;
    border-right: 1px solid #70726F;
    transition: all .5s ease;
}
footer a:first-child {
    border-left: 1px solid #70726F;
}
footer a:hover {
    color: white;
}