/* -----------------------------------------------------------------------------------

 01. Typography style
 02. Preloader style
 03. Owl-Theme Custom style
 04. Section style
 05. Navbar style
 06. Section style
 07. Header style
 08. Slider style
 09. Parallax Header style
 10. Kenburns SlideShow style
 11. Video Background style
 12. Banner Header style
 13. About style 
 14. Team style
 15. Team Single style
 16. Services style
 17. Services 2 style
 18. Services 3 style
 19. Services Box style
 20. Services Sidebar style
 21. Services Single style
 22. Pricing style
 23. Pricing Table style
 24. Process style
 25. Image Gallery style
 26. Video Gallery style
 27. Video Popup style
 28. Accordion Box (for Faqs) style
 29. Clients style
 30. Testimonials style
 31. Help style
 32. Booking style
 33. Blog style
 34. Blog 2 style
 35. Post style
 36. Contact style
 37. 404 style
 38. Button style
 39. Footer style
 40. toTop Button style
 41. Responsive (Media Query)
 42. Overlay Effect Bg image
 
----------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


/* ======= Typography style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;@import url('https://fonts.googleapis.com/css2?family=Quicksand:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #999;
    overflow-x: hidden !important;
    /* background: #101010; */
}
p {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6em;
    color: #999;
    margin-bottom: 15px;
}
h1 {
    font-size: 60px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ubuntu';
    font-weight: 700;
    line-height: 1.5em;
    margin: 0 0 15px 0;
    color: #101010;
}
img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
b {
    font-weight: 700;
    color: #101010;
}
/* text field */
button,
input,
optgroup,
select,
textarea {
    font-family: 'Syne', sans-serif;
}
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}
input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #999;
    background-image: none;
    border: 2px solid rgba(255,255,255, 0.1);
    border-radius: 5px;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background: #101010;
    border: none;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    color: #999;
    border: none;
}
select {
    padding: 10px;
    border-radius: 5px;
}

textarea:focus,
textarea:active,
textarea::placeholder {
    color: #999;
}
table,
th,
tr,
td {
    border: 0px solid #999;
}
th,
tr,
td {
    padding: 10px;
}
input[type="radio"],
input[type="checkbox"] {
    display: inline;
}
/* submit and alert success  */
input[type="submit"] {
    display: inline-block;
    height: auto;
    padding: 14px 28px;
    border: 2px solid #a33c2d;
    border-radius: 0;
    background-color: #d3071f;
    -webkit-transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
    transition: border-color 400ms ease, color 400ms ease, background-color 400ms ease;
    color: #fff;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
}
input[type="submit"]:hover {
    border: 2px solid #fff;
    background-color: #fff;
    color: #101010;
}
.alert-success {
    background: transparent;
    color: #fff;
    border: 2px solid #d3071f;
    border-radius: 0px;
}
/* placeholder */
::-webkit-input-placeholder {
    color: #999;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
:-moz-placeholder {
    color: #999;
}
::-moz-placeholder {
    color: #999;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #999;
}
/* Important */
.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.bg-red {
    background: #d3071f;
}
.bg-navy {
    background: #101010;
}
.bg-gray {
    background-color: #F4F5F7;
}
.bg-white {
    background-color: #fff;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 700;
}
.count {
    font-family: 'Syne', sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    z-index: 9;
}
.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
    z-index: 9;
}
.js .animate-box {
    opacity: 0;
}
:root {
    scroll-behavior: auto;
}
.position-relative {
    position: relative !important;
}
.bp-bottom {
background-position: bottom;
}
.bp-top {
background-position: top;
}
.bp-center {
background-position: center;
}
hr {
    margin-top: 5px;
    margin-bottom: 15px;
    border: 0;
}
.mt-15 {
    margin-top: 15px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mt-45 {
    margin-top: 45px !important;
}
.mt-60 {
    margin-top: 60px !important;
}
.mt-90 {
    margin-top: 90px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-30 {
    /* line-height: 24px; */
    margin-bottom: 30px !important;
}
.mb-60 {
    margin-bottom: 60px !important;
}
.mb-90 {
    margin-bottom: 90px !important;
}
.mb-120 {
    margin-bottom: 120px !important;
}
.pt-60 {
    padding-top: 60px !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.no-padding {
    padding: 0 !important;
}
/* list */
.list {
    position: relative;
    display: block;
}
.list li {
    position: relative;
    display: flex;
    align-items: center;
}
.list li + li {
    margin-top: 10px;
}
.list-icon {
    display: grid;
}
.list-icon span {
    font-size: 14px;
    color: #d3071f;
    background-color: transparent;
    text-align: center;
}
.list-text {
    margin-left: 15px;
}
.list-text p {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    color: #fff;
}
/* vertical line */
.line-vr-section {
    position: relative;
    margin: -25px auto;
    border: 0;
    border-left: 2px solid;
    border-color: #a33c2d;
    width: 2px;
    height: 50px;
    z-index: 10;
    opacity: 1;
}
/* image grayscale */
.img-grayscale img {
    -webkit-filter: grayscale(90%);
    -webkit-transition: .4s ease-in-out;
    -moz-filter: grayscale(90%);
    -moz-transition: .4s ease-in-out;
    -o-filter: grayscale(90%);
    -o-transition: .4s ease-in-out
}
.img-grayscale:hover img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%)
}

/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #101010;
    z-index: 10000009;
}
#preloader {
    display: table;
    table-layout: fixed;
}
#preloader-status {
    display: table-cell;
    vertical-align: middle;
}
.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.loader {
    position: relative;
    width: 65px;
    height: 65px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 2px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 2px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.loader span {
    position: absolute;
    width: 65px;
    height: 65px;
    top: -2px;
    left: -2px;
    border: 2px solid transparent;
    border-top: 2px solid #d3071f;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ======= Owl-Theme Custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
    line-height: .7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    margin: 0 3px;
    border-radius: 50%;
    background: #ececec;
    border: 1px solid #ececec;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #d3071f;
    border: 2px solid #d3071f;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    background: transparent;
}
/* owl-nav next and prev */
.owl-nav {
    position: absolute;
    bottom: 5%;
    right: 12%;
}
.owl-prev {
    float: left;
}
.owl-next {
    float: right;
}
/* owl-theme owl-nav */
 .owl-theme .owl-nav {
    position: absolute!important;
    top: 45%!important;
    bottom: auto!important;
    width: 100%
}
 .owl-theme .owl-nav{
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
 .owl-theme .owl-prev,
 .owl-theme .owl-prev {
    left: 10px!important
}
 .owl-theme .owl-next {
    right: 10px!important
}
 .owl-theme .owl-prev>span,
 .owl-theme .owl-next>span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
 .owl-theme .owl-nav [class*=owl-] {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #d3071f;
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    margin-right: 30px;
    margin-left: 30px;
    cursor: pointer;
    border: 2px solid #d3071f;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
    border-radius: 5px;
}
 .owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #06182d;
}
 .owl-theme .owl-nav {
    top: 35% !important;
}
 .owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}
 .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}
@media screen and (max-width: 768px) {
     .owl-theme .owl-dots .owl-dot,
     .owl-theme .owl-nav {
        display: none;
    }
}

/* ======= Section style ======= */
.section-padding {
    padding: 60px 0;
}
.section-title {
    font-size: 48px;
    font-family: 'Syne', sans-serif;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.25em;
    font-weight: 700;
}
.section-title span {
    color: #a33c2d;
}
.section-title.white {
    color: #fff;
}
.section-title.black {
    color: #101010;
}
.section-title2 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}
.section-title2::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #d3071f;
    z-index: -1;
}
.section-title3 {
    font-size: 16px;
    line-height: 16px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    z-index: 1;
}
.section-title3.white {
    color: #fff;
}
.section-title3::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #a33c2d;
    z-index: -1;
}
.section-title3.white::before {
    background-color: #d3071f;
}


/* ======= Cursor & Drag style  ======= */
.cursor {
  position: fixed;
  top: -40px;
  left: -40px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor:before {
  content: "";
  width: 75px;
  height: 75px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  transition: all ease 0.15s;
  transform: scale(0.15);
}
.cursor.light:before {
  transform: scale(1);
  background: transparent;
}
.cursor.drag {
  mix-blend-mode: unset;
}
.cursor.drag:before {
  transform: scale(1);
  background: #d3071f;
  border-color: transparent;
}
.cursor.drag:before {
  content: "\e658";
  font-family: "Themify";
  font-size: 20px;
  color: #fff;
}
.line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* ======= Navbar style ======= */
.navbar {
    /* position: absolute; */
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 100px;
    border: none;
}

.navbar .container {
    border: none;
}
.nav-scroll .container {
    border: none;
}
.navbar-toggler-icon {
    background-image: none;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #000000;
}
.navbar .navbar-nav .nav-link {
    font-family: 'Quicksand';
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 1px;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 6px;
    padding-left: 7px;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: #101010;
}
.navbar .navbar-nav .nav-link:hover {
    color: #d3071f;
}
.navbar .navbar-nav .nav-link:hover i {
    color: #d3071f;
}
.navbar .navbar-nav .active {
    color: #0d6efd !important;
}
.navbar .navbar-nav .active i {
    color: #d3071f;
}

.nav-scroll {
    background: #fff;
    padding: 0 0 0 0;
    /* position: fixed; */
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    border: none;
}

.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: #101010;
}
.nav-scroll .navbar-nav .nav-link {
    color: #101010;
}
.nav-scroll .navbar-nav .active {
    color: #d3071f;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #101010;
}
.nav-scroll .logo-img {
    width: 180px;
}
.nav-scroll .logo-img {
    margin-bottom: 0px;
}
.nav-scroll .logo-wrapper .logo h2 {
    font-family: 'Syne', sans-serif;
    font-size: 30px;
    font-weight: 800;
    display: block;
    width: 100%;
    position: relative;
    color: #101010;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.25em;
    text-transform: uppercase;
}
.nav-scroll .logo-wrapper .logo span {
    color: #d3071f;  
}
.nav-scroll .logo-wrapper {}
.logo-wrapper {
    float: left;
}
.logo-wrapper .logo h2 {
    font-family: 'Syne', sans-serif;
    font-size: 30px;
    font-weight: 800;
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.25em;
    text-transform: uppercase;
}
.logo-wrapper .logo h2 span {
    color: #d3071f;
}
.logo {
    padding: 0;
}
.logo-img {
    width: 230px;
    text-align: center;
}
.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: #000;
}
.nav-scroll .dropdown .nav-link i {
    color: #999;
}
.nav-scroll .navbar-nav .active i {
    color: #d3071f;
}
.navbar .dropdown-menu .dropdown-item {
    padding: 7px 0;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101010;
    position: relative;
    background-color: transparent;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
    color: #101010;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: #d3071f;
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu {
    box-shadow: 0 16px 50px rgb(27 27 27 / 7%);
}
.navbar .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}
/* li hover */
.navbar .dropdown-menu li {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.navbar .dropdown-menu li:hover {
  padding-left: 5px;
}

.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}

/* navbar-right */
.navbar .navbar-right {
    position: relative;
    display: flex;
    align-items: center;
}
.navbar .navbar-right .wrap {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
    margin-left: 30px;
}
.navbar .navbar-right .wrap .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background-color: #a33c2d;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .navbar-right .wrap .icon:hover {
    background-color: #fff;
    color: #d3071f;
        -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .navbar-right .wrap .text {
    margin-left: 10px;
    top: 3px;
    position: relative;
}
.navbar .navbar-right .wrap .text p {
    font-size: 14px;
    line-height: 12px;
    color: #000;
    margin-bottom: 4px;
}
.navbar .navbar-right .wrap .text h5 {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #000;
    margin-bottom: 5px;
}
.navbar .navbar-right .wrap .text h5 a {
    color: #000;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .navbar-right .wrap .text h5 a:hover {
    color: #d3071f;
}
.nav-scroll .navbar-right .wrap .text p,
.nav-scroll .navbar-right .wrap .text h5,
.nav-scroll .navbar-right .wrap .text h5 a {
    color: #101010;
}
/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 220px;
        padding: 15px 25px;
        border-radius: 5px;
        border: 0;
        background-color: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -10px;
        right: auto;
        min-width: 190px;
        transform: translateY(0);
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
@media screen and (max-width: 991px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        /* background: transparent; */
        padding-top: 0px;
        padding-bottom: 0px;
        height: 85px;
    }
    .nav-scroll {
        background: #fff;
    }
    .logo-wrapper {
        float: left;
        padding: 28.5px 15px;
    }
    .nav-scroll .logo-wrapper {
        padding: 28.5px 15px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 180px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .nav-scroll .logo {}
    .logo-img {
        margin-bottom: 0px;
        width: 180px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: #fff;
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: #fff !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: #d3071f !important;
    }
    .navbar .dropdown-menu .dropdown-item {
        color: #fff;
        padding: 0 15px;
        font-size: 16px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 13px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #101010;
        box-shadow: none;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .navbar .navbar-nav {
        padding: 20px;
    }
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #101010;
        text-align: left;
    }
    .dropdown .nav-link i {
        color: rgba(255, 255, 255, 0.5);
    }
    .nav-scroll .dropdown .nav-link i {
        color: rgba(255, 255, 255, 0.5);
    }
    .nav-scroll .dropdown .nav-link.active i {
        color: #d3071f;
    }
    .navbar .dropdown-menu .dropdown-item i {
    color: #fff;
    }
    .navbar .navbar-right {
        display: none;
    }
}


/* ======= Header style ======= */
.header {
    height: 100vh;
    overflow: hidden;
}
.header .caption .o-hidden {
    display: inline-block;
}
.header .caption h6 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.header .caption h6:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #d3071f;
    z-index: -1;
}
.header .caption h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    position: relative;
    line-height: 1.25em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}
