@import url("root.css");

body {
    overflow-x: hidden !important;
}


/* GLOBAL */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
}

h2 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
    color: #4e4e4e;
}

h6 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

h4:before,
h6:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: #db2d2e;
    left: 0;
    bottom: 0px;
}

.image-hover {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.image-hover:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.image-hover:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

section {
    padding: 80px 0 80px 0;
}

.separator {
    position: relative;
    margin-top: 10px;
    display: inline-block;
    padding-bottom: 40px;
}

.separator:after {
    width: 100px;
    display: block;
    margin: auto;
    content: "";
    height: 1px;
    background: #db2d2e;
    bottom: 0px;
    left: 50%;
    transition: width .8s ease, background-color .8s ease;
    -webkit-transition: width .8s ease, background-color .8s ease;
    -o-transition: width .8s ease, background-color .8s ease;
    -ms-transition: width .8s ease, background-color .8s ease;
    -moz-transition: width .8s ease, background-color .8s ease;
}

.separator:before {
    content: '';
    display: block;
    margin: auto;
    left: 50%;
    height: 1px;
    width: 50px;
    bottom: -15px;
    background: #db2d2e;
    transition: width .8s ease, background-color .8s ease;
    -webkit-transition: width .8s ease, background-color .8s ease;
    -o-transition: width .8s ease, background-color .8s ease;
    -ms-transition: width .8s ease, background-color .8s ease;
    -moz-transition: width .8s ease, background-color .8s ease;
    margin-bottom: 6px;
}

section:hover .separator:before {
    width: 100px;
    left: 0;
}

section:hover .separator:after {
    width: 50px;
    left: 0;
}

.main-btn {
    border-radius: 35px;
    color: #fff;
    padding: 27px 15px;
    background-color: var(--red-color);
    border: 3px solid var(--red-color);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    min-width: 180px;
    padding: 22px 39px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    white-space: normal;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.main-btn:hover {
    background-color: var(--red-color-hover);
    border-color: var(--red-color-hover);
    color: #fff;
}

.navbar {
    padding: 0px 40px;
    background: #fff;
    z-index: 1000;
    position: sticky;
    top: 0;
    width: 100%;
}

.navbar-logo {
    width: 180px;
}

.nav-item {
    font-size: 20px;
    font-weight: 600;
    padding: 0px 18px;
}


.navbar-nav * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.navbar-nav li {
    display: inline-block;
    list-style: outside none none;
    margin: 0.5em 1.5em;
    padding: 0;
}

.navbar-nav a {
    padding: 0.3em 0;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.navbar-nav a:before,
.navbar-nav a:after {
    height: 3px;
    position: absolute;
    content: '';
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    background-color: var(--red-color);
    width: 0;
}

.navbar-nav a:before {
    top: 0;
    left: 0;
}

.navbar-nav a:after {
    bottom: 0;
    right: 0;
}

.navbar-nav a:hover,
.navbar-nav .current a {
    color: #ffffff;
}

.navbar-nav a:hover:before,
.navbar-nav .current a:before,
.navbar-nav a:hover:after,
.navbar-nav .current a:after {
    width: 100%;
}

/* Sticky */
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    border-bottom: 1px solid #dfdfdf;
    transition: all .8s ease 0s;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky+.content {
    padding-top: 60px;
}



/* SLIDER SECTION */

#slider-section {
    padding: 0px;
}

#slider-section .row {
    padding: 341px 0 186px;
}

#slider-section .c-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.4);
}

#slider-section h1 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 90px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

#slider-section h2 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    color: #fff;
    color: #f5e4c3;
    display: inline-block;
    position: relative;
    letter-spacing: 4px;
}

/* About section */
#about-section {
    background-color: #f5f5f5;
    padding: 80px 0 80px 0;
}

#about-section img {
    width: 100%;
}

#about-section .content h2 {
    display: table-cell;
    padding-right: 20px;
    font-size: 50px;
    padding-top: 5px;
    color: #db2d2e;
}

#about-section .content strong {
    display: table-cell;
    vertical-align: top;
    font-size: 16px;
}

#about-section .content p {
    margin-top: 20px;
    display: block;
}

#about-section .list-style {
    margin-top: 20px;
    display: inline-block;
}

#about-section li {
    list-style: none;
}

#about-section li i {
    font-size: 14px;
    color: #db2d2e;
    display: inline-block;
    padding-right: 10px;
    padding-bottom: 10px;
}

/* Timeline */
/* ===================================
    Timeline
====================================== */
.timeline-img1 {
    border-radius: 100px;
}

.timeline-img2 {
    border-radius: 100px 0 100px 0;
}

.timeline-img3 {
    border-radius: 120px 0 20px 0;
}

.timeline-img4 {
    border-radius: 120px 0 70px 120px;
}

.vertical-timeline {
    position: relative;
    z-index: 1;
}

.vertical-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: -6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #c0c8de;
    margin-left: -4px;
}

.vertical-timeline:after {
    content: '';
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    position: absolute;
    left: 50%;
    bottom: -19px;
    color: var(--red-color);
    margin-left: -6px;
}

.vertical-timeline .timeline-items {
    padding-bottom: 40px;
}

.vertical-timeline .timeline-items:before {
    content: '';
    height: 100%;
    width: 1px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    background-image: linear-gradient(0deg, #c0c8de, #c0c8de 50%, transparent 50%, transparent 100%);
    background-size: 20px 20px;
}

.vertical-timeline .item {
    display: flex;
    position: relative;
}

.vertical-timeline .item:not(:last-child) {
    margin-bottom: 70px;
}

.vertical-timeline .item:nth-child(even) .text {
    margin-left: 45px;
    margin-right: 0px;
    padding-left: 40px;
    padding-right: 50px;
    max-width: 345px;
}

.vertical-timeline .item:nth-child(odd) .count {
    margin-right: -30px;
}

.vertical-timeline .item:nth-child(odd) .icon {
    justify-content: flex-end;
}

.vertical-timeline .item:nth-child(odd) .timeline-circle:before {
    left: 100%;
}

.vertical-timeline .item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.vertical-timeline .item:nth-child(even) .count {
    margin-left: -30px;
}

.vertical-timeline .item:nth-child(even) .icon {
    justify-content: flex-start;
}

.vertical-timeline .item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
}

.vertical-timeline .item:nth-child(even) .timeline-circle:before {
    right: 100%;
}

.vertical-timeline .icon,
.vertical-timeline .timeline-content {
    flex-basis: calc(50% - 1px);
    transition: 0.5s;
    display: flex;
    align-items: center;
}

.vertical-timeline .timeline-circle {
    position: relative;
    margin: 0px 100px 0px 100px;
}

.vertical-timeline .timeline-circle .circle {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    transition: 0.4s;
    top: calc(50% - 7px);
    left: -7px;
    width: 15px;
    height: 15px;
    background: var(--red-color);
}

.vertical-timeline .timeline-circle:before {
    content: '';
    height: 1px;
    position: absolute;
    top: 50%;
    background-image: linear-gradient(90deg, #c0c8de, #c0c8de 50%, transparent 50%, transparent 100%);
    background-size: 20px 20px;
    width: calc(100px + 30px);
}

.vertical-timeline .timeline-circle:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    transition: 0.4s;
    top: calc(50% - 4px);
    left: -4px;
    width: 9px;
    height: 9px;
    background: #fff;
}

.vertical-timeline .text {
    box-shadow: 6px 7px 20px rgba(0, 0, 0, 0.1);
    margin: 0px 45px 0px 0px;
    padding: 31px 40px 33px 50px;
    background-color: #ffffff;
    max-width: 345px;
}

.vertical-timeline .count {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 68px;
    border-radius: 50%;
    /*flex: 1 0 auto;*/
    color: #fff;
    background: #ff4e4e;
}