.header .caption h1 span {
    position: relative;
    color: #d3071f;
    display: inline-block;
    
}
.header .caption[data-overlay-dark] p {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 30px;
    color: #fff;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.header .caption .button-1,
.header .caption .button-2,
.header .caption .button-3 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 16px;
}




/* ======= Slider style ======= */
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider-fade .item .caption {
    z-index: 9;
}
/* owl-theme owl-dots */
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 7vh;
    width: 100%;
}
.slider-fade .owl-theme .owl-dots .owl-dot span {
    border: 1px solid #fff;
}
.slider-fade .owl-theme .owl-dots .owl-dot.active span,
.slider-fade .owl-theme .owl-dots .owl-dot:hover span {
    background: #d3071f;
    border: 2px solid #d3071f;
}
/* owl-theme owl-nav */
.slider-fade .owl-theme .owl-nav {
    position: absolute!important;
    top: 45%!important;
    bottom: auto!important;
    width: 100%
}
.slider-fade .owl-theme .owl-nav{
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slider-fade .owl-theme .owl-prev,
.slider-fade .owl-theme .owl-prev {
    left: 10px!important
}
.slider-fade .owl-theme .owl-next {
    right: 10px!important
}
.slider-fade .owl-theme .owl-prev>span,
.slider-fade .owl-theme .owl-next>span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.slider-fade .owl-theme .owl-nav [class*=owl-] {
    width: 45px;
    height: 45px;
    line-height: 37px;
    background: #d3071f;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    margin-right: 30px;
    margin-left: 30px;
    cursor: pointer;
    border: 2px solid #d3071f;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.slider-fade .owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #101010;
}
.slider-fade .owl-theme .owl-nav {
    top: 40% !important;
}
.slider-fade .owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}
.slider-fade .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}
@media screen and (max-width: 768px) {
    .slider-fade .owl-theme .owl-nav {
        display: none;
    }
}


/* ======= Parallax Header style ======= */
.parallax-header {
    background-position: center;
    /* height: 100vh; */
    /* background-image: url(img/slider/1.jpg); */
    padding: 50px 0px 160px;
    background-color: #000;
}
.parallax-header h6 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
    background: #a33c2d;
    padding: 0px 10px;
    border-radius: 3px;
}
.parallax-header h6:before {
    /* content: ""; */
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #0d6efd;
    z-index: -1;
}
.parallax-header h1 {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    position: relative;
    line-height: 1.25em;
    text-transform: uppercase;
}
.parallax-header h1 span {
    position: relative;
    color: #d3071f;
    display: inline-block;
}
.parallax-header[data-overlay-dark] p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.parallax-header .button-1,
.parallax-header .button-2,
.parallax-header .button-3 {
    font-size: 16px;
}


/* ===== Kenburns SlideShow style ===== */
.kenburns-section {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
}
.kenburns-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background: #101010;
}
.kenburns-inner {
    position: relative;
    z-index: 15;
}
.kenburns-inner .caption {
    position: relative;
}
.kenburns-inner .caption h6 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}
.kenburns-inner .caption h6:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #d3071f;
    z-index: -1;
}
.kenburns-inner .caption h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    position: relative;
    line-height: 1.25em;
    margin-bottom: 0;
}
.kenburns-inner .caption h1 span {
    position: relative;
    color: #d3071f;
    display: inline-block;
}
.kenburns-inner .caption[data-overlay-dark] p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

#kenburnsSliderContainer .vegas-overlay {
    outline: none;
}
@media screen and (max-width: 767px) {
    .kenburns-inner .caption h6 {
        font-size: 14px;
    }
    .kenburns-inner .caption h1 {
        font-size: 36px;
    }
    .kenburns-inner .caption {
        text-align: center;
    }
}


/* =======  Video Background style  ======= */
.video-fullscreen-wrap {
  height: 100vh;
  overflow: hidden;
}
.video-fullscreen-video {
    height: 100%;
}
.video-fullscreen-wrap video {
  width: 100vw;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-fullscreen-wrap .video-fullscreen-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: right;
    
}
.video-lauch-wrapper {
  border: none;
  background: none;
  width: 100%;
  padding: 0;
}
.position-relative {
  position: relative !important;
}
.video-fullscreen-wrap h6 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}
.video-fullscreen-wrap h6:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #d3071f;
    z-index: -1;
}
.video-fullscreen-wrap h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    position: relative;
    line-height: 1.25em;
}
.video-fullscreen-wrap h1 span {
    position: relative;
    color: #d3071f;
    display: inline-block;
}
.video-fullscreen-wrap[data-overlay-dark] p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.video-fullscreen-wrap .button-1,
.video-fullscreen-wrap .button-2,
.video-fullscreen-wrap .button-3 {
    font-size: 16px;
}


/* ======= Banner Header style ======= */
.banner-header {
    /* height: 65vh; */
    background-position: center;
}
.banner-header.full-height {
    min-height: 100vh;
}
.banner-header h6 {
    font-size: 16px;
    line-height: 16px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    z-index: 1;
}
.banner-header h6::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #d3071f;
    z-index: -1;
}
.banner-header h1 {
    font-size: 48px;
    color: #101010;
    position: relative;
    line-height: 1.25em;
    margin-bottom: 0;
}
.banner-header h1 span {
    color: #d3071f;
}
.banner-header p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    color: #101010;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.banner-header .post-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #101010;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
}
.banner-header .post-wrapper a {
    color: #fff;
    font-size: 14px;
}
.banner-header .post-wrapper .divider {
    width: 20px;
    height: 1px;
    margin-right: 15px;
    margin-left: 15px;
    background-color: #d3071f;
}
@media screen and (max-width: 767px) {
    .banner-header h1 {
        font-size: 36px;
    }
}


/* ======= About style ======= */
.about {
    position: relative;
    background: #fff;
    padding-bottom: 50px;
}
.about-two-img {
  position: relative;
}
.about-two-img .img1,
.about-two-img .img2 {
  width: 80%;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 50px rgba(37,46,89, 0.1);
  box-shadow: 0px 0px 50px rgba(37,46,89, 0.1);
  overflow: hidden;
}
.about-two-img .img2 {
    margin-left: 20%;
    margin-top: -30%;
    position: relative;
    padding: 10px 0 0 10px;
}

.about-two-img .img2:before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    bottom: 0px;
    background-color: #101010;
}
.about-two-img .img2 .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.about-two-img .img2 .play-button .btn {
    border-radius: 50%;
    background: #d3071f;
    line-height: 98px;
    height: 98px;
    width: 98px;
    cursor: pointer;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0.08, 0, 0.97);
    -o-transition-timing-function: cubic-bezier(0.4, 0.08, 0, 0.97);
    transition-timing-function: cubic-bezier(0.4, 0.08, 0, 0.97);
    color: #d3071f;
    /* border: 2px solid #d3071f; */
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    display: inline-block;
}
.about-two-img .img2 .play-button i {
    font-size: 36px;
    color: #fff;
}
.about-two-img .img2 .play-button svg {
  position: absolute;
  left: 0;
  top: 0;
}
.about-two-img .img2 .play-button .circle {
  stroke-dasharray: 301.59px 301.59px;
  stroke-dashoffset: 301.59px;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0.08, 0, 0.97);
  -o-transition-timing-function: cubic-bezier(0.4, 0.08, 0, 0.97);
  transition-timing-function: cubic-bezier(0.4, 0.08, 0, 0.97);
}
.about-two-img .img2 .play-button .btn:hover .circle {
  stroke-dashoffset: 0;
}
.about-two-img .award-icon {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.about-two-img .award-icon .star .img {
  width: 70px;
  position: relative;
  margin: 0 auto 10px;
}
.about-two-img .award-icon .star .img .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    font-size: 30px;
    padding-top: 5px;
}
.about-two-img .award-icon h6 {
    font-size: 24px;
    color:#101010;
    margin-bottom: 0;
}
.about-two-img .award-icon p {
    color: #777;
    margin-bottom: 0;
}


/* ======= Team style ======= */
.team {
    position: relative;
}
.team:before {
    top: auto;
    bottom: 0;
    height: 45%;
    background: #fff;
}
.team:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 55%;
    width: 100%;
    background: #101010;
    z-index: 1;
}
.team .container {
    position: relative;
    z-index: 2;
}
.team .item {
    border-radius: 5px;
}
.team .item .team-img {
    -webkit-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
    border-radius: 5px;
}
.team .item .team-img:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.team .item .team-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.team .item .con {
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    bottom: 50px;
    z-index: 2;
    background-color: #fff;
    padding: 25px 20px;
    opacity: 1;
    visibility: visible;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    width: auto;
}
.team .item:hover .con {
    background: #d3071f;
}
.team .item:hover .con h5 {
  transform: translateX(10px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.team .item .con .arrow {
    position: relative;
    display: block;
    top: 0px;
    transform: translateY(-66%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
}
.team .item:hover .con .arrow {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}
.team .item .con .arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 5px;
}
.team .item .con .arrow a:hover {
    background: #fff;
    color: #d3071f;
}
.team .item .con h5 {
    font-size: 20px;
    color: #101010;
    font-weight: 700;
    line-height: 1.25em;
}
.team .item .con h5 span {
    font-size: 16px;
    color: #777;
    text-transform: none;
    font-weight: 400;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0;
}
.team .item:hover .con h5,
.team .item:hover .con h5 span {
    color: #fff;
}

/* ======= Team-Single style ======= */
.team-single h6 {
    font-size: 24px;
    color: #fff;
}
/* img */
.team-single .team-img img:hover {
    transform: scale(0.99);
}
.team-single .team-img {
    position: relative;
}
.team-single .team-img .img img {
    position: relative;
    z-index: 2;
}
/* team-single list */
.team-single .list {
    position: relative;
    display: block;
}
.team-single .list li {
    position: relative;
    display: flex;
    align-items: center;
}
.team-single .list li + li {
    margin-top: 10px;
}
.team-single .list-icon {
    align-items: center;
}
.team-single .list-icon span {
    font-size: 14px;
    color: #d3071f;
    background-color: transparent;
}
.team-single .list-text {
    margin-left: 15px;
}
.team-single .list-text p {
    font-size: 16px;
    margin: 0;
    color: #fff;
}
/* team-single details */
.team-single .wrapper {
    position: relative;
}
.team-single .wrapper .cont {
    width: 100%;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.team-single .wrapper .cont .coll {
    width: auto;
    max-width: auto;
}
.team-single .wrapper .cont .coll h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    white-space: normal;
    margin: 0;
    color: #101010;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0;
}
.team-single .wrapper .cont .coll h5 {
    font-size: 16px;
    font-weight: 400;
    white-space: normal;
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
    transition: color .3s;
    color: #101010;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0;
}
/* team-single social */
.team-single .wrapper .cont .coll .social-icon {
    text-align: center;
    margin-bottom: 0px;
}
.team-single .wrapper .cont .coll .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    border: 2px solid #d3071f;
    color: #fff;
    border-radius: 0;
    margin-right: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    background: transparent;
    border-radius: 5px;
}
.team-single .wrapper .cont .coll .social-icon a:hover {
    border: 2px solid #d3071f;
    background: #d3071f;
    color: #fff;
}
.team-single .wrapper .cont .coll p {
    color: #999;
}
/* team-single link */
.team-single .wrapper p a {
    background: linear-gradient(to bottom, #d3071f 0%, #d3071f 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 2px 2px;
    color: #fff;
    text-decoration: none;
    transition: background-size .2s;
}
.team-single .wrapper p a:hover {
    color: #fff;
}
/* team-single tabs */
.team-single .con .simpl-bord.nav-tabs {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #d3071f;
    ;
}
.team-single .con .simpl-bord .nav-item {
    margin-right: 30px;
}
.team-single .con .simpl-bord .nav-item:last-of-type {
    margin-right: 0;
}
.team-single .con .simpl-bord .nav-link {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent !important;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-family: 'Syne', sans-serif;
}
.team-single .con .simpl-bord .nav-link.active {
    font-weight: 700;
    color: #d3071f;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
}
.team-single .tab-content p {
    color: #999;
}


/* ======= Process style ======= */
.process {
    position: relative;
    background-color: #fff !important;
}
.process:before {
    top: auto;
    bottom: 0;
    height: 45%;
    background: #fff;
}
.process:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 55%;
    width: 100%;
    /* background: #101010; */
    z-index: 1;
}
.process .container {
    position: relative;
    z-index: 2;
}
.process .item {
    background: #fff;
    padding: 45px 20px 60px 20px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px 1px rgb(0 0 0 / 16%);
    transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 15px;
}
.process .item.active {
    background: #a33c2d;
    -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
}
.process .item:hover {
    background: #a33c2d;
    -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.process .item h5 {
    font-size: 24px;
    color: #101010;
    line-height: 1.25em;
}
.process .item.active h5 {
    color: #fff
}
.process .item:hover h5 {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}
.process .item p {
    color: #292929;
    font-size: 16px;
    /* font-weight: 400; */
}
.process .item.active p {
    color: #fff;
}
.process .item:hover p {
    color: #fff;
}
.process .item span {
    font-size: 50px;
    color: #a33c2d;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
}
.process .item.active span {
    color: #fff;
}
.process .item:hover span {
    color: #fff;
}
.process .item .numb {
    font-size: 75px;
    font-weight: 700;
    position: absolute;
    bottom: 18px;
    right: 14px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0,0,0,0.3);
    opacity: .2;
}
.process .item.active .numb {
    -webkit-text-stroke: 2px rgba(255,255,255,0.9);
}
.process .item:hover .numb {
    -webkit-text-stroke: 2px rgba(255,255,255,0.9);
}



/* ======= Services 1 style ======= */
.services1 {
    overflow: hidden;
    background: #222327;
}
.services1 .item {
    margin-bottom: 10px;
}
.services1 .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
.services1 .wrap img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);

}

.services1 .wrap .wrapper-img {
  position: relative;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
.services1 .wrap .wrapper-img img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  opacity: 1;
}
.services1 .wrap:hover .wrapper-img img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  opacity: 1;
  transform: scale(1.1);
}


.services1 .wrap:hover .wrapper-title {
  opacity: 1;
  transform: translateX(0px);
}
.services1 .wrapper-title {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.services1 .wrapper-title h4 {
  font-size: 24px;
  margin-bottom: 0;
  color: #fff;
}
.services1 .wrapper-title h6 {
    font-size: 24px;
    line-height: 20px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    z-index: 1;
}
.services1 .wrapper-title h6::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #d3071f;
    z-index: -1;
}
.services1 .wrapper-title h4.fz-20,
.services1 .wrapper-title h6.fz-20 {
    font-size: 20px;
}

/* ======= Services 2 style  ======= */
.services2 {
    position: relative;
}
.services2 .item {
    position: relative;
    margin-bottom: 90px;
}
.services2 .item:last-child {
    margin-bottom: 15px;
}
.services2 .item figure {
    margin: 0;
    position: relative;
    width: 66.666667%;
    margin-left: auto;
}
.services2 .item.left figure {
    margin-left: 0;
    margin-right: auto;
}
.services2 .item figure img:hover {
    transform: scale(0.98);
}
.services2 .item .caption {
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    width: 50%;
    padding: 45px;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-radius: 5px;
    overflow: hidden;
}
.services2 .item.left .caption {
    left: auto;
    right: 0;
    background: #fff;
    padding: 45px;
    border-radius: 5px;
}
.services2 .item .caption h5 {
    font-size: 27px;
    line-height: 1.25em;
    color: #101010;
}
.services2 .item .caption p {
    color: #777;
    margin-bottom: 20px;
}
.services2 .item .numb {
    font-size: 120px;
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    right: -10px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0,0,0,0.3);
    opacity: .2;
}
@media screen and (max-width: 991px) {
    .services2 .item figure {
        width: auto;
        margin: 0;
    }
    .services2 .item.left .caption,
    .services2 .item .caption {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        padding: 30px 20px;
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    .services2 .item .numb {
        display: none;
    }
}


/* ======= Services 3 style ======= */
.services3 {
    overflow: hidden;
}
.services3 .card {
    position: relative;
    border-radius: 0px;
    transition: 0.7s;
    border: none;
    margin-bottom: 30px;
    background: transparent;

}
.services3 .card .card-inner {
    transition: 0.7s;
    z-index: 10;
    text-align: center;
    padding: 60px 30px 30px 30px;
    background: #fff;
    border-radius: 5px;
}
.services3 .card .card-inner .card-box {
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.services3 .card .card-inner .icon-size-1 {
    color: #d3071f;
    font-size: 60px;
    transition: 0.7s;
}
.services3 .card .card-inner .icon-size-2 {
    color: #101010;
    font-size: 18px;
    opacity: 0;
    transition: 0.7s;
}
.services3 .card .card-inner .card-title {
    position: relative;
    margin-bottom: 15px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #101010;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.services3 .card .card-inner .card-box .font-text {
    color: #777;
}
.services3 .card .card-inner.icon-size {
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.services3 .card .card-inner .card-img {
    margin-bottom: 20px;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.services3 .card .card-inner:hover {
    background: #d3071f;
}
.services3 .card .card-inner:hover .icon-size {
    color: #fff;
}
.services3 .card .card-inner:hover .card-title {
    color: #fff;
    transform: translateY(-5px);
}
.services3 .card .card-inner:hover .card-title:after {
    background: #d3071f;
}
.services3 .card .card-inner:hover .font-text {
    color: #fff;
}
.services3 .card .card-inner:hover .icon-size-1 {
    transform: translateY(-15px);
}
.services3 .card .card-inner:hover .icon-size-2 {
    opacity: 1;
}
.services3 .card .card-inner:hover .card-box {
    transform: translateY(-25px);
}
.services3 .card .card-inner:hover .card-img {
    transform: translateY(-5px);
}


/* ======= Services Sidebar style ======= */
.sidebar .sidebar-widget {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.sidebar .sidebar-widget:last-child {
    margin-bottom: 0px;
}
.sidebar .sidebar-widget .widget-inner {
    position: relative;
    display: block;
    padding: 45px;
    background: #fff;
    border-radius: 5px;
    margin-top: -225px;
    z-index: 9;
}
.sidebar-title {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 2px solid #d3071f;
    padding-bottom: 10px;
}
.sidebar-title h4 {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 30px;
    color: #101010;
    margin-bottom: 0px;
    
}
.sidebar .services ul {
    position: relative;
    padding-left: 0;
}
.sidebar .services ul li {
    position: relative;
    line-height: 50px;
    color: #101010;
    margin-bottom: 5px;
}
.sidebar .services ul li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    right: -20px;
    bottom: 0;
    background: #d3071f;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebar .services ul li:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -12px;
    height: 24px;
    border-left: 2px solid var(--thm-base);
    opacity: 0;
    transition: all 0.3s ease;
}
.sidebar .services ul li:last-child {
    margin-bottom: 0;
}
.sidebar .services ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #101010;
    transition: all 0.3s ease;
    z-index: 1;
}
.sidebar .services ul li:hover a,
.sidebar .services ul li.active a {
    color: #fff;
}
.sidebar .services ul li:hover:before,
.sidebar .services ul li.active:before,
.sidebar .services ul li:hover:after,
.sidebar .services ul li.active:after {
    opacity: 1;
}
.sidebar .services ul li a:after {
    position: absolute;
    right: 0;
    top: 0;
    content: '\f105';
    font-family: 'FontAwesome';
    opacity: 1;
    font-size: 14px;
    font-weight: normal;
    z-index: 1;
    font-style: normal;
}
.sidebar .services ul li a:hover:before,
.sidebar .services ul li.active a:before {
    opacity: 1;
    transform: scaleX(1);
    transition: all 0.3s ease 0.1s;
}


/* ======= Services Single style ======= */
.services-single h5 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}
.services-single h5 span {
    color: #d3071f;
}
/* services-single list */
.services-single .list {
    position: relative;
    display: block;
}
.services-single .list li {
    position: relative;
    display: flex;
    align-items: center;
}
.services-single .list li + li {
    margin-top: 10px;
}
.services-single .list-icon {
    align-items: center;
}
.services-single .list-icon span {
    font-size: 14px;
    color: #d3071f;
    background-color: transparent;
}
.services-single .list-text {
    margin-left: 15px;
}
.services-single .list-text p {
    font-size: 16px;
    margin: 0;
    color: #fff;
}


/* ======= Pricing style ======= */
.pricing {
    position: relative;
}
.pricing .item {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.pricing .item .cont {
    position: relative;
    margin: 0;
    padding: 60px 30px;
    background: #fff;
    border-radius: 5px;
}
.pricing .item .cont h1 {
    font-family: 'Barlow', sans-serif;
    font-size: 60px;
    line-height: 1.25em;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    color: #101010;
    display: inline-flex;
}
.pricing .item .cont .price-price {
    position: relative;
}
.pricing .item .cont sup {
    position: absolute;
    font-size: 16px;
    top: 20px;
}
.pricing .item .cont h1 span {
    font-size: 14px;
    padding-left: 10px;
    font-weight: 400;
    color: #777;
}
.pricing .item .cont h5 {
    font-size: 24px;
    margin-bottom: 0;
    color: #101010;
    line-height: 1.25em;
    
}
.pricing .item .price-features {
    margin-bottom: 20px;
    border-top: 2px solid #f6f6f6;
    padding: 20px 0 0 0;
}
.pricing .item .price-features p {
    margin-bottom: 10px;
    color: #777;
}
.pricing .item .price-features p .icon {
    margin-right: 10px;
    color: #d3071f;
    font-size: 14px;
}
.pricing .item .cont .numb {
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    bottom: 10px;
    right: -5px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0,0,0,0.3);
    opacity: .2;
}


/* ======= Pricing Table style ======= */
.pricing-table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
}
.pricing-table {
    min-width: 320px;
    width: 100%;
    border: 2px solid rgba(255,255,255,0.05);
}
.pricing-table thead tr td,
.pricing-table tbody tr td,
.pricing-table thead tr th,
.pricing-table tbody tr th {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    border: none;
}
.pricing-table thead tr td:nth-child(1),
.pricing-table tbody tr td:nth-child(1),
.pricing-table thead tr th:nth-child(1),
.pricing-table tbody tr th:nth-child(1) {
    width: 49%;
    padding-left: 38px;
    padding-right: 25px;
}
.pricing-table thead tr td:nth-child(2),
.pricing-table tbody tr td:nth-child(2),
.pricing-table thead tr th:nth-child(2),
.pricing-table tbody tr th:nth-child(2) {
    width: 30%;
}
.pricing-table thead tr td:nth-child(3),
.pricing-table tbody tr td:nth-child(3),
.pricing-table thead tr th:nth-child(3),
.pricing-table tbody tr th:nth-child(3) {
    width: 21%;
    padding-left: 38px;
    padding-right: 38px;
}
.pricing-table thead tr {
    background-color: #d3071f;
    border: 2px solid #d3071f;
}
.pricing-table thead tr th {
    font-weight: 700;
    text-align: left;
    padding-top: 25px;
    padding-bottom: 25px;
    font-family: 'Syne', sans-serif;
    color: #fff;
    font-size: 18px;
}
.pricing-table thead tr th:last-child {
    background-color: #d3071f;
}
.pricing-table tbody tr:not(:last-child) {
    border-bottom: 2px solid rgba(255,255,255,0.05);
}
.pricing-table tbody tr td {
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #999;
}
.pricing-table tbody tr td:last-child {
    color: #999;
}
@media (max-width: 1200px) {
    .pricing-table thead tr td:nth-child(3),
    .pricing-table tbody tr td:nth-child(3),
    .pricing-table thead tr th:nth-child(3),
    .pricing-table tbody tr th:nth-child(3) {
        width: 21%;
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (max-width: 991px) {
    .pricing-table thead tr td,
    .pricing-table tbody tr td,
    .pricing-table thead tr th,
    .pricing-table tbody tr th {
        font-size: 14px;
        line-height: 19px;
    }
    .pricing-table thead tr td:nth-child(1),
    .pricing-table tbody tr td:nth-child(1),
    .pricing-table thead tr th:nth-child(1),
    .pricing-table tbody tr th:nth-child(1) {
        width: 45%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .pricing-table thead tr td:nth-child(2),
    .pricing-table tbody tr td:nth-child(2),
    .pricing-table thead tr th:nth-child(2),
    .pricing-table tbody tr th:nth-child(2) {
        width: 30%;
    }
    .pricing-table thead tr td:nth-child(3),
    .pricing-table tbody tr td:nth-child(3),
    .pricing-table thead tr th:nth-child(3),
    .pricing-table tbody tr th:nth-child(3) {
        width: 25%;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 767px) {
    .pricing-table thead tr td:nth-child(1),
    .pricing-table tbody tr td:nth-child(1),
    .pricing-table thead tr th:nth-child(1),
    .pricing-table tbody tr th:nth-child(1) {
        width: 38%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .pricing-table thead tr td:nth-child(2),
    .pricing-table tbody tr td:nth-child(2),
    .pricing-table thead tr th:nth-child(2),
    .pricing-table tbody tr th:nth-child(2) {
        width: 23%;
    }
    .pricing-table thead tr td:nth-child(3),
    .pricing-table tbody tr td:nth-child(3),
    .pricing-table thead tr th:nth-child(3),
    .pricing-table tbody tr th:nth-child(3) {
        width: 34%;
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* ======= Image Gallery style ======= */
.gallery-masonry-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}
.gallery-items .col-md-4:nth-child(2) {
    margin-top: 0px;
}
.gallery-filter {
    width: 100%;
    padding-bottom: 30px;
    padding-left: 0px;
    position: relative;
}
.gallery-filter li {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-right: 15px;
    display: inline-block;
    cursor: pointer;
    color: #fff;
}
.gallery-filter li:last-child {
    margin-right: 0;
}
.gallery-filter li.active {
    color: #d3071f;
    content: "";
    left: 0;
    bottom: -4px;
    border-bottom: 2px solid #d3071f;
    -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.gallery-filter li:hover {
    color: #d3071f;
}
.gallery-masonry-wrapper .gallery-masonry-item-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-masonry-wrapper .gallery-masonry-item-img-link:hover .gallery-masonry-item-img {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
}
.gallery-masonry-wrapper .gallery-masonry-item-img-link:hover .gallery-masonry-item-img:after {
    opacity: 0.3;
}
@media only screen and (max-width: 767px) {
    .gallery-masonry-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    .gallery-items .col-md-6:nth-child(2) {
        margin-top: 0;
    }
}
@media all and (max-width: 575px) {
    .gallery-filter li {
        margin-right: 10px;
        font-size: 16px;
    }
    .gallery-filter li:last-child {
        margin-right: 0;
    }
    .gallery-items .single-item {
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 400px) {
    .gallery-masonry-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}
/* gallery 2 style */
.gallery-item {
    position: relative;
    padding-top: 20px;
}
.gallery-box {
    overflow: hidden;
    position: relative;
}
.gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
}
.gallery-box .gallery-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-img > img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
}
.gallery-box .gallery-detail {
    opacity: 0;
    color: #101010;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-detail h4 {
    font-size: 18px;
}
.gallery-box .gallery-detail p {
    color: Rgba(0, 0, 0, 0.4);
    font-size: 16px;
}
.gallery-box .gallery-detail i {
    color: #101010;
    padding: 8px;
}
.gallery-box .gallery-detail i:hover {
    color: #101010;
}
.gallery-box:hover .gallery-detail {
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
}
.gallery-box:hover .gallery-img:after {
    background: rgba(0, 0, 0, 0.4);
}
.gallery-box:hover .gallery-img > img {
    transform: scale(1.05);
}
/* magnific popup custom */
.mfp-figure button {
    border: 0px solid transparent;
}
button.mfp-close,
button.mfp-arrow {
    border: 0px solid transparent;
    background: transparent;
}


/* ======= Video Gallery style ======= */
.vid-icon {
    position: relative;
    overflow: hidden;
}
.vid-icon:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.video-gallery-button {
    position: relative;
    margin: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 4;
    margin-right: 20px;
    float: left;
}
.video-gallery-polygon {
    z-index: 2;
    padding-right: 5px;
    display: inline-block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #d3071f;
    border-radius: 50%;
    color: #fff;
    padding: 12px 11px 12px 13px;
    line-height: 0;
    box-shadow: 0px 0px 0px 5px rgb(255 255 255 / 10%);
}
.video-gallery-polygon:hover {
    background: #fff;
    color: #d3071f;
}
.video-gallery-polygon {
    font-size: 20px;
}


/* ======= Video Popup style ======= */
.play-button {
    position: relative;
    margin: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 4;
}
.play-button svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.polygon {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 90px;
    font-size: 30px;
    z-index: 2;
}
.play-button svg.circle-fill {
    z-index: 1;
    stroke-dasharray: 322;
    stroke-dashoffset: 322;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.play-button:hover svg.circle-fill {
    stroke-dashoffset: 38.5;
}
.play-button svg.circle-track {
    z-index: 0;
}
.video-wrapper {
    min-height: 500px;
}
.video-wrapper .vid {
    position: relative;
    z-index: 8;
}
.video-wrapper .vid .vid-butn:hover .icon {
    color: #d3071f;
}
.video-wrapper .vid .vid-butn:hover .icon:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.video-wrapper .vid .vid-butn .icon {
    color: #d3071f;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    font-size: 40px;
    position: relative;

    
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.video-wrapper .vid .vid-butn .icon:after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: -1;
}
.video-wrapper .vid .vid-butn .icon:before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
    background: transparent;
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
    -o-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
    transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}
.video-wrapper .vid .vid-butn .icon:hover {
    border: 2px solid #d3071f;
      transform: translate3d(0px, -6px, 0.01px);
}


/* ======= Accordion Box (for Faqs) style ======= */
.accordion-box {
  position: relative;
    padding: 0px;
}
.accordion-box .block {
    position: relative;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 20px #ccc !important;
}
.accordion-box .block.active-block {
  background-color: #fff;
}
.accordion-box .block:last-child {
  margin-bottom: 0;
}
.accordion-box .block .acc-btn {
    position: relative;
    font-family: 'Quicksand';
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 20px;
    padding-right: 60px;
    color: #101010;
    transition: all 500ms ease;
    /* box-shadow: 0px 0px 20px #ccc !important; */
}
.accordion-box .block:hover .acc-btn {
  transform: translateX(10px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.accordion-box .block .acc-btn .count {
    color: #d3071f;
    padding-right: 3px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
}
.accordion-box .block .acc-btn:before {
position: absolute;
    right: 30px;
    top: 20px;
    height: 20px;
    font-size: 14px;
    font-weight: normal;
    color: #d3071f;
    line-height: 30px;
    content: "\e61a";
    font-family: "Themify";
    transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active {
  background-color: #fff;
    color: #101010;
}
.accordion-box .block .acc-btn.active:before {
  color: "Themify";
  content: "\e622";
}
.accordion-box .block .acc-content {
  position: relative;
  display: none;
}
.accordion-box .block .content {
  position: relative;
    padding: 0px 40px 30px;
    background-color: #fff;
    color: #999;
}
.accordion-box .block .acc-content.current {
  display: block;
}
.accordion-box .block .content .text {
  display: block;
  position: relative;
  top: 0px;
  display: block;
  color: #777;
  font-family: 'Quicksand';
  color: #262626;
  font-weight: 500;
}


/* ======= Clients style ======= */
.clients {
    background: #fff;
}
.clients .owl-carousel {
    margin: 20px 0;
}
.clients .clients-logo {
    opacity: 1;
    line-height: 0;
}
.clients .clients-logo:hover {
    opacity: 1;
}
.clients img {
    -webkit-filter: none;
    filter: none;
}
.clients img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* ======= Testimonials style ======= */
.testimonials {
    position: relative;
}
.testimonials:last-child {
    margin-bottom: 0px;
}
.testimonials figure {
    margin: 0;
    position: relative;
    width: 66.666667%;
    margin-left: auto;
        overflow: hidden;
    border-radius: 5px;
}
.testimonials.left figure {
    margin-left: 0;
    margin-right: auto;
    border-radius: 5px;
}
.testimonials figure img:hover {
   -webkit-transform: scale(1.02, 1.02);
   transform: scale(1.02);
}
.testimonials figure img {
    transform: scale(1);
    transition: transform 500ms ease;
}
.testimonials .caption {
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    width: 50%;
    padding: 5% 4% 5% 0%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.testimonials.left .caption {
    left: auto;
    right: 0;
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
}
.testimonials.left .caption h5 {
    color: #101010;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.25em;
}
@media (max-width: 991.98px) {
    .testimonials figure {
        width: auto;
        margin: 0;
    }
    .testimonials figure img {
        display: none;
    }
    .testimonials.left .caption {
    padding: 30px;
}
    .testimonials .caption {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        padding: 30px;
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
.testimonials .item-box {
    margin-bottom: 0px;
    position: relative;
}
.testimonials .item-box .quote {
    position: absolute;
    right: 0px;
    bottom: -5px;
    opacity: .1;
    color: #585858;
    font-size: 55px;
}
.testimonials .item-box p {
    font-size: 16px;
    color: #404040;
    margin-bottom: 20px;
    border-bottom: 2px solid #f6f6f6;
    padding-bottom: 20px;
}
.testimonials .item-box .info {
    text-align: left;
}
.testimonials .item-box .info .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
    border: 2px solid #a33c2d;
    padding: 2px;
}
.testimonials .item-box .info .author-img img {
    border-radius: 100%;
}
.testimonials .item-box .info .cont {
    margin-left: 65px;
}
.testimonials .item-box .info h6 {
    color: #101010;
    font-size: 16px;
    margin-bottom: 0px;
    padding-top: 5px;
    line-height: 1em;
}
.testimonials .item-box .info span {
    font-size: 16px;
    color: #777;
}


/* ======= Appointment style ======= */
.appointment h4 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #101010;
    line-height: 1.25em;
}
.appointment h5 {
    font-size: 16px;
    line-height: 16px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #d3071f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    z-index: 1;
}
.appointment h5::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #a33c2d;
    z-index: -1;
}
.appointment [data-overlay-dark] span {
    color: #d3071f;
}
.appointment [data-overlay-dark] p {
    color: #fff;
    font-weight: 600;
}
/* help style */
.help {
    display: flex;
    align-items: center;
}
.help .icon {
    position: relative;
    top: 3px;
}
.help .icon span {
    font-size: 40px;
}
.help .icon.color-1 span {
    font-size: 45px;
    color: #d3071f;
}
.help .text {
    margin-left: 15px;
}
.help .text p {
    font-size: 16px;
    margin: 0;
    
}
.help .text a {
    font-size: 24px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
}
.help .text a.color-1 {
    color: #fff;
}


/* ======= Booking style ======= */
.booking-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 5%;
    z-index: 5;
}
.booking2-wrapper {
    position: relative;
    margin-bottom: 40px;
}
.booking-inner {
    position: relative;
    border-radius: 0;
}
.form1 {
    display: block;
    padding: 0;
    position: relative;
}
.form1 label {
    display: none;
}
.form1 .col1 {
    float: left;
    width: 20%;
}
.form1 .col2 {
    float: left;
    width: 14%;
}
.form1 .col3 {
    float: left;
    width: 18%;
}
.form1 .c1 {
    border-right: 2px solid #d3071f;
    height: 52.5px;
    margin-bottom: 15px;
}
.form1 .c2 {
    border-right: 1px solid #f1eeeb;
    height: 52.5px;
    margin-bottom: 15px;
}
.form1 .c3 {
    border-right: 1px solid #f1eeeb;
    height: 52.5px;
    margin-bottom: 15px;
}
.form1 .c4 {
    border-right: 1px solid #f1eeeb;
    height: 52.5px;
    margin-bottom: 15px;
}
.form1 .c5 {
    border-right: 1px solid #f1eeeb;
    height: 52.5px;
    margin-bottom: 15px;
}
.ui-datepicker .ui-datepicker-header {
    background: #d00f27;
    border: #d00f27;
    color: #fff;
}
.ui-datepicker {
    font-size: 14px;
    color: #101010;
    background: #fff;
    z-index: 100 !important;
    border: 2px solid transparent;
    border-radius: 0px;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 0px solid rgba(255,255,255,0.05);
    background: #d00f27;
    color: #fff;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 0px solid #101010;
    background: #101010;
    font-weight: normal;
    color: #fff;
}
.ui-datepicker .ui-datepicker-prev:after {
    font-size: 14px;
    content: "\f104";
    font-family: "FontAwesome";
    color: #fff;
}
.ui-datepicker .ui-datepicker-next:before {
    font-size: 14px;
    content: "\f105";
    font-family: "FontAwesome";
    color: #fff;
    float: right;
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background: transparent;
    border: 1px solid transparent;
}
.btn-form1-submit {
    font-family: 'Syne', sans-serif;
    display: block;
    padding: 0;
    border: none;
    margin: 0;
    width: 100%;
    background: #d3071f;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    line-height: 57px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-out;
    border: 2px solid #d3071f;
    border-radius: 5px;
}
.btn-form1-submit:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #101010;
}
.btn-form1-submit:focus {
    outline: none;
}
.btn-form1-submit:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    background: inherit;
}
.input1_inner {
    position: relative;
}
.input1_inner:after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    pointer-events: none;
    content: "\f073";
    font-family: "FontAwesome";
    font-size: 14px;
    color: #999;
    line-height: 1;
}
.input1_inner input {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #fff;
    padding: 15px 50px 15px 15px;
    background: #101010;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255, 0.1);
}
.input1_inner input::placeholder {
    font-size: 16px;
    color: rgba(255,255,255,0.8) !important;
}
.input1_inner input:focus {
    outline: none;
    box-shadow: none;
    background: #101010;
    color: #999 !important;
    border: 2px solid rgba(255,255,255, 0.1);
}
.input2_inner {
    position: relative;
    margin-bottom: 20px;
}
.input2_inner input {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #fff;
    padding: 15px;
    background: #101010;
    border: none;
    box-shadow: none;
    border-radius: 0;
    border: 2px solid rgba(255,255,255, 0.1);
    border-radius: 5px;
}
.input2_inner input::placeholder {
    font-size: 16px;
    color: rgba(255,255,255,0.8) !important;
}
textarea:focus,
.input2_inner input:focus {
    outline: none;
    box-shadow: none;
    background: #101010;
    color: #fff !important;
    border: 2px solid rgba(255,255,255, 0.1);
}
.select1_wrapper {
    margin-bottom: 0;
}
.select1_inner {
    position: relative;
}
.select1_inner:after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    pointer-events: none;
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 12px;
    color: #999;
    font-weight: normal;
    line-height: 15px;
}
.select2 {
    width: 100%;
    margin-bottom: 15px;
    background: #101010;
    border: 2px solid rgba(255,255,255, 0.1);
    border-radius: 5px;
}
.select2 *:focus {
    outline: none !important;
}
.select2-container--default .select2-results > .select2-results__options {
    max-height: 500px;
}
.select2-container--default .select2-selection--single {
    background: none;
    border-radius: 0;
    border: none;
    height: auto;
}
.selection {
    display: inline-flex;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    padding: 12.25px 49px 12.25px 15px;
    color: rgba(255,255,255,0.8);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}
.select2-dropdown {
    background: none;
    border-radius: 0;
    z-index: 100;
    min-width: 0px;
    border: none;
}
.select2-container--open .select2-dropdown--above {
    border-bottom: 0px solid #101010;
}
.select2-container--open .select2-dropdown--below {
    border-top: 0px solid #101010;
}
.select2-results__option {
    padding: 10px 30px;
    background: #fff;
    font-size: 16px;
    line-height: 20px;
    color: #101010;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}
.select2-results__option:first-child {
    border-top: none;
}
.small .select2-results__option {
    padding-left: 0;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background: #d3071f;
    color: #fff;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #d3071f;
    color: #fff;
}
/* responsive */
@media (max-width: 1259.98px) {
    .booking2-wrapper {
        margin-bottom: 30px;
    }
}
@media (max-width: 991.98px) {
    .booking2-wrapper {
        margin-bottom: 40px;
    }
    .form1 .col1 {
        width: 50%;
        border-bottom: 1px solid #101010;
    }
    .form1 .c2 {
        border-right: none;
    }
    .form1 .col2 {
        width: 25%;
    }
    .form1 .col3 {
        width: 25%;
    }
}
@media (max-width: 767.98px) {
    .form1 .col1 {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #101010;
    }
    .form1 .col2 {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #101010;
    }
    .form1 .col3 {
        width: 100%;
        border-right: 0;
    }
    .btn-form1-submit:after {
        background: none;
    }
    .booking-wrapper {
        position: relative;
        bottom: auto;
        padding: 30px 0 0;
    }
}
/* booking form */
.booking-box {
    position: relative;
    background: #101010;
    padding: 60px 45px;
    margin-bottom: -60px;
    border-radius: 5px;
}
.booking-box .head-box h6 {
    color: #d3071f;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    
    margin-bottom: 7px;
    letter-spacing: 5px;
}
.booking-box .head-box h1 {
    font-size: 60px;
    line-height: 1.25em;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #101010;
    position: relative;
    
    letter-spacing: 5px;
    margin-bottom: 30px;
}
.booking-box .head-box h1 span {
    color: #101010;
}
@media screen and (max-width: 991px) {
    .booking-box {
        margin-bottom: 90px;
        padding: 35px 20px;
    }
}


/* ======= Blog 1 style  ======= */
.blog1 {
  overflow: hidden;
}
.blog1 .item {
    position: relative;
    margin-bottom: 15px;
}
.blog1 .item .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
.blog1 .item .wrap .wrapper-img {
  position: relative;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
.blog1 .item .wrap .wrapper-img img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  opacity: 1;
}
.blog1 .item .wrap .wrapper-title {
  position: absolute;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  bottom: 0px;
  padding: 20px 20px 0 20px;
}
.blog1 .item .wrap .wrapper-title h6 {
    font-size: 14px;
    line-height: 14px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    z-index: 1;
}
.blog1 .item .wrap .wrapper-title h6::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #d3071f;
    z-index: -1;
}
.blog1 .item .wrap .wrapper-title h4 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 15px;
    line-height: 1.25em;
}
.blog1 .item .wrap .wrapper-title .icon {
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transition: 0.7s;
    width: 50px;
    height: 50px;
    line-height: 47px;
    border: 2px solid #d3071f;
    border-radius: 100%;
    background: transparent;
}
.blog1 .item .wrap .wrapper-title .icon:hover {
    color: #fff;
    border: 2px solid #d3071f;
    background: #d3071f;
}
.blog1 .item .wrap:hover .wrapper-img img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  opacity: 1;
  transform: scale(1.1);
}
.blog1 .item .wrap:hover .wrapper-title {
  transform: translateY(-50px);
}
.blog1 .item .wrap:hover .wrapper-title .icon {
  opacity: 1;
}



/* ======= Blog 2 style ======= */
.blog2 .item {
    margin-bottom: 30px;
}
.blog2 .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.blog2 .post-img:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.blog2 .post-img a {
    display: block;
}
.blog2 .post-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.blog2 .post-cont {
    padding: 30px 0;
}
.blog2 .post-cont .tag {
    display: block;
    font-size: 16px;
    color: #d3071f;
    margin-bottom: 0px;
}
.blog2 .post-cont h5,
.blog2 .post-cont h5 a {
    color: #fff;
    font-size: 32px;
    line-height: 1.25em;
}
.blog2 .post-cont .category a {
    margin-right: 5px;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    letter-spacing: 0; 
}
.blog2 .post-cont .category a:hover {
    color: #d3071f;
}
.blog2 .post-cont .category a:before {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #d3071f;
    content: "";
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.blog2 .post-cont .category a:last-child {
    margin-right: 15px;
}
.blog2 .post-cont .category a:last-child:after {
    display: none;
}
.blog2 .post-cont .calendar a {
    margin-right: 5px;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #999;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    letter-spacing: 0;
}
.blog2 .post-cont .calendar a:hover {
    color: #101010;
}
/* blog2 sidebar */
.blog2-sidebar .widget {
    background: #101010;
    padding: 30px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255,0.05);
}
.blog2-sidebar .widget ul {
    margin-bottom: 0;
    padding: 0;
}
.blog2-sidebar .widget ul li {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 15px;
}
.blog2-sidebar .widget ul li a {
    color: #999;
}
.blog2-sidebar .widget ul li a.active {
    color: #999;
}
.blog2-sidebar .widget ul li a:hover {
    color: #d3071f;
}
.blog2-sidebar .widget ul li:last-child {
    margin-bottom: 0;
}
.blog2-sidebar .widget ul li i {
    font-size: 9px;
    margin-right: 10px;
}
.blog2-sidebar .widget .recent li {
    display: block;
    overflow: hidden;
}
.blog2-sidebar .widget .recent .thum {
    width: 100px;
    overflow: hidden;
    float: left;
}
.blog2-sidebar .widget .recent a {
    display: block;
    margin-left: 115px;
}
.blog2-sidebar .widget-title {
    margin-bottom: 15px;
}
.blog2-sidebar .widget-title h6 {
padding-bottom: 5px;
    border-bottom: 2px solid #d3071f;
    font-size: 20px;
    line-height: 1.75em;
    margin-bottom: 15px;
    color: #fff;
}
.blog2-sidebar .search form {
    position: relative;
}
.blog2-sidebar .search form input {
    width: 100%;
    padding: 15px;
    border: 0;
    background: transparent;
    margin-bottom: 0;
    border: 2px solid #d3071f;
    color: #999;
}
.blog2-sidebar .search form input::placeholder {
    color: #999;
}
.blog2-sidebar .search form button {
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: #fff;
    color: #101010;
    border: 0;
    padding: 13px 16px 5px 16px;
    cursor: pointer;
    border-radius: 5px;
}
.blog2-sidebar .tags li {
    margin: 4px !important;
    padding: 9px 20px;
    background-color: #fff;
    color: #101010;
    float: left;
    border-radius: 5px;
}
.blog2-sidebar ul.tags li a {
    font-size: 14px;
    color: #101010;
}
.blog2-sidebar ul.tags li:hover,
.blog2-sidebar ul.tags li:hover a {
     background-color: #d3071f;
    color: #fff;
}


/* ======= Post style ======= */
.post {
    position: relative;
}
.post h4 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}
.post h4 span {
    color: #d3071f; 
}
.post .form-box {
    background: #101010;
}
.post .form-box h5 {
    font-size: 24px;
    color: #fff;
}
.post .section {
    padding-top: 60px;
    margin-bottom: 60px;
}
.post .section h6 {
    font-size: 16px;
    color: #fff;
    
}
.post .section h6 span {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0;
    display: block;
    text-transform: none;
}
.post .section .wrap {
    display: flex;
    margin-bottom: 60px;
}
.post .section .wrap .user {
    margin-right: 20px;
    flex: 0 0 auto;
}
.post .section .wrap .user img {
    border-radius: 100%;
    width: 90px;
    border: 2px solid #d3071f;
    padding: 4px;
}
.post .section .wrap .cont {}
.post .section .wrap .cont .repay {
    font-size: 14px;
    color: #fff;
    margin: 0;
    font-weight: 400;
}
.post .section .wrap .cont a.repay:hover {
    color: #d3071f;
}
/* pagination */
.pagination-wrap {
    padding: 0;
    margin: 0;
}
.pagination-wrap li {
    display: inline-block;
    margin: 0 5px;
}
.pagination-wrap li a {
    background: #fff;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    color: #101010;
    font-weight: 400;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.pagination-wrap li a i {
    font-size: 11px;
}
.pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    background: #d3071f;
    border: 2px solid #d3071f;
    color: #fff;
    transform: translate3d(0px, -6px, 0.01px);
}
.pagination-wrap li a.active {
    background-color: #d3071f;
    border: 2px solid #d3071f;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .pagination-wrap {
        padding: 0;
        margin: 0;
        text-align: center;
    }
}


/* ======= Contact style ======= */
.contact p {
    color: #999;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact p b {
    color: #101010;
    font-weight: 700;
}
.contact h5 {
    color: #000;
    font-size: 27px;
}
.contact .con {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #999;
    text-decoration: none;
}
.contact .con .icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-right: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 2px solid #a33c2d;
    text-align: center;
    background: transparent;
    font-size: 20px;
    color: #a33c2d;
}
.contact .con .icon .img {
    border-radius: 0;
    border: 2px solid #d3071f;
}
.contact .con .icon img {
    background: transparent;
    padding: 13px;
}
.contact .con .text {
    color: #000;
    line-height: 1.5em;
}
/* contact form */
.contact .form-box {
    background: #a33c2d;
    padding: 20px 30px;
}
/* opening-hours list */
.opening-hours ul {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    width: 320px;
}
.opening-hours ul li .tit,
.opening-hours ul li .dots,
.opening-hours ul li span {
    display: table-cell;
    white-space: nowrap;
}
.opening-hours ul li {
    margin-bottom: 15px;
    font-size: 16px;
}
.opening-hours ul li:last-of-type {
    margin-bottom: 0;
}
.opening-hours ul li span {
    white-space: nowrap;
    padding-left: 10px;
    color: #999;
}
.opening-hours ul li .tit {
    padding-right: 10px;
    color: #222;
}
.opening-hours ul li .dots {
    height: 4px;
    width: 100%;
    border-bottom: 2px dashed #1b1b1b;
    position: relative;
    top: -7px;
}