@media screen and (max-width: 991px) {
    .vertical-timeline .timeline-circle:before {
        width: calc(100px + -20px);
    }

    .vertical-timeline .text {
        margin: 0;
        padding: 20px 20px 20px 40px;
    }

    .vertical-timeline .count {
        width: 50px;
        height: 50px;
        font-size: 18px;
        line-height: 50px;
    }

    .vertical-timeline .item:nth-child(even) .text {
        margin: 0;
        padding-left: 20px;
        padding-right: 40px;
    }

    .vertical-timeline .timeline-circle {
        margin: 0px 30px 0px 30px;
    }
}

@media screen and (max-width: 767px) {

    .vertical-timeline:before,
    .vertical-timeline:after,
    .vertical-timeline .timeline-items:before {
        left: 10px;
    }

    .vertical-timeline .item:not(:last-child) {
        margin-bottom: 40px;
    }

    .vertical-timeline .timeline-content {
        order: 2;
        flex-basis: 70%;
    }

    .vertical-timeline .icon {
        order: 3;
        flex-basis: 30%;
    }

    .vertical-timeline .text {
        padding: 20px 20px 20px 30px;
    }

    .vertical-timeline .item:nth-child(even) {
        flex-direction: row;
        text-align: left;
    }

    .vertical-timeline .item:nth-child(even) .text {
        padding-left: 30px;
        padding-right: 20px;
    }

    .vertical-timeline .item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
    }

    .vertical-timeline .item:nth-child(even) .count,
    .vertical-timeline .item:nth-child(odd) .count {
        margin-right: -20px;
        margin-left: 0;
    }

    .vertical-timeline .item:nth-child(even) .timeline-content,
    .vertical-timeline .item:nth-child(odd) .timeline-content {
        flex-direction: row;
    }

    .vertical-timeline .item:nth-child(even) .icon,
    .vertical-timeline .item:nth-child(odd) .icon {
        justify-content: center;
    }
}

/* Mark section */

#mark-section {
    padding: 0px 0 80px 0;
}

#mark-section .mark-col {
    padding: 0px;
}

#mark-section .card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 6px;
    position: relative;
    box-shadow: rgb(0 0 0 / 35%) 5px 2px 20px;
    border-radius: 0px;
}

#mark-section .card:hover {
    transform: scale(1.1);
    transition: .6s;
    object-fit: contain;
    box-shadow: 5px 6px 6px 2px #e9ecef;
    z-index: 1;
}

#mark-section .card .fas.fa-arrow-right {
    position: absolute;
    bottom: -100px;
    background-color: var(--red-color-hover);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    opacity: 0;
    transform: translateY(50%);
    transition: all 0.5s ease;
}

#mark-section .card:hover .fas.fa-arrow-right {
    bottom: 0px;
    opacity: 1;
}

#mark-section .card .fab.fa-envira,
#mark-section .fas.fa-cut,
#mark-section .fas.fa-people-carry {
    font-size: 40px;
    background-color: #0000000d;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #4e9525;
}

#mark-section .card .h4 {
    font-weight: 700;
}

#mark-section .container .content {
    max-width: 300px;
}

#mark-section .container .content .h-6 {
    color: #4e9525;
    font-weight: 600;
}

#mark-section .container .content .btn.btn-primary {
    padding: 15px;
    background-color: #4e9525;
    color: white;
    border-radius: 0px;
    border: none;
    box-shadow: none;
}

#mark-section .card:hover .fab.fa-envira,
#mark-section .card:hover .fas.fa-cut,
#mark-section .card:hover .fas.fa-people-carry {
    color: gold;
    background-color: #4e9525;

}

/* Márka szervízek */

#service-mark {
    background-image: url(../images/service-mark-bg.jpg);
    min-height: 420px;
    position: relative;
    padding: 60px 0px 35px;
    background-repeat: repeat;
    background-attachment: fixed;
}

#service-mark .container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

#service-mark h2 {
    position: relative;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 12px;
    text-transform: uppercase;
}

#service-mark h2:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 55px;
    height: 2px;
    background-color: #ff5400;
}

#service-mark .style-text {
    position: relative;
    color: #b0b0b0;
    font-size: 18px;
    line-height: 1.8em;
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

#service-mark .text {
    position: relative;
    color: #cecece;
    font-size: 16px;
    line-height: 1.9em;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

#service-mark a {
    color: #cecece;
    text-decoration: none;
}