.google-map {
	width: 100%;
    -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
    height: calc(100% + 30px);
    overflow: hidden;
}


/* ======= Services Box style ======= */
.services-box {
    position: relative;
    margin-bottom: 60px;
    margin-top: -120px;
}
.services-box .container {
    position: relative;
    z-index: 2;
}
.services-box .item {
    background: #fff;
    padding: 40px 40px 60px 40px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
    transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 15px;
}
.services-box .item.active {
    background: #d3071f;
     -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
}
.services-box .item:hover {
    background: #d3071f;
    -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
    
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;

}
.services-box .item h5 {
    font-size: 24px;
    color: #101010;
}
.services-box .item.active h5 {
    color: #fff
}
.services-box .item:hover h5 {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}
.services-box .item p {
    color: #777;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.services-box .item.active p {
    color: #fff;
}
.services-box .item:hover p {
    color: #fff;
}
.services-box .item span {
    font-size: 70px;
    color: #d3071f;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
}
.services-box .item.active span {
    color: #fff;
}
.services-box .item:hover span {
    color: #fff;
}
.services-box .item .numb {
    font-size: 120px;
    position: absolute;
    bottom: -25px;
    right: -10px;
    color: rgba(0,0,0,0.3);
    opacity: .2;
}
.services-box .item.active .numb {
    color: rgba(255,255,255,0.5);
}
.services-box .item:hover .numb {
    color: rgba(255,255,255,0.5);
}


/* ======= Contact Box style ======= */
.contact-box {
    position: relative;
    margin-bottom: 60px;
    margin-top: 60px;
}
.contact-box .container {
    position: relative;
    z-index: 2;
}
.contact-box .item {
    background: #fff;
    padding: 60px 40px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    line-height: 1;
    text-align: left;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 20px #ccc;
    box-shadow: 0;
    transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    border-radius: 15px;
}
.contact-box .item.active {
    background: #a33c2d;
    -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
}
.contact-box .item:hover {
    background: #a33c2d;
    -webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
    transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.contact-box .item h5 {
    font-size: 24px;
    color: #101010;
    margin-bottom: 0px;
}
.contact-box .item.active h5 {
    color: #fff
}
.contact-box .item:hover h5 {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}
.contact-box .item p {
    color: #777;
    font-size: 18px;
    font-weight: 400;
}
.contact-box .item.active p {
    color: #fff;
}
.contact-box .item:hover p {
    color: #fff;
}
.contact-box .item span {
    font-size: 50px;
    color: #a33c2d;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    -webkit-transition: .5s;
    transition: .5s;
}
.contact-box .item.active span {
    color: #fff;
}
.contact-box .item:hover span {
    color: #fff;
}
.contact-box .item .numb {
    font-size: 120px;
    position: absolute;
    bottom: -5px;
    right: 10px;
    color: rgba(0,0,0,0.3);
    opacity: .2;
}
.contact-box .item.active .numb {
    color: rgba(255,255,255,0.5);
}
.contact-box .item:hover .numb {
    color: rgba(255,255,255,0.5);
}


/* ======= 404 style ======= */
.not-found h1 {
    font-size: 200px;
    line-height: 180px;
    font-family: 'Barlow', sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px #d3071f;
    opacity: .7;
}
.not-found h3 {
    color: #fff;
    font-size: 27px;
    line-height: 1.25em;
    
}
.not-found p {
    color: #999;
}
.search-form {
    position: relative;
    max-width: 520px;
    margin: 20px auto 0;
}
.search-form form {
    position: relative;
}
.search-form .form-group {
    position: relative;
    margin: 0;
}
.search-form .form-group input[type="text"],
.search-form .form-group input[type="search"],
.search-form .form-group input[type="email"] {
    position: relative;
    width: 100%;
    line-height: 30px;
    padding: 10px 100px 10px 20px;
    height: 60px;
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    background: transparent;
    color: #101010;
    border-radius: 0px;
    border: 2px solid #d3071f;
    transition: all 300ms ease;
    border-radius: 5px;
}
.search-form .form-group input[type="text"]:focus,
.search-form .form-group input[type="email"]:focus,
.search-form .form-group input[type="search"]:focus {
    border-color: #d3071f;
}
.search-form .form-group input::-webkit-input-placeholder {
    color: #999;
}

.search-form .form-group input[type="search"]:focus {
    color: #fff;
}
.search-form .form-group .search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 90px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    background: none;
    color: #101010;
    background: #fff;
    border-radius: 5px;
}
.search-form .form-group .search-button span {
    vertical-align: middle;
    outline: none;
}
.search-form .form-group .search-button:hover {
    background: #fff;
    color: #101010;
}