#service-mark a:hover {
    color: #8b8b8b;
}

#service-mark img {
    width: 100px;
}

#service-mark .image {
    padding: 14px;
}

#service-mark .image:hover {
    transition: transform .2s, opacity .2s, -webkit-transform .2s;
    transform: scale(1.2);
}

#service-mark .service-box {
    position: relative;
    padding: 0px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

#service-mark .service-box:nth-child(1) {
    border-left: 1px solid transparent !important;
}

#service-mark .company-title {
    margin-top: 46px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

#service-mark .service-btn {
    padding: 10px 52px;
    border: 1px solid white;
    border-radius: 0px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

#service-mark .service-btn:hover {
    border-color: #9e9e9e;
    color: #d4d4d4;
}


/* Team section */
#team-section {
    padding: 80px 0px;
}

/* Used cars section */

#sales-section p {
    font-size: 20px;
}

#sales-section .list-style {
    margin-top: 20px;
    display: inline-block;
}

#sales-section li {
    list-style: none;
    font-size: 20px;
}

#sales-section li i {
    font-size: 14px;
    color: #db2d2e;
    display: inline-block;
    padding-right: 10px;
    padding-bottom: 10px;
}

#sales-section .item {
    padding: 40px 0 40px 0;
}

#sales-section .card {
    border: 0px;
}

#sales-section .card:hover {
    box-shadow: 6px 8px 19px rgb(73 73 73 / 15%);
}

#sales-section .card:hover .card-img-top {}

#sales-section .img-hover-zoom {
    overflow: hidden;
}

#sales-section .img-hover-zoom--basic img {
    transition: transform 1s ease;
    max-width: 100%;
    vertical-align: middle;
}

#sales-section .img-hover-zoom--basic:hover img {
    transform: scale(1.06);
}

#sales-section h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #4e4e4e;
}

#sales-section h4:before {
    content: none;
}

#sales-section h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #707070;
}

#sales-section .card-list {
    background: #ffffff;
    color: #363636;
    overflow: hidden;
    left: 0;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    width: 100%;
    z-index: 2;
    text-align: center;
}

#sales-section .card-list li {
    line-height: 38px;
    color: #999999;
    display: inline-block;
    padding-right: 2px;
    padding-left: 2px;
}


#sales-section .sales-btn {
    color: var(--red-color-hover);
    border-color: var(--red-color);
    background: #fff;
    width: 100%;
    font-weight: 700;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

#sales-section .sales-btn:hover,
#sales-section .card:hover .sales-btn {
    color: #fff;
    background: var(--red-color);
}

#sales-section .allsales-btn {
    padding: 10px 52px;
    border: 1px solid var(--red-color);
    border-radius: 0px;
    color: var(--red-color);
    font-size: 20px;
    font-weight: 600;
}

#sales-section .allsales-btn:hover {
    color: #fff;
    background: var(--red-color);
}

.owl-item {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


.owl-carousel .owl-nav {
    display: block;
    position: absolute;
    text-indent: inherit;
    top: 45%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    left: 0;
    width: 100%;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
}

.owl-carousel .owl-nav .owl-prev {
    display: block;
    position: absolute;
    text-indent: inherit;
    left: 0px;
    width: auto;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
    -moz-transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
    -ms-transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, left 0.3s ease 0s;
}

.owl-carousel .owl-nav .owl-next {
    display: block;
    position: absolute;
    text-indent: inherit;
    right: 0px;
    width: auto;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
    -moz-transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
    -ms-transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, right 0.3s ease 0s;
}

.owl-carousel .owl-nav .owl-prev i {
    padding-left: 0px;
}

.owl-carousel .owl-nav i {
    font-size: 20px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    line-height: 42px;
    padding-left: 2px;
    display: inline-block;
    color: #db2d2e;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    font-weight: normal;
    text-align: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.owl-carousel .owl-nav i:hover {
    background: #db2d2e;
    color: #fff;
    border-color: #db2d2e;
}

.owl-carousel .owl-item img {
    width: auto;
}

.owl-carousel:hover .owl-nav {
    opacity: 1;
}

.owl-carousel:hover .owl-nav .owl-prev {
    left: -2%;
}

.owl-carousel:hover .owl-nav .owl-next {
    right: -2%;
}

.owl-carousel .owl-controls .owl-dot {
    display: inline-block;
    margin-top: 20px;
}

.owl-carousel .owl-dots {
    display: inline-block;
    position: relative;
    text-indent: inherit;
    width: 100%;
    cursor: pointer;
    text-align: center;
}

.owl-carousel.owl-theme .owl-dots .owl-dot {
    margin-top: 20px;
    display: inline-block;
}

.owl-carousel.owl-theme .owl-dots .owl-dot span {
    background: #a5a5a5;
    border-radius: 30px;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0px 3px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #db2d2e;
}

.owl-carousel.owl-theme .owl-dots .owl-dot.active span {
    background: #db2d2e;
    width: 24px;
}

/* Map section */
#map-section {
    padding: 0px 0px 0px 0px;
}

/* Footer */
footer {
    padding: 5em 0;
}

footer a {
    text-decoration: none;
}

footer p {
    color: #c1c1c1;
}

.footer-02 {
    background: #131719;
}

.footer-02 .footer-heading {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-02 .footer-heading .logo {
    color: #fff;
    text-transform: uppercase;
}

.footer-02 a {
    color: #d7d7d7;
}

/*.footer-02 p {
    color: rgba(255, 255, 255, 0.3);
}*/

.footer-02 .copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-02 .list-unstyled li a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-02 .list-unstyled li a:hover {
    color: #fff;
}

.footer-02 .list-unstyled a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-02 .list-unstyled a:hover {
    color: #fff;
}

.footer-02 .subscribe {
    margin-top: -105px;
}

.footer-02 .subscribe-form {
    border-radius: 40px;
    background: #fff;
    padding: 3px;
    -webkit-box-shadow: 0px -12px 21px -15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px -12px 21px -15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px -12px 20px 0px rgb(0 0 0 / 10%);
}

.footer-02 .subscribe-form .form-group {
    position: relative;
    margin-bottom: 0;
    border-radius: 0;
}

.footer-02 .subscribe-form .form-group input {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: rgba(0, 0, 0, 0.3) !important;
    font-size: 16px;
    height: 56px;
    border-radius: 0;
}

.footer-02 .subscribe-form .form-group input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3) !important;
}

.footer-02 .subscribe-form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.footer-02 .subscribe-form .form-group input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.footer-02 .subscribe-form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3) !important;
}

.footer-02 .subscribe-form .form-group input:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.footer-02 .subscribe-form .form-group .submit {
    color: #fff !important;
    display: block;
    width: 150px;
    height: 56px;
    font-size: 14px;
    background: var(--red-color) !important;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 40px;
}

.footer-02 .subscribe-form .form-group .submit:hover,
.footer-02 .subscribe-form .form-group .submit:focus {
    text-decoration: none !important;
    outline: none !important;
}

.footer-02 .social-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1em 0;
}

.footer-02 .social-wrap h3 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-02 .social-wrap {
    margin-right: 10px;
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer-02 .social-wrap {
    color: white;
}

.footer-02 .social-wrap .btn-custom {
    font-size: 14px;
}

.footer-02 .border-left {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

footer ul li {
    list-style: none;
    color: #c1c1c1;
    margin-top: 20px;
}

footer ul li strong {
    font-size: 18px;
    color: #fff;
}

@media (max-width: 1199.98px) {
    .footer-02 .border-left {
        border: none;
    }
}


/* RESPONSIVE */
@media (max-width: 575.98px) {

    body {
        overflow-x: hidden !important;
    }


    #service-mark .company-title {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 32px;
    }

    .footer-ps5 {
        padding-left: 3rem;
    }

    .navbar {
        padding: 20px;
        position: unset;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {}



@media (min-width: 1200px) and (max-width: 1765.98px) {}

@media (min-width: 1400px) and (max-width: 1765.98px) {}

@media (min-width: 1766px) {}



@media only screen and (max-width: 800px) {}