/* ======= Button style ======= */
/* button 1 */
.button-1 {
    display: inline-block;
    height: auto;
    padding: 10px 22px;
    border: 2px solid #a33c2d;
    border-radius: 0px;
    background-color: #a33c2d;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
    border-radius: 5px;
}
.button-1 span {
    font-size: 10px;
    margin-left: 5px;
    color: #fff;
}
.button-1:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #101010;
  transform: translate3d(0px, -6px, 0.01px);
}
.button-1:hover span {
    color: #101010;
}
/* button 2 */
.button-2 {
    display: inline-block;
    height: auto;
    padding: 10px 22px;
    border: 2px solid #a33c2d;
    border-radius: 0px;
    background-color: #a33c2d;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
    border-radius: 5px;
}
.button-2 span {
    font-size: 10px;
    margin-left: 5px;
    color: #fff;
}
.button-2:hover {
  border: 2px solid #101010;
  background-color: #101010;
  color: #fff;
  transform: translate3d(0px, -6px, 0.01px);
}
.button-2:hover span {
    color: #fff;
}
/* button 3 */
.button-3 {
    display: inline-block;
    height: auto;
    padding: 10px 22px;
    border: 2px solid #a33c2d;
    border-radius: 0px;
    background-color: #a33c2d;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
    border-radius: 5px;
}
.button-3 span {
    font-size: 10px;
    margin-left: 5px;
    color: #fff;
}
.button-3:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #101010;
  transform: translate3d(0px, -6px, 0.01px);
}
.button-3:hover span {
    color: #101010;
}


/* ======= Footer style ======= */
.footer {
    background-color: #101010;
}
.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}
.footer-logo h2 {
    font-family: 'Syne', sans-serif;
    font-size: 30px;
    font-weight: 800;
    display: flex;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.25em;
    text-transform: uppercase;
}
.footer-logo h2 span {
    color: #d3071f;
}
.footer .widget .widget-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}
/* first footer */
.first-footer {
    padding: 90px 0 0 0;
}
/* footer icon */
.icon-footer {
    width: 65px;
    max-height: 65px;
    min-height: 65px;
    min-width: 65px;
    background-color: transparent;
    color: #fff;
    font-size: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #a33c2d;
    border-radius: 5px;
}
.icon-footer i {
    width: 100%;
    text-align: center;
}
/* footer link */
.links.dark {
    border-style: solid;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.1);
    background-color: #101010;
    box-shadow: none;
    border-radius: 0px;
}
.links.dark.footer-contact-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0px;
    padding: 20px 20px 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
}
.footer-contact-links-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1032px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-contact-links-divider {
    width: 2px;
    min-height: 100%;
    margin-right: 20px;
    margin-left: 20px;
    background-color: rgba(255, 255, 255, 0.1);
}
.footer-contact-link-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #101010;
    text-decoration: none;
}
.image-wrapper.footer-contact-link-icon {
    margin-right: 22px;
}
.footer-contact-link-wrapper h6 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
    
}
.footer-contact-link-wrapper p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 0px;
}
/* second footer */
.second-footer {
    border-bottom: 2px solid #a33c2d;
}
.second-footer .widget-area .widget {
    padding: 45px 0;
}
.second-footer .widget-area .widget p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
/* usefull links */
.footer .usful-links ul {
    margin: 0;
    padding: 0;
}
.footer .usful-links ul li {
    margin-bottom: 5px;
}
.footer .usful-links ul li:hover {
    color: #d3071f;
}
.footer .usful-links ul li i {
    font-size: 7px;
    margin-right: 3px;
}
.footer .usful-links ul li a {
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 15px;
}
.footer .usful-links ul li a:after {
    width: 6px;
    height: 6px;
    content: "";
    background: #a33c2d;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
}
.footer .usful-links ul li a:hover {
    color: #d3071f;
}
/* bottom footer */
.copyright {
    padding-top: 20px;
    padding-bottom: 20px;
}
.copyright p {
    color: #fff;
    font-size: 14px;
}
.copyright p a {
    background: linear-gradient(to bottom, #d3071f 0%, #d3071f 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 2px 2px;
    color: #fff;
    text-decoration: none;
    transition: background-size .2s;
}
.copyright p a:hover {
    color: #fff;
}
/* social icons */
.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background: transparent;
    color: #fff;
    font-weight: 400;
    border-radius: 0;
    margin-right: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    border: 2px solid #a33c2d;
    border-radius: 5px;
}
.social-icons li a {
    display: block;
    text-align: center;
    color: #fff;
}
.footer .social-icons li > a {
    font-size: 18px;
}
.social-icons li a:hover {
    background: transparent;
    color: #fff;
}
/* newsletter */
.widget-newsletter {
    position: relative;
}
.widget-newsletter input {
    height: 60px;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
    padding: 0 90px 0 20px;
    border: 2px solid #a33c2d;
    border-radius: 5px;
}
.widget-newsletter button {
    height: 50px;
    border: none;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: #101010;
    outline: none;
    padding: 0 25px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 5px;
}
.widget-newsletter input::placeholder {
    color: rgba(255,255,255,0.8);
}
.widget-newsletter button:hover {
    background: #fff;
    color: #101010;
}
@media screen and (max-width: 767px) {
    .footer-contact-links-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }
    .footer-contact-links-divider {
    width: auto;
    min-height: 1px;
    margin: 20px 0px;
    }
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e627';
    text-align: center;
    line-height: 45px;
    font-size: 14px;
    font-weight: normal;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: #d3071f;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap::after {
    color: #d3071f;
}
.progress-wrap svg.progress-circle path {
    stroke: #d3071f;
}


/* ======= Responsive style ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}
@media screen and (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll !important;
    }
    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }
    .header .caption h1 {
        font-size: 36px;
    }
    .banner-header h1 {
        font-size: 36px;
    }
    .banner-header h6 { 
        font-size: 14px;
    }
    .parallax-header h6 {
        font-size: 14px;
    }
    .parallax-header h1 {
        font-size: 31px;
    }
    .section-title {
        font-size: 32px;
    }
    .section-title2 {
        font-size: 14px;
    }
    .section-title3 {
        font-size: 14px;
    }
    .process .item h5 {
        font-size: 20px;
    }
    .services1 .wrapper-title h4 {
        font-size: 20px;
    }
    .services2 .item .caption h5 {
        font-size: 24px;
    }
    .appointment h5 {
        font-size: 14px;
    }
    .video-fullscreen-wrap h6 {
        font-size: 14px;
    }
    .video-fullscreen-wrap h1 {
        font-size: 36px;
    }
    .footer .widget .widget-title {
        font-size: 20px;
    }
    .sidebar .sidebar-widget .widget-inner {
        margin-top: 30px;
    }
    .not-found h1 {
        font-size: 150px;
        line-height: 150px;
    }
    .footer-bottom .footer-social {
        float: left;
    }
}


/* ======= Overlay Effect Bg image ======= */
[data-overlay-dark] {
    position: relative;
}
[data-overlay-dark] .container {
    position: relative;
    z-index: 2;
}
[data-overlay-dark]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
[data-overlay-dark]:before {
    background: #000;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}
[data-overlay-dark] p {
    color: #999;
}
[data-overlay-dark="0"]:before {
    opacity: 0;
}
[data-overlay-dark="1"]:before {
    opacity: 0.1;
}
[data-overlay-dark="2"]:before {
    opacity: 0.2;
}
[data-overlay-dark="3"]:before {
    opacity: 0.3;
}
[data-overlay-dark="4"]:before {
    opacity: 0.4;
}
[data-overlay-dark="5"]:before {
    opacity: 0.7;
}
[data-overlay-dark="6"]:before {
    opacity: 0.6;
}
[data-overlay-dark="7"]:before {
    opacity: 0.7;
}
[data-overlay-dark="8"]:before {
    opacity: 0.8;
}
[data-overlay-dark="9"]:before {
    opacity: 0.9;
}
[data-overlay-dark="10"]:before {
    opacity: 1;
}


 
.About_Us {}
.About_Us span{
    font-weight: 700;
    color: #a33c2d;
    font-family: 'Quicksand';
}
.About_Us h2{
    font-size: 31px;
    line-height: initial;
    margin-bottom: 4px;
    font-weight: 800;
}
.About_Us h3{
    font-size: 15px;
}
.About_Us p{color: #414141;}
.About_Us ul{
    padding: 0px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}
.About_Us li{
    font-family: 'Quicksand';
    display: flex;
    width: 44%;
    float: left;
    color: #000;
    line-height: initial;
    margin-bottom: 13px;
}
.About_Us li .list-icon {
    margin-right: 11px;
    padding-top: 5px;
    color: red;
}

.get_import {}
.get_import h2{
    color: #fff;
    font-size: 33px;
    line-height: initial;
}
.get_import p{
    color: #fff;
    font-size: 16px;
}
.get_import a{}
.boxxw {}
.boxxw h3{
    font-size: 21px;
    line-height: normal;
    font-weight: 700;
}
.process .col-lg-3{display:flex}

.brandd {
    background: #fff;
    padding: 60px 0px;
}
.headingg h2{
    font-size: 36px;
    margin-bottom: 0px;
}
.headingg {text-align:center; margin-bottom:30px;}
.headingg p{
    color: #000;
}
.brandd ul{
    padding: 0px;
    display: inline-block;
}
.brandd li{
    width: 18%;
    float: left;
    font-family: 'Quicksand';
    color: #000;
    font-weight: 500;
    padding-bottom: 13px;
    font-size: 16px;
    background: #fff;
    margin: 8px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 0px 11px #ccc;
    margin-bottom: 11px;
}
.brandd li i{}

.quali_box {
    margin-top: -100px;
    position: relative;
    background: #fff;
    z-index: 1;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px #ccc;
}
.quali_box h2{
    line-height: initial;
    font-size: 32px;
    font-weight: 700;
}
.quali_box  span{
    font-weight: 600;
    text-transform: uppercase;
    color: #a33c2d;
}
.quali_box p{
    margin: 0px;
    font-weight: 500;
    color: #464646;
}
.good_quait {
    /* background: #fff; */
}

.baner_form {
    background: #a33c2d;
    padding: 20px;
}
.baner_form .form-control{
    background: inherit;
    height: 44px;
    margin-bottom: 14px;
    border: 1px solid #ccc !important;
    background: #fff;
    appearance: auto;
}
.baner_form .btn.btn-skin{
    background: #000;
    width: 100%;
    font-family: 'Quicksand';
    text-transform: uppercase;
}




.product_ourr {background: #ffffff;/* padding: 51px 0px; */padding-bottom: 70px;}
.pro_body{
    background: #fff;
    padding: 17px;
    box-shadow: 0px 0px 20px #ccc;
    border-radius: 10px;
    position: relative;
}

.btn_pro {}
.btn_pro a{
    width: 100%;
    margin: 3px;
    display: inline-block;
    background: #a33c2d;
    color: #fff !important;
    font-weight: 700;
    font-size: 17px;
    padding: 7px;
    text-align: center;
    border-radius: 100px !important;
    transition: 0.5s;
    font-family: 'Quicksand';
}
.btn_pro a:hover{}
.btn_pro a:last-child:hover{}
.shop_button {
    text-align: center;
}
.shop_button a{
    display: inline-block;
    margin-top: 70px;
    background: #1c1c1c;
    color: #fff;
    font-size: 18px;
    padding: 10px 50px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Quicksand';
}
.pro_body h2{
    font-size: 20px;
    font-weight: 800;
}
.pro_body a{
    color: #000;
    /* display: inline-block; */
    /* width: 50%; */
}
.heading1 {
    text-align: center;
}
.heading1 h2{
    font-weight: 800;
    font-size: 38px;
    line-height: normal;
}
.heading1 p{
    color: #353535;
}
.appointment .section-padding:before:before {
    opacity: 0.7;
}
.testimoniall {
    padding: 100px;
    background: #212529;
}
.headingg h2 span{color:#a33c2d}


.bmw_models {
    border: 6px solid #ffffff;
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 70px;
    background: #a33c2d;
    box-shadow: 0px 0px 20px #ccc;
}
.bmw_models ul{
    padding: 0px;
}
.bmw_models li{
    list-style: none;
    width: 17%;
    display: inline-block;
    padding: 7px 0px;
    border-bottom: 1px dashed;
    margin: 0px 11px;
}
.bmw_models a{
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    width: 100%;
}
.bmw_models a:hover{color:red}
.bmw_models h2:before{content:"";position: absolute;width: 80px;height: 3px;background: #ffffff;bottom: 0;right: 0;left: 0;margin: auto;}
.bmw_models h2{position:relative;margin: 0px;margin-bottom: 10px;font-size: 33px;line-height: normal;padding-bottom: 13px;text-align: center;color: #fff;}

.bmw_models p{color:#000;text-align:center;color: #fff;}
.form-box h5{color:#fff !important}
.form-box input{background:#fff !important}
.form-box textarea{background:#fff !important}
.form-box .bton_form {background:#000 !important}


.audigh p{
    color: #fff !important;
    font-weight: 600;
}
.audigh p b{
    color: #fff !important;}
.audigh li{
    color: #fff;
    font-family: 'Quicksand';
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 8px;
    list-style: disc;
}
.heade_banj {    padding: 90px 0px 100px;}
.heade_banj .baner_form {
    border-radius: 13px;
}
.breadcrumb li a{
    color: #0d6efd;
    font-weight: 700;
}
.breadcrumb li{
    font-family: 'Quicksand';
    font-weight: 600;
    color: #fff;
}
.audigh h3{font-size:20px;color: #fff;font-weight: 700;line-height: normal;}


.newinner {}
.newinner h2{
    text-align: center;
    line-height: normal;
    font-size: 43px;
}
.foembox{
    background: #0009;
    padding: 30px 30px;
}
.qualityy {
    padding: 0px;
}
.qualityy li{
    color: #fff;
    font-weight: 600;
    font-family: 'Quicksand';
    padding-bottom: 8px;
}
.qualityy li b{
    color: #fff;
    font-weight: 800;
}
.ner ul{
    margin-top: 14px;
}
.ner li{
    display: inherit !important;
    width: 100%;
    list-style: decimal !important;
    font-weight: 500;
}
.fhgj {}
.fhgj li{
    list-style: decimal !important;
    display: inline-block !important;
}

.jeppp {}

.jeppp ul{}
.jeppp li{display:inherit !important; width:100% !important}
.jeppp li i{color:#a33c2d; margin-right:10px;}
.process .col-lg-6{display:flex}
.faq_padd {
    background: #fff;
    padding: 70px 0px;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 54px;
    left: 10px;
    background-color: #129b5b;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 4px 2px 3px #999;
    z-index: 100;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px !important;
    animation: bounce_shake 1.5s ease-out infinite;
}
    .float i{font-size: 30px;}
.my-float{
	margin-top:3px;
}
.float:hover{color:#fff}
.inner_breacumb {
    padding: 8px 0px;
}
.inner_breacumb ul{
    margin: 0px;
}
.inner_breacumb li{}
.inner_breacumb li a{
    color: #3434ff;
}

@keyframes bounce_shake{
  0%   { transform: scale(1,1)      translateY(0); }
  10%  { transform: scale(1.1,.9)   translateY(0); }
  30%  { transform: scale(.9,1.1)   translateY(-5px); }
  32% { transform: scale(1.2) translateY(-5px); }
  35%, 40% { transform: scale(1.2) translateY(-5px) rotate(-20deg)}
  45%, 50% { transform: scale(1.2) translateY(-5px) rotate(20deg)}
  60%  { transform: scale(1.05,.95) translateY(0); }
  70%  { transform: scale(1.05,.95) translateY(0); }
  80%  { transform: scale(1,1)      translateY(-3px); }
  95%  { transform: scale(1,1)      translateY(0); }
  100% { transform: scale(1,1)      translateY(0); }
}



.model_page {
    background: #fff;
    padding: 50px 0px;
}
.model_page .baner_form{
    border: 5px solid #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 20px #ccc;
}
.model_page .baner_form h3{
    color: #fff;
}
.model_page_cont h1{
    font-size: 33px;
    line-height: normal;
    font-weight: bold;
}
.model_page_cont p{
    color: #242323;
}
.model_page_cont{
    padding-left: 10px;
}

.model_page_cont ul{
    padding: 0px;
    margin-bottom: 7px;
}
.model_page_cont li{
    color: #000000;
    font-family: 'Quicksand';
    font-weight: 600;
    padding-bottom: 10px;
    font-size: 18px;
}
.model_page_cont li i{
    color: #5a86d3;
}
.model_page_cont table{}
.model_page_cont .heading-table{
    background: #343434;
    color: #fff;
    font-weight: 700;
}

.model_page_cont .buynow{
    background: #a33c2d;
    color: #fff;
    font-weight: 700;
    border-radius: 100px;
    padding: 6px;
    font-family: 'Quicksand';
    width: 100px;
    text-align: center;
}
.nrermod {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.nrermod h3 {
    font-weight: 600;
    font-size: 23px;
    padding-bottom: 10px;
}
.transmions_model ul {
    padding: 0px;
}
.transmions_model li {
    list-style: none;
    display: inline-block;
    width: 24%;
}
.transmions_model li a {
    display: block;
    width: 100%;
    color: #000;
    font-size: 16px;
    padding-bottom: 22px;
    font-weight: 500;
}
.model_down_cont {
    background: #fff;
    padding-bottom: 50px;
}
.model_down_cont h2{
    font-size: 29px;
}
.model_down_cont p{
    color: #2c2c2c;
}
.model_down_cont ul{
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
    padding-left: 20px;
}
.model_down_cont li{}
 
.qwf {
    padding: 0px;
    margin-bottom: 20px !important;
}
.qwf li{
    font-family: 'Quicksand';
    font-weight: 500;
    color: #2b2b2b;
    list-style: inside;
    padding-bottom: 5px;
}
.buttongf {
    margin-bottom: 20px;
    margin-top: 10px;
}
.buttongf a{
    width: 48%;
    background: black;
    text-align: center;
    border-radius: 100px;
    padding: 10px;
    font-family: 'Quicksand';
    font-weight: 600;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0px 0px 10px #aaa;
}
.buttongf a:last-child{
    background: #a33c2d;
}
.google_reviews {
    background: #f3f3f3;
    padding: 50px 0px;
}
.reviewmain {
    margin-bottom: 40px;
}
.reviewmain p{
    color: #2e2e2e;
    /* text-align: justify; */
}
.named_img_box {
    display: flex;
    margin-bottom: 9px;
}
.named_img_box img{
    width: 50px;
    height: 50px;
}
.name_box h3{
    padding: 0px;
    margin: 0px;
    font-size: 20px;
}
.name_box .star_icon {
    display: flex;
}
.name_box .star_icon i{color: #ffc900;line-height: inherit;}
.star_icon  p{
    padding: 0px;
    margin: 0px;
    margin-left: 10px;
}

.name_box {
    margin-left: 11px;
}
.hesdfg {
    margin-bottom: 30px;
}
.hesdfg h2{
    font-size: 28px;
    font-weight: 900;
    margin: 0px;
}
.hesdfg img{
    width: 270px;
}

.faciltayu {}
.faciltayu li{
    list-style: disc;
    color: #000;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 7px;
}


.model_down_cont li{ list-style: disc;
    color: #000;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 7px;}
    
.list-toyato {
    display: inherit !important;
}
    .list-toyato li {
    display: inherit;
    width: 100%;
    float: none;
    list-style: decimal;
}
.polic p{color:#000}
.polic ul li{color:#000}

    .ordermadn {
    padding: 20px 30px;
    background: #fff;
    margin-top: -149px;
    border-radius: 20px;
    box-shadow: 2px 20px 20px #ccc;
    position:relative;
}
.ordermadn:before{content:"";background: url(../img/orderimage.png);height: 100%;width: 48%;background-size: cover;position: absolute;top: 0;right: 0;border-radius: 0px 20px 20px 0px;}
.buttonprio button:last-child{
    background: #ff6b07;
    border-color: #ff6b07;
}
.radiobusinndet {
    margin-bottom: 10px !important;
}
.radiobusinndet label{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px !important;
    border-radius: 4px;
}
.radiobusinndet input[type=radio] {
    width: 20px;
    height: 20px;
    margin-right: 9px;
}
.labelbutnshi {background: #f6f6f6;border: 1px solid #969696;padding: 14px;margin-bottom: 10px;border-radius: 6px;}
#shippingForm {
    margin-top: 2px;
    padding: 10px;
    margin-bottom: 20px;
}
#shippingForm .form-control{
    background: #fff;
}
#step-4 .form-group{margin-bottom:10px;}
.thankyouorder {
    width: 60%;
    margin: auto;
    background: #fff;
    /* text-align: center; */
    padding: 40px;
    margin-top: -100px;
    border-radius: 20px;
    margin-bottom: 70px;
    box-shadow: 0px 0px 20px #ccc;
}
.iconorder {}
.iconorder img{
    width: 140px;
    margin-bottom: 20px;
}
.imageorder {}
.imageorder img{
    width: 380px;
}
.thankyouorder h3{
    font-size: 25px;
}
.thankyouorder p{
    font-size: 17px;
    line-height: normal;
    color: #000;
}
.mainthankorder {background: #ebebeb;
    padding: 40px 0px 40px;}
    .thankyouorder h4{
    /* color: green; */
}
    .thankyouorder table{}
    .thankyouorder table tr{}
     .thankyouorder table td{
    padding: 12px;
}
      .thankyouorder table td:first-child{
    font-weight: 700;
    color: #000;
    font-size: 16px;
}
      .backtoord {
    margin-top: 30px;
    text-align: center;
}
      .backtoord  a{
    background: #000000;
    color: #fff;
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 100px;
}


.verticalButton {
  padding:0px 0px 0px 0px;
  width: auto;
  height: auto;
  background: red;
  border-radius: 0px 0px 11px 11px;
  -moz-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  -o-transform:rotate(90deg);
  -webkit-transform:rotate(90deg);
  position: fixed;
  right: -86px;
  top: 310px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px;
  z-index: 999;
  animation: blinkw 1s linear infinite;
  cursor:pointer;
}
.verticalButton:hover{color:#fff !important; background:#000}

@keyframes blinkw {
  0%, 100% {background-color:#ff3f3f;}
  50% {background-color: #000;}
}


.new_home_pop {padding: 6px; background: #fff}

.callus-btm1 {
    font-size: 20px;
    margin: 0px 0px 3px;
    padding: 15px 5px 5px 5px;
    font-weight: bold;
    background-color: #ffc107;
    color: #000;
    text-align: center;
    width: 100%;
    display: inline-block;
    z-index: 999;
    height: 50px;
}
.callus-btm1 a {
    color: #000;
}
.text-center1 {
    text-align:center;
}
.clickkk {color: #f14e4e;text-transform: uppercase;/* font-family: 'Quicksand'; */font-weight: 600;}
.blink_text {
    color: #ffc107;
    font-size: 27px;
    font-weight: 700;
    display: block !important;!i;!;
    padding-bottom: 20px;
    padding-top: 2px;
}
.eng-trans h3 {
    font-size: 26px;
    color: #fff;
    margin: 0px;
}
.eng-trans h4 {
    color: #fff;
    margin: 0px;
}
.actdis {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 30px;
    /* font-family: 'Quicksand'; */
    font-weight: 700;
    border-radius: 100px;
    width: 100%;
    margin-bottom: 10px;
}
.eng-trans-content .modal-header .close {
    color: #fff;
    background: #000;
    top: 14px;
    position: absolute;
    right: 14px;
    opacity: inherit;
}
.eng-trans-content {
        background-color: #212121;
        color: #fff;
        background-image: url(../images/american-flag.webp);
        background-color: #fff;
        background-image: cover !important;
        background-size: cover;
        background-color: #530d03;
        background-position: center;
}
.eng-trans-content .modal-header {
    border: none;
    padding: 5px 15px;
}
.eng-trans-content .modal-header .close {
    color: #fff;
    background: #000;
    top: 14px;
    position: absolute;
    right: 14px;
    opacity: inherit;
}
.eng-trans .form-control {
    background: #fff;
    color: #333;
    border-radius: 0px;
    border-radius: 100px;
    height: 47px;
    /* font-size: 14px; */
    font-family: 'Quicksand';
    margin-bottom: 17px;
}
.eng-trans-content .modal-header .close {
    color: #fff;
    background: #ff0000;
    top: -7px;
    position: absolute;
    right: -8px;
    opacity: inherit;
    font-size: 60px;
    height: inherit;
    line-height: inherit;
    padding: 7px;
    z-index: 1;
}
.thirdpart {
    color: #fff;
    font-size: 14px;
    padding-top: 20px;
}

    @media (min-width: 768px) {
        .modal-sm-2 {
            width: 400px;
        }
    }

    /* IE fix */
    *::-ms-backdrop, .pix-round-shape-180 img {
       position: relative;display: inline-block;height: 100%;width: auto;max-width: inherit;left: 0;top: 0;-webkit-transform: translateY(0%) translateX(0%);
    }


    .jarallax {
        position: relative;
        z-index: 0;
    }
    .jarallax > .jarallax-img {
        position: absolute;
        object-fit: cover;
        font-family: 'object-fit: cover;';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .g-recaptcha { margin-bottom: 15px;}
    
    
    
    
    
    .pix_sectionnn{
    background: #fff;
    padding: 40px;
}
    .order_formmmmain {
    /* padding: 40px; */
    /* background: #fff; */
    /* margin-top: -149px; */
    /* border-radius: 40px; */
    /* box-shadow: 2px 20px 20px #ccc; */
}
    .order_formmmmain .form-control{
    height: 40px;
    border-radius: 0px;
    box-shadow: inherit;
    border: 1px solid #a7a7a7;
    color: #000 !important;
}
    .order_formmmmain textarea{
    height: 70px !important;
}
    .order_formm {
    position: relative;
    padding-bottom: 1px;
    margin-bottom: 50px;
}
.order_formm:before{content:"";position: absolute;height: 4px;width: 70px;background: #ff6119;bottom: 0;}
    .order_formm h2{
    margin: 0px;
    /* font-family: poppins; */
    font-weight: 700;
    text-transform: uppercase;
    line-height: normal;
    font-size: 37px;
    color: #fff;
}
    .order_formm p{
    /* font-family: 'Poppins'; */
    color: #fff;
    font-size: 18px;
}
    
   .order_formmmmain .btn.viewallwhite{
    /* background: #2e48b1; */
    color: #fff;
    /* font-family: 'Poppins'; */
    /* font-weight: 500; */
    /* font-size: 19px; */
    border-radius: 100px;
    width: 100%;
    padding: 4px;
    line-height: inherit;
    height: 53px;
    margin-top: 13px;
    background: #ff6b07;
    border-color: #ff6b07;
}
    
    .order_formmmmain img{display:none}
    .order_formmmmain {position:relative;}
    .order_formmmmain:before{/* content:""; */background: url(../img/bg.jpeg);background-size: cover;width: 31%;height: 100%;position: absolute;right: 0;top: 0;background-position: bottom;}
    
    .bg_oerder {background:url(../bgban.png);background-size:cover;background-position:center;padding: 60px 0px 140px;}
   .order_formmmmain button{
    background: #0f80e2;
    /* font-family: 'Poppins'; */
    width: 100%;
    font-size: 17px;
    border-radius: 100px;
    text-transform: uppercase;
    padding: 12px;
    margin-top: 12px;
    font-weight: 500;
}
.order_formmmmain h3{
    margin: 0px;
    /* font-family: 'Poppins'; */
    padding-bottom: 6px;
    font-size: 22px;
    font-weight: 700;
    position:relative;
    margin-bottom: 14px;
}
.order_formmmmain h3:before{content:"";background: #2481e2;width: 60px;height: 3px;position: absolute;bottom: 0;}
.buttonprio {
    display: flex;
    gap: 13px;
}
.buttonprio button{
    display: inline-block;
}
  .buttonprio button:lastchild{} 
  .radbthn {
    display: flex;
    margin-bottom: 19px;
    /* font-family: 'Poppins'; */
    font-size: 17px;
}
.radio1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 .radio2 {
    margin-left: 20px;display: flex;
    justify-content: space-between;
    align-items: center
}
.radbthn input[type=radio] {
    width: 20px;
    height: 20px;
}
.radbthn span{padding-left:5px; color:#000}
.radio1 {display: flex;
    justify-content: space-between;
    align-items: center}
.form-step label{color:#000;font-weight: 500;padding-bottom: 3px;}
.thanxordew {
    text-align: center;
}
.thanxordew img{
    width: 120px;
}
.thanxordew h2{
    color: #fff;
    font-size: 40px;
}
.delveadd {}
.delveadd h4{
    margin: 0px;
    font-size: 18px;
    margin-bottom: 8px;
    color: #000000;
}
.delveadd p{
    font-size: 17px;
}
.orderidd {
    /* float: right; */
    text-align: right;
    border-left: 1px solid #ccc;
}
.orderidd h4{
    margin: 0px;
    font-size: 18px;
    margin-bottom: 8px;
}
.orderidd p{
    font-size: 18px;
}
.productdet {}
.productdet h5{
    font-size: 19px;
    margin-bottom: 0px;
}
.productdet p{}
.pricedeta {
    text-align: right;
}
.pricedeta h4{
    font-size: 19px;
    margin-bottom: 0px;
    font-weight: 700;
}
.pricedeta p{
    font-weight: 800;
}
.product-dety {
    font-size: 23px !important;
    border-bottom: 1px solid #ccc;
    font-weight: 800;
}
.deljghmain {
    background: #f3f3f3;
    padding: 17px;
    border: 1px solid #868686;
    margin-bottom: 20px;
}
.bandcall {
    background: #2d47b0;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}
.bandcall p{
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 19px;
}
.bandcall a{}



.phonee {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
}
.phonee i{
    background: #b20000;
    width: 75px;
    height: 75px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 40px;
    position: relative;
}
.phonee span{
    background: #a33c2d;
    border-radius: 100px;
    padding: 7px;
    padding: 17px 21px 17px 49px !important;
    margin-left: -43px;
    font-size: 32px;
    font-weight: 700;
    /* font-family: 'Quicksand'; */
    color: #ffffff;
}
.colausssffomr {
    text-align: center;
}
.colausssffomr span{position:relative;color: #fff;font-weight: 700;background: #a33c2d;display: inline-block;width: 100%;}
.colausssffomr span:before{content:"";position: absolute;background: #fff;height: 1px;width: 100%;left: 0;right: 0;top: 13px;}
.colausssffomr p{
    padding: 0px !important;!i;!;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff;
}
.colausssffomr a{
    color: #000000;
    font-size: 24px;
    background: yellow;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 700;
    margin-top: 0px;
}
.baner_form .btn.btn-skin:hover{color:#fff;}
.banlisty {
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px;
}
.banlisty li{
    display: inline-block;
    width: 48%;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 13px;
}
.banlisty li img{
    width: 21px;
}
.thankyoudetail {
    text-align: center;
    background: #fff;
    width: 70%;
    margin: auto;
    padding: 40px;
    border: 2px solid white;
    box-shadow: 0px 0px 20px #ccc;
}
.thankyoudetail h2{
    margin: 0px;
}
.thankyoudetail h3{
    margin: 0px;
    color: #0ead0e;
    font-size: 24px;
    margin-bottom: 20px;
}
.thankyoudetail p{
    font-weight: 500;
    /* font-family: Quicksand; */
    color: #000;
}
.thankyoudetail p a{
    display: block;
    color: #c51717;
    font-size: 19px;
    display: block;
    padding: 6px;
    font-weight: 700;
}
.thankyoudetail table{}
.thankyoudetail tr{}
.thankyoudetail td{
    padding: 6px;
    border: 1px solid #ccc;
    /* font-family: Quicksand; */
    font-weight: 600;
}
.thankyoudetail td:first-child{
    font-weight: 500;
}
.mainthank {
    background: #ebebeb;
    padding: 62px 0px;
}

.mainthank ul {margin:0px; padding:0px}

.mainthank ul li{
  list-style: none;
  letter-spacing: 0px;
  font-size:40px;
  /* font-family: Quicksand; */
  color:#484848;
  font-weight:700;
  animation: ani 1.2s linear infinite;
  display: inline-block;
}
.mainthank ul li:nth-child(1){
  animation-delay: .2s;
}
.mainthank ul li:nth-child(2){
  animation-delay: .6s;
}
.mainthank ul li:nth-child(3){
  animation-delay: .8s;
}
.mainthank ul li:nth-child(4){
  animation-delay: 1.0s;
}
.mainthank ul li:nth-child(5){
  animation-delay: 1.4s;
}
.mainthank ul li:nth-child(6){
  animation-delay: 1.8s;
}
.mainthank ul li:nth-child(7){
  animation-delay: 1.12s;
}
@keyframes ani {
  0%{
     color:#44848;
     text-shadow: none;
  }
  90%{
     color:#44848;
     text-shadow: none;
  }
  100%{
     color:red;
     text-shadow: 0 0 7px red,0 0 70px red;
  }
}


.callnowbtn {
    background: #ffc107;
    color: #000;
    padding: 10px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 100px;
    padding: 11px 40px;
    text-transform: uppercase;
    /* font-family: 'Quicksand'; */
    font-weight: 600;
}

.calltabl {
    background: red;
    display: inline-block;
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-weight: 600;
}
.calltabl i {
    padding: 0px;
    width: inherit;
    font-size: 18px;
}
.calltabl:hover{color:#fff!important}

@keyframes blinkw {
  0%, 100% {background-color:#ff3f3f;}
  50% {background-color: #000;}
}
.calltabl{
  background-color: #ff3f3f;
  color: white;
  animation: blinkw 1s linear infinite;
}

#history h2 {
    color: #FFF;
    /* font-family: "Bebas Neue"; */
    font-size: 38px;
    font-weight: 900;
    line-height: initial;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}
#history h2 strong {
    color: #fded00;
    border-bottom: 3px solid #fded00;
}
#history h2 span {
    /* font-size: 38px; */
}
#history img {
    margin-left: 65px;
    width: 40%;
    height: 100% !important;
}
#history{background:url(../img/bgfhj.png);background-size:cover;background-repeat:no-repeat;padding: 60px 0px;margin-bottom: 0px;}

.banneruse {
    padding: 50px 0px 160px;
}
.banneruse:before{
    opacity: 0.9;
    background: #fff;
}
.banneruse h1{
    color: #000;
    FONT-WEIGHT: 800;
}
.policyy {padding:60px 0px;}
.policyy h1{
    font-size: 37px;
}
.policyy h2{
    font-size: 27px;
    margin-bottom: 4px;
}
.policyy li{
    font-family: 'Syne';
    list-style: disc;
    color: #101010;
    font-size: 17px;
    padding-bottom: 9px;
    line-height: 30px;
}
.policyy ul{
    padding-left: 18px;
}
 .policyy p{  color: #101010;}



.box_ban {
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
.box_ban img{
    width: 100%;
}
.box_ban h3{
    margin: 0px;
    line-height: normal;
    font-size: 15px;
    font-weight: 500;
}
.top_head {
    background: #2a2a2a;
    /* padding: 6px 0px; */
}
.left_mail li{
    list-style: none;
    display: inline-block;
    font-size: 17px;
    padding-right: 8px;
}
.left_mail li a{
    color: #fff;
    font-family: Ubuntu
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left_mail ul{
    padding: 0px;
    margin: 0px;
    padding: 5px 0px;
}
.left_mail li span{}
.right_side_head  { float: right; display: flex; justify-content: center}
.right_side_head img {
    width: 64%;
}
.button_right_head a{
  background: #fb0b0b;
  height: 100%;
  display: inline-block;
  padding: 8px 18px;
  color: #fff;
  margin-left: 39px;
  font-family: Ubuntutext-transform: uppercase;
  font-weight: 600;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
  }
  .bb_logo img {
    max-width: 120px !important;
}
.top_headdd-mob {
    display: none;
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 30px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 18s linear infinite;
  color: #fff;
  font-family: 'Ubuntu';
  color: #3dfe15;
  font-weight: 500;
  top: 3px;
}
.marquee .content{}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.arrivhead {
    margin: 0px;
    line-height: normal;
    margin-bottom: 40px;
    font-size: 30px;
    position: relative;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}
.arrivhead:before{content:"";background: #f8c346;width: 70px;height: 3px;position: absolute;bottom: 0;}
.bgadddiscount {background: url(../img/banner_back_1-1-1.jpg);background-size:cover;background-repeat:no-repeat;padding: 22px;border-radius: 12px;}
.contentdisc {
    text-align: center;
}
.contentdisc span{
    color: #fff;
    font-size: 20px;
}
.contentdisc h3{
    line-height: normal;
    margin: 0px;
    color: #fff;
    font-size: 26px;
    text-transform: uppercase;
}
.contentdisc h4{
    margin: 0px;
    color: #fff;
    font-size: 17px;
}
.contentdisc h5{
    margin: 0px;
    font-size: 55px;
    color: #fff;
}
.calldiscc {background:url(../img/bgdiscg.png);background-size:cover;background-repeat:no-repeat;padding: 30px;border-radius: 13px;margin-top: 20px;text-align: center;}
.calldisctext {}
.calldisctext h4{
    color: #fff;
    font-size: 40px;
    margin: 0px;
    margin-bottom: 15px;
    line-height: normal;
}
.calldisctext p{
    color: #fff;
    font-size: 33px;
    line-height: normal;
}
.calldisctext p a{
    color: #f8c246;
    font-weight: 700;
}

.prod_box_en {
    padding: 10px;
    /* box-shadow: 0px 0px 20px #ccc; */
    border: 1px solid #ccc;
    margin-bottom: 33px;
    border-radius: 10px;
}
.prod_box_en img{
    width: 100%;
    /* border: 1px solid #000; */
    margin-bottom: 10px;
    /* min-height: 180px; */
    height: auto;
}
.prod_box_en h3{
    line-height: normal;
    font-size: 15px;
    margin: 0px;
    padding-bottom: 7px;
}
.prod_box_en ul{
    padding: 0px;
    margin: 0px;
}
.prod_box_en ul li{list-style: none;display: flex;justify-content: space-between;font-family: 'Ubuntu';font-size: 15px;}
.prod_box_en li span{}
.btnproduct {}
.btnproduct a{
    display: inline-block;
    width: 100%;
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 8px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 8px;
    border-radius: 5px;
}
.fprice {
    text-decoration: line-through;
    color: #878787 !important;
    font-size: 15px !important;
    font-weight: 500;
}
.ofprice {
    color: #388e3c !important;
    font-weight: 600 !important;
    font-size: 18px !important;
}
.product_sect {padding-top:70px;}
.img-enginee img{width:300px;}
.bgengj {padding:80px 0px;}

    
    @media only screen and (max-width: 700px) {
        .order_formmmmain {
    padding: 30px 0px;
}
          .order_formmmmain form{
    padding: 0px 20px  20px;
}
          .order_formm{
    padding: 0px 12px 7px;
}
         .order_formmmmain img{display:block;margin-bottom: 20px;}
        .order_formmmmain:before{display:none}
        .pix_sectionnn {
    background: #e3e3e3;
    padding: 20px;
}
}
@media screen and (max-width: 768px) {
        .mainthank ul li {
        font-size: 20px;
    }
        .newyru h4 {
        font-size: 18px;
    }
    .thankyoudetail {
    text-align: center;
    background: #fff;
    width: 100%;
    margin: auto;
    padding: 20px;}
    .brandd li {
    width: 100%;
    }
    .ordermadn:before {display:none}
    .ordermadn {
    padding: 0px;
}
.thanxordew img {
    width: 90px;
}
.thanxordew h2 {
    color: #fff;
    font-size: 25px;
    line-height: inherit;
}
.thankyouorder {
    width: 100%;
   
    padding: 20px;
}
.thankyouorder h3 {
    font-size: 22px;
    line-height: normal;
}
.delveadd h4 {line-height:initial; font-size:16px;}
.orderidd h4 {
    margin: 0px;
    font-size: 16px;}
    .delveadd p {
    font-size: 14px;
}
.orderidd p { 
    font-size: 15px;
}
.orderidd p {
    font-size: 16px;
}
.banlisty li {
    display: inline-block;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    /* color: #fff; */
    padding-bottom: 10px;
}
    .parallax-header h1 {
        /* font-size: 25px; */
    }
    .baner_form {
 
    margin-bottom: 30px;
}


.parallax-header {
    background-position: center;
    /* height: 100vh; */
    /* background-image: url(img/slider/1.jpg); */
    padding: 40px 0px 130px;
}
.pro_body {margin-bottom:20px;}
.testimoniall {
    padding: 40px 10px;
    background: #212529;
}
.testimoniall  h2{font-size:30px;}
.dispkfjghgk {display:block}
    .gkory {display:block}
    .top_head {display: none}
   .top_headdd-mob{display: inherit;}
    .top_headdd-mob {background: #0e0e0e;}
    .top_headdd-mob ul{padding: 0px; margin: 0px;}
    .top_headdd-mob li{list-style: none;float: left;padding: 4px 6px;border-right: 1px solid #515151;}
    .top_headdd-mob a{color: #fff;font-size: 16px;margin: 0px;padding: 7px 4px;font-family: 'Ubuntu';}
    .top_headdd-mob li:last-child{padding-right: 0px;float: right;padding: 0px;width: 119px;z-index: 999;position: relative;}
     .top_headdd-mob li:first-child{padding-left: 0px;width: 75%;position: absolute;} 

.box_ban {margin-bottom:10px;}



}
    
    