:root {
    --primary-color: #f85c00;
    --secondary-color: #101010;
}
@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}
#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}
#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #f85c00;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
#preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #f85c00;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}
a:hover,
a:active {
    color: #f85c00;
    text-decoration: none;
}
.card {
    color: #575a7b;
}
.card .card-body {
    color: #575a7b;
}
.secondary-overlay[data-overlay-dark]:before {
    background: #101010bd;
}
.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(0, 23, 54, 0.76);
    background: linear-gradient(-90deg, transparent, #101010 65%);
}
.text-primary {
    color: #f85c00 !important;
}
.bg-primary {
    background-color: #f85c00 !important;
}
.text-secondary {
    color: #101010 !important;
}
.bg-secondary {
    background-color: #101010 !important;
}
.btn-style01.border-primary {
    border: 1px solid #f85c00 !important;
}
.text-dark,
.text-dark-hover:hover {
    color: #20252d !important;
}
.text-white-hover:hover {
    color: #fff !important;
}
.text-primary-hover:hover {
    color: #f85c00 !important;
}
.text-white-hover-light:hover {
    color: rgba(255, 255, 255, 0.65) !important;
}
.min-height-390px {
    min-height: 390px;
}
.min-vh-100 {
    min-height: 100vh;
}
.min-height-600 {
    min-height: 600px;
}
@media screen and (max-width: 991px) {
    .min-height-600 {
        min-height: 450px;
    }
}
@media screen and (max-width: 575px) {
    .min-height-600 {
        min-height: 300px;
    }
}
.progress-medium {
    height: 10px;
    border-radius: 50px;
    box-shadow: none;
}
.ls-minus-2px {
    letter-spacing: -2px;
}
.ms-minus-20 {
    margin-left: -20px;
}
.w-45px {
    width: 45px !important;
}
.primary-shadow {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
}
.display-custom-1 {
    font-size: 104px;
    letter-spacing: -6px;
    line-height: 1;
}
@media screen and (max-width: 991px) {
    .display-custom-1 {
        font-size: 94px;
        letter-spacing: -5px;
    }
}
@media screen and (max-width: 767px) {
    .display-custom-1 {
        font-size: 74px;
        letter-spacing: -4px;
    }
}
@media screen and (max-width: 575px) {
    .display-custom-1 {
        font-size: 55px;
        letter-spacing: -3px;
    }
}
.display-custom-2 {
    font-size: 150px;
    letter-spacing: -8px;
    line-height: 1;
}
@media screen and (max-width: 1399px) {
    .display-custom-2 {
        font-size: 135px;
    }
}
@media screen and (max-width: 1199px) {
    .display-custom-2 {
        font-size: 125px;
        letter-spacing: -5px;
    }
}
@media screen and (max-width: 991px) {
    .display-custom-2 {
        font-size: 94px;
        letter-spacing: -3px;
    }
}
@media screen and (max-width: 767px) {
    .display-custom-2 {
        font-size: 74px;
        letter-spacing: -2px;
    }
}
@media screen and (max-width: 575px) {
    .display-custom-2 {
        font-size: 55px;
    }
}
.border-text {
    text-fill-color: transparent;
    text-stroke-color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
}
.border-text.primary {
    text-fill-color: transparent;
    text-stroke-color: #f85c00;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #f85c00;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
}
.border-text.secondary {
    text-fill-color: transparent;
    text-stroke-color: #101010;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #101010;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
}
@media screen and (min-width: 992px) {
    .bg-secondary-left:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
        opacity: 0.1;
        width: 40%;
        height: 100%;
    }
}
.image-hover {
    position: relative;
    overflow: hidden;
}
.image-hover:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.image-hover:hover:after,
.image-hover:active:after,
.image-hover:focus:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}
.scroll-top-percentage.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 992px) and (max-width: 1199px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px;
    }
}
#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    color: var(--rr-common-white);
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600;
}
#scroll-value i {
    font-size: 20px;
}
@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}
.scroll-top-percentage.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media (max-width: 575px),
    only screen and (min-width: 576px) and (max-width: 767px),
    only screen and (min-width: 992px) and (max-width: 1199px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px;
    }
}
#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    color: var(--rr-common-white);
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600;
}
#scroll-value i {
    font-size: 20px;
}
@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.list-style01 {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
.list-style01 li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}
.list-style01 li:after {
    content: "\e64c";
    font-family: "themify";
    position: absolute;
    left: 0px;
    top: 1px;
    z-index: 1;
    font-weight: 600;
    color: #f85c00;
}
.list-style01 li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.list-style02 li {
    display: inline-block;
    margin-right: 2rem;
}
.list-style02 li:last-child {
    margin-right: 0;
}
.list-style02 li a {
    color: rgba(255, 255, 255, 0.6);
}
.list-style02 li a:hover {
    color: #f85c00;
}
.list-style03 {
    margin: 0;
    padding: 0;
    list-style: none;
}
.list-style03 li {
    margin-bottom: 10px;
}
.list-style03 li:last-child {
    margin-bottom: 0;
}
.list-style03 li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    padding: 15px 20px 15px 20px;
    border: 1px solid #ededed;
    font-weight: 600;
    background: #ffffff;
    transition: all 0.3s ease 0s;
}
.list-style03 li a:before {
    position: absolute;
    content: "\e628";
    font-weight: 500;
    font-family: "themify";
    transition: width 0.3s linear;
    font-size: 18px;
    top: 12px;
    right: 20px;
}
.list-style03 li a:hover {
    background-color: #f85c00;
    color: #ffffff;
}
.list-style03 li.active a {
    background-color: #f85c00;
    color: #ffffff;
}
.list-style04 li {
    border-bottom: 1px solid #e4e4e4;
    font-weight: 500;
    padding: 20px 0;
}
.list-style04 li:last-child {
    border-bottom: 0;
}
.list-style04 li i {
    margin-right: 12px;
    font-size: 14px;
    color: #f85c00;
    font-weight: 700;
}
.list-style05 li {
    font-weight: 600;
    position: relative;
    padding: 0 0 0 45px;
    margin-bottom: 14px;
}
.list-style05 li:last-child {
    margin-bottom: 0;
}
.list-style05 li:before {
    content: "\e64c";
    font-family: "themify";
    color: #f85c00;
    font-size: 12px;
    background: rgba(248, 92, 0, 0.1);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.btn-style01 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f85c00;
    color: #fff;
    line-height: 1.5;
    font-weight: 700;
    position: relative;
    outline: none;
    transition: all 0.4s ease;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px !important;
    padding: 15px 34px !important;
    z-index: 9;
    border-radius: 4px;
    text-transform: uppercase;
}
.btn-style01:hover,
.btn-style01:active,
.btn-style01:focus {
    color: #fff;
    background: #101010;
}
.btn-style01.md {
    padding: 12px 30px !important;
}
.btn-style01.sm {
    padding: 10px 26px !important;
}
.btn-style01.white {
    background: #fff;
    color: #f85c00 !important;
}
.btn-style01.white:hover {
    background-color: #f85c00;
    color: #fff !important;
}
.btn-style01.secondary {
    background-color: #101010;
    color: #fff !important;
}
.btn-style01.secondary:hover {
    background-color: #f85c00;
    color: #fff !important;
}
.btn-style01.white-hover:hover,
.btn-style01.white-hover:active,
.btn-style01.white-hover:focus {
    background-color: #fff !important;
    color: #f85c00 !important;
}
@media screen and (min-width: 992px) {
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style01 {
        color: #fff;
        border: 1px solid transparent;
    }
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style01:hover,
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style01:active,
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style01:focus {
        color: #f85c00;
        border: 1px solid #f85c00;
    }
    .header-style3.scrollHeader .attr-nav > ul > li > a.btn-style01 {
        color: #fff;
        border: 1px solid transparent;
    }
    .header-style3.scrollHeader .attr-nav > ul > li > a.btn-style01:hover,
    .header-style3.scrollHeader .attr-nav > ul > li > a.btn-style01:active,
    .header-style3.scrollHeader .attr-nav > ul > li > a.btn-style01:focus {
        color: #f85c00;
        border: 1px solid #f85c00;
    }
}
.btn-style02 {
    background-color: #f85c00;
    color: #fff !important;
    font-size: 14px !important;
    padding: 12px 30px !important;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    width: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.15rem;
}
.btn-style02:hover {
    color: #fff !important;
    -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}
.btn-style02.white {
    background-color: #fff;
    color: #f85c00 !important;
}
.btn-style02.secondary {
    background-color: #101010;
    color: #fff !important;
}
.btn-style02.md {
    padding: 10px 26px !important;
}
.btn-style03 {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 34px !important;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden !important;
    display: inline-block;
    text-align: center;
    border: 2px solid #f85c00;
    color: #fff;
    z-index: 1;
    background-color: #f85c00;
    vertical-align: middle;
    text-transform: uppercase;
}
.btn-style03:after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewX(-20deg);
    -khtml-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: -1;
}
.btn-style03:hover,
.btn-style03:focus,
.btn-style03:active {
    background-color: #f85c00;
    color: #fff;
}
.btn-style03:hover:after,
.btn-style03:focus:after,
.btn-style03:active:after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.btn-style03.secondary {
    border: 2px solid #101010;
    background-color: #101010;
}
.btn-style03.md {
    padding: 8px 26px !important;
    font-size: 15px;
}
.btn-style03.sm {
    padding: 6px 20px !important;
}
@-webkit-keyframes btn_shine {
    100% {
        left: 200%;
    }
}
@keyframes btn_shine {
    100% {
        left: 200%;
    }
}
@media screen and (max-width: 1399px) {
    .btn-style03 {
        padding: 10px 30px !important;
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .btn-style03 {
        padding: 8px 25px !important;
        font-size: 14px;
    }
}
.button-text {
    padding: 0;
    position: relative;
    text-decoration: none;
    border: 0;
    background-color: transparent;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    width: auto;
    font-weight: 500;
}
.button-text a {
    border-bottom: 2px solid;
}
.button-text:hover {
    border-color: #e74860;
}
.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}
.top-bar-info ul {
    margin-bottom: 0;
}
.top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0;
}
.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0;
}
.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom;
}
.top-social-icon {
    padding: 0;
    float: right;
    margin: 0;
}
.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px;
}
.top-social-icon li:last-child {
    padding-right: 0;
}
.top-social-icon li:last-child a {
    padding-right: 0;
}
.top-social-icon li a {
    color: #fff;
    line-height: 28px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 0 3px;
}
.top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.65);
}
.navbar-nav li.current > a,
.navbar-nav li.active > a {
    color: #f85c00 !important;
}
.attr-nav > ul > li > a.butn {
    color: #fff;
}
.navbar > ul > li.current > a:after {
    border-color: transparent #f85c00 #f85c00 transparent !important;
}
.menu_area-light .navbar-nav li.current > a,
.menu_area-light .navbar-nav li.active > a {
    color: #f85c00;
}
.menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #f85c00 #f85c00 transparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #f85c00;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
    color: #f85c00;
}
.menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #f85c00;
}
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #f85c00 #f85c00 transparent;
}
@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active > a,
    .menu_area-light .navbar-nav li.has-sub a:hover {
        color: #f85c00;
    }
    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: #f85c00;
    }
    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #f85c00;
    }
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #f85c00;
    }
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
        border-color: transparent #f85c00 #f85c00 transparent;
    }
    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
        border-color: transparent #f85c00 #f85c00 transparent;
    }
    .header-style2.scrollHeader .navbar-nav li.current > a {
        color: #f85c00;
    }
    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
        color: #f85c00;
    }
    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #f85c00 #f85c00 transparent;
    }
    .header-style2 .navbar ul ul li.active > a {
        color: #f85c00;
    }
    .header-style2 .navbar-nav li.has-sub a:hover,
    .header-style2 .navbar-nav li.has-sub a:active,
    .header-style2 .navbar-nav li.has-sub a:focus {
        color: #f85c00;
    }
    .header-style2 .navbar-nav li.current > a,
    .header-style2 .navbar-nav li.active > a {
        color: #f85c00;
    }
    .header-style2 .navbar > ul > li.has-sub > a:hover:after,
    .header-style2 .navbar > ul > li.has-sub > a:active:after,
    .header-style2 .navbar > ul > li.has-sub > a:focus:after {
        border-color: transparent #f85c00 #f85c00 transparent;
    }
}
@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #f85c00;
    }
    .header-style1 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
    .header-style1 .navbar-toggler:before {
        background: #fff;
    }
    .header-style1 .navbar-toggler.menu-opened:after,
    .header-style1 .navbar-toggler.menu-opened:before {
        background: #fff;
    }
}
.header-style2 .navbar-nav li.current > a {
    color: #f85c00;
}
.header-style2 .navbar > ul > li.current > a:after {
    border-color: transparent #f85c00 #f85c00 transparent;
}
.header-style2.scrollHeader .navbar-nav li.current > a {
    color: #f85c00;
}
.header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #f85c00;
}
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #f85c00 #f85c00 transparent;
}
@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
        color: #f85c00;
    }
    .header-style2 .butn.secondary:before {
        background: #ffffff;
    }
    .header-style2 .butn.secondary:hover,
    .header-style2 .butn.secondary:focus,
    .header-style2 .butn.secondary:active {
        color: #121c22 !important;
    }
    .header-style2.scrollHeader .butn.secondary:before {
        background: #f85c00;
    }
    .header-style2.scrollHeader .butn.secondary:hover,
    .header-style2.scrollHeader .butn.secondary:focus,
    .header-style2.scrollHeader .butn.secondary:active {
        color: #fff !important;
    }
}
.header-style3 .navbar-nav li.current > a,
.header-style3 .navbar-nav li.active > a {
    color: #f85c00;
}
@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active > a {
        color: #f85c00;
    }
    .header-style3 .navbar-nav > li > a:hover,
    .header-style3 .navbar-nav > li > a:active,
    .header-style3 .navbar-nav > li > a:focus {
        color: #f85c00;
    }
    .header-style3 .navbar ul ul li.active > a {
        color: #f85c00;
    }
    .header-style3 .navbar-nav li.has-sub a:hover,
    .header-style3 .navbar-nav li.current > a {
        color: #f85c00;
    }
    .header-style3 .navbar-nav > li.has-sub > a:hover {
        color: #f85c00;
    }
    .header-style3 .navbar > ul > li.has-sub > a:hover:after,
    .header-style3 .navbar > ul > li.current > a:after {
        border-color: transparent #f85c00 #f85c00 transparent;
    }
    .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #f85c00;
    }
    .header-style3.scrollHeader .navbar > ul > li.has-sub > a:hover:after {
        border-color: transparent #f85c00 #f85c00 transparent;
    }
    .header-style3.scrollHeader .navbar-nav > li.active > a {
        color: #f85c00;
    }
    .header-style3.scrollHeader .navbar-nav li.current > a {
        color: #f85c00;
    }
    .header-style3.scrollHeader .navbar-nav li.current > a:hover {
        color: #f85c00;
    }
    .header-style3.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #f85c00 #f85c00 transparent;
    }
}
@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
        background: #f85c00;
    }
    .header-style3 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
    .header-style3 .navbar-toggler:before {
        background: #fff;
    }
    .header-style3 .navbar-toggler.menu-opened:after,
    .header-style3 .navbar-toggler.menu-opened:before {
        background: #fff;
    }
}
.slider-fade1 .bg-img {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 8000ms linear;
    -moz-transition: all 8000ms linear;
    -ms-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
}
.slider-fade1 .owl-item.active .bg-img {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}
.slider-fade1 .item {
    height: 100vh;
}
.slider-fade1 span.sub-title {
    animation-delay: 0.8s;
}
.slider-fade1 h1 {
    animation-delay: 1s;
}
.slider-fade1.owl-carousel .owl-nav button {
    width: 55px;
    height: 55px;
    line-height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: #20282d;
    text-align: center;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.slider-fade1.owl-carousel .owl-nav button.owl-prev {
    left: 5%;
}
.slider-fade1.owl-carousel .owl-nav button.owl-next {
    right: 5%;
}
.slider-fade1.owl-carousel .owl-nav button.owl-prev i,
.slider-fade1.owl-carousel .owl-nav button.owl-next i {
    font-size: 19px;
    color: #fff;
}
.slider-fade1 .owl-item {
    position: relative;
}
.slider-fade1 .owl-dots {
    position: absolute;
    bottom: 0%;
    left: 50%;
    margin: 0 0 0 45px;
    transform: translateX(-50%);
    max-width: 300px;
    width: 100%;
    text-align: center;
}
.slider-fade1.owl-carousel .owl-dots {
    counter-reset: dots;
    font-size: 1.7rem;
    color: #f85c00;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot.active {
    color: #f85c00;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot:before {
    counter-increment: dots;
    content: counter(dots, decimal-leading-zero);
    position: absolute;
    margin: 7px;
    transition: all 0.2s ease;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.4);
    left: -38px;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot.active:before {
    color: #f85c00;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot span {
    background: transparent;
    height: 60px;
    width: 50px;
    border-radius: 0;
    position: relative;
    margin: 0;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot span:before {
    content: "";
    position: absolute;
    top: 16px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 22px;
    left: auto;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    width: 1px;
    left: auto;
    z-index: 99;
    background: #f85c00;
    height: 0;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot.active span {
    width: 97px;
    background: transparent;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot.active span:before {
    width: 60px;
    margin: 0 16px 0 23px;
    height: 1px;
}
.slider-fade1.owl-carousel .owl-nav [class*="owl-"]:hover {
    background: #f85c00;
}
.slider-fade1.owl-carousel .owl-dots .owl-dot.active span,
.slider-fade1.owl-carousel .owl-dots .owl-dot:hover span,
.slider-fade1.owl-carousel .owl-dots .owl-dot:focus span {
    background: transparent;
}
.banner-style01 h1 {
    margin-bottom: 20px;
}
.banner-style01 p {
    font-size: 20px;
    margin-bottom: 25px;
}
.banner-style01 .banner-button {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: center;
    justify-content: flex-start;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
}
.banner-style01 .banner-button .button-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-right: 15px;
    width: 65px;
    height: 65px;
    background-color: #f85c00;
    border-radius: 50%;
}
.banner-style01 .banner-button .button-arrow i {
    font-size: 18px;
    color: #fff;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    font-weight: 700;
}
.banner-style01 .banner-button .button-text a {
    font-size: 19px;
}
.banner-style01 .left-text {
    position: absolute;
    transform: rotate(-90deg) translate(-50%, 50%);
    transform-origin: 0 50%;
    transition: 1s cubic-bezier(0.7, 0, 0.3, 1) !important;
    top: 50%;
    left: 50px;
    z-index: 9;
}
.banner-style01 .left-text span {
    font-size: 16px;
    color: #fff;
}
.banner-style01 .left-text span i {
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
}
@media screen and (max-width: 1599px) {
    .banner-style01 .left-text {
        left: 10px;
    }
}
@media screen and (max-width: 1199px) {
    .banner-style01 .left-text {
        left: 0;
    }
}
@media screen and (max-width: 767px) {
    .banner-style01 .banner-button .button-arrow {
        width: 50px;
        height: 50px;
    }
    .banner-style01 .banner-button .button-arrow i {
        font-size: 14px;
    }
    .banner-style01 .banner-button .button-text a {
        font-size: 16px;
    }
}
.section-title01 .sub-title {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    color: #f85c00;
    text-transform: uppercase;
    position: relative;
}
@media screen and (max-width: 575px) {
    .section-title01 .sub-title {
        font-size: 13px;
    }
}
.section-title02 > .sm-text {
    position: relative;
    color: #f85c00;
    font-size: 16px;
    font-weight: 700;
    padding-right: 50px;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
}
.section-title02 > .sm-text:before {
    position: absolute;
    content: "";
    right: 0px;
    bottom: 9px;
    width: 40px;
    height: 2px;
    background-color: #101010;
}
.section-title02.line-white > .sm-text:before {
    content: "";
    background-color: #fff;
}
.section-title02 > .sm-text:after {
    position: absolute;
    content: "";
    right: 10px;
    bottom: 14px;
    width: 30px;
    height: 2px;
    background-color: #f85c00;
}
.section-title02.white > .sm-text:before {
    background-color: #fff;
}
.section-title03 .small-title {
    font-weight: 600;
    color: #f85c00;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    display: inline-block;
}
.section-title03 .small-title:before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #f85c00;
    width: 7px;
    height: 7px;
    content: "";
    position: absolute;
}
.section-title03 .title-sm {
    position: relative;
    z-index: 2;
    display: inline-block;
}
.section-title03 .title-sm:hover:before {
    height: 100%;
    bottom: 0;
}
@media screen and (min-width: 575px) {
    .section-title03 .title-sm:before {
        content: "";
        background: rgba(248, 92, 0, 0.3);
        height: 8px;
        width: 100%;
        position: absolute;
        bottom: 8px;
        z-index: -1;
        transition:
            transform 0.85s,
            opacity 0.85s,
            height 0.45s,
            bottom 0.45s,
            color 0.45s;
        transform: scale(1, 1) !important;
    }
}
.page-title-section {
    padding: 180px 0 100px 0;
    text-align: center;
}
.page-title-section.style1 {
    padding: 150px 0;
}
.page-title-section h1 {
    font-size: 72px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
    letter-spacing: -2px;
}
.pagetitle-lg-title {
    display: block;
    font-size: 105px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    opacity: 0.2;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    margin: 0 0 -58px 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}
.page-title-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    line-height: 1.2;
}
.page-title-section ul li {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-title-section ul li:last-child {
    color: #ffffff;
    opacity: 0.8;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-title-section ul li:last-child a {
    color: #ffffff;
    opacity: 0.8;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-title-section ul li:after {
    content: "";
    font-weight: 700;
    vertical-align: middle;
    background-color: #f85c00;
    width: 10px;
    padding: 0 5px 0 10px;
    height: 2px;
    display: inline-block;
    margin: 0 15px;
}
.page-title-section ul li:last-child:after {
    content: none;
}
.page-title-section ul li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 170px 0 85px 0;
    }
    .page-title-section h1 {
        font-size: 58px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 150px 0 80px 0;
    }
    .page-title-section.style1 {
        padding: 130px 0;
    }
    .page-title-section h1 {
        font-size: 52px;
    }
}
@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 130px 0 70px 0;
    }
    .page-title-section.style1 {
        padding: 100px 0;
    }
    .page-title-section h1 {
        font-size: 46px;
    }
}
.card-style01 {
    border: none;
    border-radius: 0.375rem;
    height: 100%;
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
}
.card-style01 .post-date {
    position: absolute;
    right: 30px;
    top: -42px;
    background: #f85c00;
    color: #fff;
    border-radius: 3px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 14px 15px;
    min-width: 75px;
}
.card-style01 .post-date .month {
    font-size: 12px;
    text-transform: uppercase;
}
.card-style01 .text-uppercase.display-31 a {
    margin-right: 15px;
    margin-top: 5px;
    display: inline-block;
    vertical-align: top;
}
.card-style01 .blog-tag:before {
    content: "";
    margin: 0 0.75em;
    width: 3px;
    height: 3px;
    background-color: #f85c00;
    top: 50%;
    transform: translateY(-50%);
    left: -30%;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
}
.card-style01 > .card-body:nth-child(1) .post-date {
    display: none;
}
.card-style02 {
    position: relative;
    background-color: #ffffff;
    padding: 45px 25px 50px 50px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 0.375rem;
    overflow: hidden;
    height: 100%;
}
.card-style02:hover {
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}
.card-style02:hover .read-more i {
    color: #ffffff;
    background-color: #f85c00;
}
.card-style02 .card-icon-box {
    position: absolute;
    right: -52px;
    bottom: -52px;
    height: 210px;
    width: 210px;
    background: #f3f3f3;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 40px 50px;
    border-radius: 50%;
    color: #f85c00;
    font-size: 72px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.card-style02 .card-text {
    position: relative;
    margin-bottom: 60px;
}
.card-style02 .read-more {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.375rem;
    color: #6a6a6a;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
}
.card-style02 .read-more i {
    margin-right: 20px;
    height: 52px;
    width: 52px;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1199px) {
    .card-style02 {
        padding: 35px 20px 33px 20px;
    }
    .card-style02 .card-icon-box {
        right: -80px;
        bottom: -71px;
        height: 190px;
        width: 190px;
        padding: 36px 36px;
        font-size: 55px;
    }
}
.card-style03 {
    box-shadow: 0px 0px 10px 0px rgba(89, 75, 128, 0.09);
    border: unset;
    height: 100%;
    transition-timing-function: ease-in-out;
    transform: translateZ(0);
    transition-duration: 0.6s;
}
.card-style03:hover {
    transform: translateY(-13px);
}
.card-style03 .card-header {
    z-index: 1;
    position: relative;
    padding: 45px 35px 0 35px;
    margin-bottom: 70px;
    text-align: center;
}
.card-style03 .card-header h6 {
    border-radius: 3px;
    padding: 7px 25px 4px 25px;
    display: inline-block;
}
.card-style03 .price-icon {
    margin-bottom: -35px;
    height: 62px;
    width: 62px;
    background: #fff;
    box-shadow: 0px 15px 30px 0px rgba(214, 214, 214, 0.7);
    border-radius: 3px;
    line-height: 38px;
    text-align: center;
    display: inline-block;
}
.card-style04 {
    position: relative;
    transition: 0.5s;
    padding: 0px 45px 40px 45px;
    color: inherit;
    z-index: 1;
    margin-top: 40px;
    display: inline-block;
    width: 100%;
    min-height: 380px;
    border-radius: 10px;
}
.card-style04:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(16, 16, 16, 0.55);
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
    z-index: 1;
}
.card-style04 .icon {
    margin: -40px 0px 30px 0px;
    font-size: 36px;
    background-color: #f85c00;
    color: #fff;
    display: inline-block;
    transition: 0.5s;
    height: 75px;
    width: 75px;
    position: relative;
    z-index: 3;
    text-align: center;
    border-radius: 50%;
}
.card-style04 .icon img {
    vertical-align: middle;
}
.card-style04:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.5s;
    opacity: 0;
    border-radius: 5px;
}
.card-style04 h3 a {
    position: relative;
    z-index: 1;
    color: #ffffff;
    word-break: break-word;
    transition: 0.4s;
}
.card-style04 .card-content {
    transform: translateY(60px);
    transition-duration: 0.6s;
    opacity: 0;
    transition: 0.6s;
}
.card-style04 .card-main-btn {
    transition-duration: calc(0.6s / 2);
    transition-delay: calc(0.6s / 2);
    margin: 0px 0px 0px 0px;
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.card-style04 .card-btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    line-height: 1;
    min-height: 19px;
    box-sizing: content-box;
}
.card-style04 .card-btn a {
    transition: 0.4s;
    font-size: 21px;
    color: #ffffff;
}
.card-style04:hover {
    background-image: unset !important;
    background-color: #fff !important;
}
.card-style04:hover h3 a {
    color: #101010;
}
.card-style04:hover .card-content {
    transform: translateY(0);
    opacity: 1;
}
.card-style04:hover:before {
    opacity: 0;
}
.card-style04:hover .card-main-btn {
    transition-duration: calc(0.6s / 2);
    transition-delay: 0s;
    opacity: 0;
}
.card-style04:hover .icon {
    background-color: #101010;
    color: #fff;
}
.card-style05 {
    border: 0;
    border-radius: 0.375rem;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    position: relative;
    overflow: hidden;
    display: block;
}
.card-style05 .img-hover {
    border-radius: 0.375rem;
    position: relative;
    overflow: hidden;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
}
.card-style05 .img-hover img {
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    border-radius: 0.375rem;
}
.card-style05 .img-hover:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 16, 16, 0.7);
    opacity: 0;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    z-index: 1;
    border-radius: 0.375rem;
}
.card-style05:hover .img-hover:before {
    opacity: 1;
}
.card-style05:hover .img-hover img {
    transform: scale(1.05) translateX(2%);
    -webkit-transform: scale(1.05) translateX(2%);
    -moz-transform: scale(1.05) translateX(2%);
    -ms-transform: scale(1.05) translateX(2%);
    -o-transform: scale(1.05) translateX(2%);
}
.card-style05 .team-social {
    position: absolute;
    top: auto;
    bottom: 15px;
    left: 15px;
    right: auto;
    margin: auto;
    opacity: 0;
    z-index: 1;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
}
.card-style05 .team-social a {
    color: #fff;
    padding: 6px;
    font-size: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
}
.card-style05:hover .team-social {
    opacity: 1;
}
.card-style05 .card-body {
    padding: 20px 0 0 0;
}
.card-style06 .card-image {
    position: relative;
    overflow: hidden;
}
.card-style06 .card-image:before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(255, 255, 255, 0)),
        to(rgba(255, 255, 255, 0.3))
    );
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 1;
}
.card-style06:hover .card-image:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}
.card-style06 .card-image,
.card-style06 .card-body {
    position: relative;
}
.card-style06 .card-icon {
    width: 72px;
    height: 72px;
    background-color: #101010;
    border: 5px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    color: #fff;
    padding: 0 20px;
    line-height: 1.3;
    position: absolute;
    top: -37px;
    right: 30px;
    transition: 0.5s;
}
.card-style06:hover .card-icon {
    background-color: #f85c00;
    color: #fff;
}
.card-style07 {
    padding: 62px 75px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    height: 100%;
    border-radius: 0;
}
.card-style07 .card-header .top-content h3 {
    letter-spacing: -0.5px !important;
    line-height: 30px;
    display: block;
    margin-bottom: 0;
}
@media screen and (max-width: 1399px) {
    .card-style07 {
        padding: 52px 54px;
    }
}
@media screen and (max-width: 991px) {
    .card-style07 {
        padding: 48px 45px;
    }
}
@media screen and (max-width: 575px) {
    .card-style07 {
        padding: 30px;
    }
}
.video_btn {
    position: relative;
    z-index: 1;
    height: 80px;
    width: 80px;
    background: #f85c00;
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
}
.video_btn:hover i,
.video_btn:focus i {
    color: #fff;
}
.video_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
    animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
    animation: pulse-border 1500ms ease-out infinite;
}
.video_btn.small {
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.video_btn.small:after {
    height: 50px;
    width: 50px;
}
.video_btn.small:before {
    height: 65px;
    width: 65px;
}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
@media screen and (max-width: 1199px) {
    .video_btn {
        height: 75px;
        width: 75px;
        line-height: 75px;
    }
    .video_btn:after {
        height: 75px;
        width: 75px;
    }
    .video_btn:before {
        height: 90px;
        width: 90px;
    }
}
@media screen and (max-width: 991px) {
    .video_btn {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }
    .video_btn:after {
        height: 70px;
        width: 70px;
    }
    .video_btn:before {
        height: 85px;
        width: 85px;
    }
    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        }
        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
        }
    }
}
@media screen and (max-width: 767px) {
    .video_btn {
        height: 60px;
        width: 60px;
        line-height: 60px;
    }
    .video_btn:after {
        height: 60px;
        width: 60px;
    }
    .video_btn:before {
        height: 75px;
        width: 75px;
    }
}
.pagination-style01 {
    margin-top: 4%;
    width: 100%;
    display: flex;
    justify-content: center;
}
.pagination-style01 ul {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 0;
    padding-left: 0;
}
.pagination-style01 ul li {
    display: inline-block;
    list-style: none;
}
.pagination-style01 ul li a {
    border: 0;
    padding: 0 2px;
    margin: 0 7px;
    background: 0 0;
    color: #828282;
    min-width: 45px;
    font-size: inherit;
    text-align: center;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    line-height: 45px;
    min-height: 45px;
    display: block;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
.pagination-style01 ul li a i {
    line-height: 40px;
    font-size: 18px;
    display: inline-block;
}
.pagination-style01 ul li.active a {
    background: #101010;
    color: #fff;
    box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important;
}
.pagination-style01 ul li a:hover {
    background: #fff;
    color: #232323;
    box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important;
}
ul.resp-tabs-list {
    margin: 0px;
    padding: 0px;
}
.resp-tabs-list li {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 13px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
}
.resp-tabs-list li:last-child {
    margin-right: 0;
}
.resp-tabs-list li i {
    font-size: 20px;
    padding-right: 5px;
    vertical-align: text-bottom;
}
.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}
.resp-tab-content {
    display: none;
    padding: 20px;
}
.resp-tabs-list li.resp-tab-active {
    border: 1px solid #86bc42;
    border-bottom: none;
    border-color: #86bc42 !important;
    margin-bottom: -1px;
    padding: 12px 14px 14px 14px;
    border-top: 4px solid #86bc42 !important;
    border-bottom: 0px #fff solid;
    border-bottom: none;
    background-color: #fff;
    color: #86bc42;
}
.resp-content-active,
.resp-accordion-active {
    display: block;
}
.resp-tab-content {
    border: 1px solid #c1c1c1;
    border-top-color: #c1c1c1;
    float: left;
    width: 100%;
}
h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 14px;
    border: 1px solid #c1c1c1;
    border-top: 0px solid #c1c1c1;
    margin: 0px;
    padding: 14px 15px;
    float: left;
    width: 100%;
}
h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    background-color: #86bc42 !important;
    color: #fff;
}
h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
}
.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 30%;
}
.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 15px 15px !important;
    margin: 0 0 4px;
    cursor: pointer;
    float: none;
}
.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #86bc42 !important;
    float: left;
    width: 70%;
    min-height: 250px;
    clear: none;
}
.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word;
}
.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 14px 15px 15px 11px !important;
    border-top: 1px solid;
    border: 1px solid #86bc42 !important;
    border-left: 4px solid #86bc42 !important;
    margin-bottom: 4px !important;
    border-right: 1px #fff solid !important;
}
.resp-arrow {
    border-color: transparent #282b2d #282b2d transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px;
}
.resp-easy-accordion h2.resp-accordion {
    display: block;
}
.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}
.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;
}
.resp-jfit {
    width: 100%;
    margin: 0px;
}
.resp-tab-content-active {
    display: block;
    border-color: #86bc42 !important;
}
h2.resp-accordion:first-child {
    border-top: 1px solid #c1c1c1;
}
h2.resp-accordion.resp-tab-active {
    border-color: #86bc42 !important;
}
.tab-style01 ul.resp-tabs-list {
    background: #f85c00;
    display: table;
    padding: 8px;
    border-radius: 0.25rem;
}
.tab-style01 .resp-tabs-list li {
    position: relative;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    list-style: none;
    cursor: pointer;
    min-width: auto;
    color: #ffffff;
    margin-right: 0;
    padding: 8px 40px;
}
.tab-style01 .resp-tabs-list li.resp-tab-active {
    color: #101010;
    border-bottom: unset !important;
    background-color: #fff;
    border: none !important;
    border-radius: 0.25rem;
}
@media screen and (min-width: 992px) {
    .tab-style01 ul.resp-tabs-list {
        text-align: center;
    }
    .tab-style01 ul.resp-tabs-list.text-left {
        padding-left: 15px;
    }
    .tab-style01 ul.resp-tabs-list li:last-child {
        margin-right: 0;
    }
    .tab-style01 .resp-tab-content {
        margin-top: 25px;
        border: none;
        padding: 0;
    }
}
@media screen and (max-width: 991px) {
    .tab-style01 ul.resp-tabs-list {
        display: none;
    }
    .tab-style01 h2.resp-accordion {
        display: block;
        border-color: #101010 !important;
        background-color: #101010 !important;
        color: #fff;
    }
    .tab-style01 .resp-arrow {
        border-color: transparent #ffffff #ffffff transparent;
    }
    .tab-style01 h2.resp-accordion i {
        margin-right: 8px;
        font-size: 18px;
    }
    .tab-style01 .resp-accordion-closed {
        display: none !important;
    }
    .tab-style01 .resp-tab-content {
        background-color: #fff;
        border-color: #101010 !important;
    }
}
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
.owl-carousel .owl-nav.disabled + .owl-dots {
    margin-top: 40px;
}
.owl-carousel .owl-dots {
    margin-top: 20px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}
.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: #f85c00;
}
.portfolio-style01 .portfolio-bg {
    position: relative;
    overflow: hidden;
    display: block;
    transition: 0.4s ease;
    transform: scale(0.9);
}
.portfolio-style01.style01 .portfolio-bg {
    transform: none;
}
.portfolio-style01 .portfolio-bg .por-img img {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 0.375rem;
}
.portfolio-style01 .portfolio-bg .portfolio-text {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0px;
    display: inline-block;
    padding: 20px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    background-color: #101010;
    transition: 0.3s;
}
.portfolio-style01 .portfolio-bg .portfolio-text span {
    color: #fff;
}
.portfolio-style01 .portfolio-bg .portfolio-text h2 a {
    color: #fff;
}
.portfolio-style01 .portfolio-bg .portfolio-text h2:hover a {
    color: #f85c00;
}
.portfolio-style01 .portfolio-bg:hover .portfolio-text {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}
.portfolio-style01 .owl-item.active.center .portfolio-bg {
    transform: scale(1);
}
.services-carousel-one.owl-carousel .owl-nav button {
    width: 55px;
    height: 55px;
    line-height: 60px;
    background: rgba(255, 255, 255, 0.5);
    color: #20282d;
    text-align: center;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.services-carousel-one.owl-carousel .owl-nav button.owl-prev {
    left: 5%;
}
.services-carousel-one.owl-carousel .owl-nav button.owl-next {
    right: 5%;
}
.services-carousel-one.owl-carousel .owl-nav button.owl-prev i,
.services-carousel-one.owl-carousel .owl-nav button.owl-next i {
    font-size: 19px;
    color: #fff;
}
.services-carousel-one.owl-carousel .owl-nav [class*="owl-"]:hover {
    background: #f85c00;
}
.testimonial-carousel-one.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.testimonial-carousel-one.owl-carousel .owl-nav button {
    width: 55px;
    height: 55px;
    line-height: 60px;
    background: rgba(10, 18, 41, 0.5);
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev {
    right: 0;
    top: 58px;
}
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next {
    right: 0;
    top: 118px;
}
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-prev i,
.testimonial-carousel-one.owl-carousel .owl-nav button.owl-next i {
    font-size: 19px;
    color: #fff;
}
.testimonial-carousel-one.owl-carousel .owl-nav [class*="owl-"]:hover {
    background: #f85c00;
}
.testimonial-carousel-two .owl-nav {
    margin-top: 0;
    position: absolute;
    left: -104%;
    bottom: 0;
}
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev,
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next {
    background-color: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev i,
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
}
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel-two.owl-carousel .owl-nav button.owl-next:hover {
    opacity: 0.8;
}
@media screen and (max-width: 1199px) {
    .testimonial-carousel-two .owl-nav {
        left: 0;
        bottom: -50%;
    }
    .testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev,
    .testimonial-carousel-two.owl-carousel .owl-nav button.owl-next {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .testimonial-carousel-two.owl-carousel .owl-nav button.owl-prev span,
    .testimonial-carousel-two.owl-carousel .owl-nav button.owl-next i {
        font-size: 16px;
    }
}
.clients-carousel-one img {
    transition: 0.4s;
    filter: grayscale(0);
}
.clients-carousel-one img:hover {
    transition: 0.4s;
    filter: grayscale(1);
}
.clients-carousel-one.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.services-carousel-two.owl-carousel .owl-nav {
    margin-top: 0;
}
.services-carousel-two.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    color: #fff !important;
    background-color: #101010 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
}
.services-carousel-two .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    color: #fff !important;
    background-color: #101010 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
}
.services-carousel-two.owl-carousel .owl-nav .owl-prev {
    left: -80px;
}
.services-carousel-two.owl-carousel .owl-nav .owl-next {
    right: -80px;
}
.services-carousel-two.owl-carousel .owl-nav [class*="owl-"]:hover {
    background-color: #f85c00 !important;
    transition: 0.4s;
}
@media screen and (max-width: 1399px) {
    .services-carousel-two.owl-carousel .owl-nav .owl-prev,
    .services-carousel-two.owl-carousel .owl-nav .owl-next {
        top: 45%;
    }
}
@media screen and (max-width: 1199px) {
    .services-carousel-two.owl-carousel .owl-nav .owl-prev,
    .services-carousel-two.owl-carousel .owl-nav .owl-next {
        top: 55%;
    }
}
.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0;
}
.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: none;
    background: none;
}
.accordion-style .btn-link {
    color: #f85c00;
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffffff;
}
.accordion-style .btn-link.collapsed {
    color: #42545e;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border: none;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #fff;
}
.accordion-style .btn-link:hover {
    text-decoration: none;
}
.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: 0.3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center;
}
.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: #f85c00;
    background-color: transparent;
    border-radius: 0.3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center;
}
.accordion-style .card-body {
    padding: 0px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none;
}
@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px 25px;
    }
}
.accordion .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0;
}
.accordion .card:last-child {
    margin-bottom: 0;
}
.accordion .card-header {
    border: 0;
    padding: 0;
    background: none;
}
.accordion .accordion-collapse {
    border: none;
}
.accordion .accordion-button {
    border-bottom: none;
    color: #fff;
    font-size: 17px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 600;
    padding: 20px 60px 20px 20px;
    text-decoration: none;
    background: #101010;
    border: 1px solid transparent;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.accordion .accordion-button:hover {
    text-decoration: none;
}
.accordion .accordion-button.collapsed {
    background: #fff;
    color: #575a7b;
    border: 1px solid #ededed;
    border-radius: 5px;
}
.accordion .accordion-button.collapsed:after {
    background: #101010;
    border: none;
    content: "+";
    right: 20px;
    left: inherit;
    font-size: 18px;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 20px;
    top: 18px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
}
.accordion .accordion-button:after {
    background: #fff;
    border: none;
    content: "-";
    right: 20px;
    border-radius: 5px;
    left: inherit;
    font-size: 18px;
    border: 1px solid #fff;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 21px;
    top: 18px;
    position: absolute;
    color: #ff9900;
    text-align: center;
}
.accordion .card-body {
    color: #575a7b;
    font-size: 16px;
    padding: 20px 25px;
    line-height: 28px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
@media screen and (max-width: 991px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px;
        font-size: 16px;
    }
    .accordion .accordion-button.collapsed:after,
    .accordion .accordion-button:after {
        right: 15px;
        font-size: 16px;
        height: 22px;
        line-height: 18px;
        width: 22px;
        top: 13px;
    }
    .accordion .card-body {
        padding: 20px 15px;
    }
}
@media screen and (max-width: 575px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px;
    }
}
.search-bar {
    position: relative;
}
.countdown {
    padding: 0;
}
.countdown li {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    text-align: center;
    min-width: 120px;
    overflow: hidden;
    margin-right: 10px;
    padding: 15px 10px;
    position: relative;
}
.countdown li:last-child {
    margin-right: 0;
}
.countdown li span {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    line-height: normal;
    position: relative;
}
.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding: 0;
    text-transform: capitalize;
}
.error-wrapper h1 {
    font-size: 280px;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
}
.error-wrapper p {
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}
@media screen and (max-width: 1199px) {
    .error-wrapper h1 {
        font-size: 220px;
    }
}
@media screen and (max-width: 991px) {
    .error-wrapper h1 {
        font-size: 170px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767px) {
    .error-wrapper h1 {
        font-size: 150px;
    }
}
@media screen and (max-width: 575px) {
    .error-wrapper h1 {
        font-size: 130px;
    }
}
.blog-sidebar .butn-style3 {
    box-shadow: none;
}
.blog-sidebar .input-group .form-control {
    min-height: 50px;
}
.blog-sidebar .blog-insta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(28, 191, 170, 0.8);
    opacity: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    z-index: 1;
    border-radius: 0.3rem;
}
.blog-sidebar .blog-insta:hover:before {
    opacity: 0.85;
}
.blog-sidebar .blog-insta .insta-icon {
    position: absolute;
    font-size: 25px;
    color: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 55%;
    transform: translateY(-55%);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.blog-sidebar .blog-insta:hover .insta-icon {
    opacity: 1;
    visibility: visible;
}
.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.cat-item {
    list-style: none;
    word-wrap: break-word;
}
.cat-item:first-child {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}
.cat-item ul.children {
    margin-top: 0.5rem;
    margin-left: 10px;
}
.wp-tag-cloud li {
    display: inline-block;
}
.wp-tag-cloud a {
    border: 1px solid #efefef;
    padding: 7px 21px;
    font-size: 14px !important;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block;
}
.wp-tag-cloud a:hover {
    background-color: #f85c00;
    border-color: #f85c00;
    color: #fff;
}
.blog-sidebar .widget {
    margin-bottom: 2rem;
}
.blog-sidebar .widget:last-child {
    margin-bottom: 0 !important;
}
.blog-sidebar .widget p:last-child {
    margin-bottom: 0;
}
.blog-sidebar .widget-body {
    padding: 1.9rem;
}
.blog-sidebar .widget-title {
    background: #101010;
    padding: 20px;
    font-size: 1rem;
    margin-bottom: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border-radius: 0.375rem 0.375rem 0 0;
}
.blog-sidebar .contact-icon {
    display: block;
    color: #fff;
    background: #f85c00;
    font-size: 20px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    transition: all 0.45s ease-out;
}
.recent-post > div:first-child a {
    display: inline-block;
    width: 80px;
    height: auto;
}
.widget_categories ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.widget_categories ul .cat-item {
    margin-bottom: 10px;
}
.widget_categories ul .cat-item a {
    position: relative;
    display: block;
    text-transform: capitalize;
    padding: 15px 20px 15px 20px;
    border: 1px solid #ededed;
    font-weight: 600;
    background: #ffffff;
    transition: all 0.3s ease 0s;
}
.widget_categories ul .cat-item a:hover {
    background-color: #f85c00;
    color: #ffffff;
}
.widget_categories ul .cat-item:first-child {
    padding-top: 0;
}
.widget_categories ul .cat-item:last-child {
    margin-bottom: 0;
}
.widget_categories ul .cat-item span.cat-name {
    padding-right: 5px;
}
.widget .widget-brochure {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
.widget .widget-brochure li {
    position: relative;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #ededed;
    width: 100%;
    background: #fff;
}
.widget .widget-brochure li a {
    position: relative;
    display: block;
    padding: 16px 15px 16px 75px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
}
.widget .widget-brochure li a i {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    line-height: 3;
    text-align: center;
    font-size: 20px;
    background: #f85c00;
    color: #ffffff;
}
.widget .widget-brochure li:last-child {
    margin-bottom: 0;
}
.blog-comment:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 10px;
    background-color: #f85c00;
}
.blog-sidebar .widget {
    padding: 30px 25px;
    border-radius: 0.375rem;
}
.blog-sidebar .widget .category-list li {
    margin-bottom: 1rem;
}
.blog-sidebar .widget .category-list li:last-child {
    margin-bottom: 0px;
}
.blog-sidebar .widget .category-list li a {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px 15px 30px;
    border-radius: 0.375rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.blog-sidebar .widget .category-list li a:after {
    content: "\e649";
    font-family: "themify";
    font-size: 12px;
}
.blog-sidebar .widget .category-list li a:hover,
.blog-sidebar .widget .category-list li a:active,
.blog-sidebar .widget .category-list li a:focus {
    background: white;
    color: #f85c00;
}
.blog-sidebar .widget .category-list li.active a:after,
.blog-sidebar .widget .category-list li:hover a:after {
    margin-left: 10px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.blog-tags a {
    background-color: #f85c00;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #f85c00;
}
.blog-tags a:hover,
.blog-tags a:active,
.blog-tags a:focus {
    background-color: #fff;
    color: #f85c00;
}
.comment-reply-link {
    color: #101010;
    background: rgba(16, 16, 16, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
}
.comment-reply-link:hover,
.comment-reply-link:active,
.comment-reply-link:focus {
    color: #fff;
    background: #101010;
}
.service-sidebar .category li {
    margin-bottom: 12px;
}
.service-sidebar .category li a {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px 15px 30px;
    border-radius: 0.375rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.service-sidebar .category li a:after {
    content: "\e649";
    font-family: "themify";
    font-size: 12px;
}
.service-sidebar .category li:hover a,
.service-sidebar .category li.active a,
.service-sidebar .category li.focus a {
    background-color: #f85c00;
    color: #fff;
}
.service-sidebar .widget-brochure {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
.service-sidebar .widget-brochure li {
    margin-bottom: 12px;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.1);
}
.service-sidebar .widget-brochure li:last-child {
    margin-bottom: 0;
}
.service-sidebar .widget-brochure li a {
    position: relative;
    display: block;
    padding: 16px 15px 16px 75px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}
.service-sidebar .widget-brochure li a i {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    text-align: center;
    font-size: 20px;
    background: #f85c00;
    color: #ffffff;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-wrapper img {
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 102% 87%, 0% 100%);
}
.banner-wrapper .icon-boxs {
    position: absolute;
    top: -60px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.banner-wrapper .icon-boxs i {
    line-height: 80px;
}
.tags a {
    border: 1px solid #d9cfcf;
    padding: 7px 21px;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block;
}
.tags a:hover,
.tags a:active,
.tags a:focus {
    border-color: #f85c00;
    background: #f85c00;
    color: #fff;
}
.team-details-style01 .icon {
    border: 1px solid #f85c00;
    line-height: 1;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-details-style01 .progress {
    height: 8px;
}
.team-details-style01 .progress-text {
    font-size: 18px;
    font-weight: 400;
    color: #14212b;
    line-height: 1.1em;
    margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
    .team-details-style01 .progress-text {
        font-size: 18px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 575px) {
    .team-details-style01 .progress-text {
        font-size: 15px;
        margin-bottom: 12px;
    }
}
.wrapper-error h1 {
    font-weight: 800;
    font-size: 300px;
    line-height: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper-error h1 span {
    width: 226px;
    height: 226px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f85c00;
    border-radius: 50%;
}
.wrapper-error h1 span i {
    font-size: 90px;
    width: 140px;
    height: 140px;
    background-color: #f85c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.wrapper-error h2 {
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}
@media screen and (max-width: 1199px) {
    .wrapper-error h2 {
        font-size: 90px;
    }
}
@media screen and (max-width: 767px) {
    .wrapper-error h1 {
        font-size: 240px;
    }
    .wrapper-error h1 span {
        width: 196px;
        height: 196px;
    }
    .wrapper-error h2 {
        font-size: 60px;
    }
}
@media screen and (max-width: 575px) {
    .wrapper-error h1 {
        font-size: 145px;
    }
    .wrapper-error h1 span {
        width: 106px;
        height: 106px;
    }
    .wrapper-error h1 span i {
        width: 70px;
        height: 70px;
        font-size: 50px;
    }
    .wrapper-error h2 {
        font-size: 35px;
    }
}
.about-style01 .about-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    margin-left: -26px;
    margin-top: 8px;
    border-radius: 50px;
}
.about-style01 .img1,
.about-style01 .img2 {
    margin-left: -26px;
}
.sm-box-wrapper {
    position: absolute;
    bottom: 5%;
    left: 20%;
}
.sm-box-wrapper .inner-box {
    background-color: #f85c00;
    display: flex;
    align-items: center;
    line-height: 1;
    justify-content: center;
    padding: 10px;
    border-radius: 0.375rem;
}
.sm-box-wrapper .exp-no {
    font-size: 65px;
    color: #fff;
    font-weight: 800;
}
.sm-box-wrapper .exp-year {
    color: #fff;
    line-height: 1.5;
    font-size: 20px;
    margin-left: 20px;
}
@media screen and (max-width: 1199px) {
    .sm-box-wrapper {
        bottom: 10%;
    }
    .sm-box-wrapper span.exp-no {
        font-size: 50px;
    }
    .sm-box-wrapper span.exp-year {
        font-size: 15px;
    }
}
@media screen and (max-width: 575px) {
    .sm-box-wrapper {
        bottom: 5%;
        left: 25%;
    }
    .sm-box-wrapper span.exp-no {
        font-size: 35px;
    }
    .sm-box-wrapper span.exp-year {
        font-size: 12px;
        margin-left: 15px;
    }
}
.about-style02 .about-image {
    position: relative;
}
.about-style02 .about-img-text {
    margin: 0 auto;
    position: absolute;
    width: 90%;
    left: 0;
    right: 0;
    bottom: 40px;
}
.about-style02 .steps-item-wrap {
    position: relative;
    transition: opacity 0.5s;
    display: flex;
    text-align: left;
    margin-left: 0;
    width: 100%;
}
.about-style02 .steps-wrap {
    display: flex;
    flex-direction: column;
    flex-basis: content;
    align-items: center;
}
.about-style02 .steps-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #f85c00;
    position: relative;
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
}
.about-style02 .steps-line-wrap {
    flex-grow: 1;
    position: relative;
    width: 2px;
}
.about-style02 .steps-line-wrap .steps-line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    width: 2px;
    height: 0;
    top: 0;
    height: calc(100% - 40px);
    margin-top: 20px;
}
.about-style02 .steps-line-wrap .steps-line:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    display: block;
    background-color: #f85c00 !important;
    border-radius: 0;
}
.about-style02 .steps-content {
    margin: 0px 25px 50px 25px;
    align-items: center;
}
.about-style02 .steps-line-wrap .steps-line.last:before {
    content: none;
}
.about-style03 .arrow-circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border: 2px solid #f85c00;
    border-radius: 50%;
}
@media screen and (max-width: 991px) {
    .about-style03 .arrow-circle {
        width: 40px;
        height: 40px;
    }
}
.about-style04 .icon {
    width: 45px;
    height: 45px;
    background-color: #101010;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
}
.client-style01 .client-logo {
    opacity: 1;
    -webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -moz-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -ms-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -o-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
}
.client-style01:hover .client-logo {
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0.6;
}
.client-style01 .client-logo:hover {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}
.extra-style01 .extra-content-box {
    padding-top: 330px;
}
.extra-style01 .extra-content-box ul.inner-box {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: end;
}
.extra-style01 .extra-content-box ul.inner-box li.one {
    background-color: #fff;
    width: 350px;
    display: flex;
    align-items: center;
    padding: 40px;
    margin-right: 30px;
}
.extra-style01 .extra-content-box ul.inner-box li.one h4,
.extra-style01 .extra-content-box ul.inner-box li.one .h4 {
    font-size: 40px;
    margin-bottom: 0;
    margin-right: 15px;
}
.extra-style01 .extra-content-box ul.inner-box li.two {
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 350px;
    padding: 37px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1199px) {
    .extra-style01 .extra-content-box {
        padding-top: 200px;
    }
}
@media screen and (max-width: 767px) {
    .extra-style01 .extra-content-box {
        padding-top: 120px;
    }
    .extra-style01 .extra-content-box ul.inner-box {
        display: block;
    }
    .extra-style01 .extra-content-box ul.inner-box li.one {
        margin-right: 0;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 575px) {
    .extra-style01 .extra-content-box {
        padding-top: 0;
    }
    .extra-style01 .extra-content-box ul.inner-box li.one,
    .extra-style01 .extra-content-box ul.inner-box li.two {
        width: 296px;
    }
    .extra-style01 .extra-content-box ul.inner-box li.one h4 {
        font-size: 34px;
    }
    .extra-style01 .extra-content-box ul.inner-box li.two {
        padding: 35px;
    }
}
.extra-style03 .video {
    background: transparent;
    height: 130px;
    width: 130px;
    border: 2px solid #fff;
    line-height: 130px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}
@media screen and (max-width: 1199px) {
    .extra-style03 .video {
        width: 90px;
        height: 90px;
        line-height: 90px;
        font-size: 16px;
    }
}
.process-style01 .process-block {
    width: 167px;
    height: 167px;
    background: #f85c00;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    margin-bottom: 25px;
}
.process-style01 .process-block .process-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #f85c00;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
}
.process-style01 .process-block .process-count {
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #fff;
    text-align: center;
    position: absolute;
    right: 30px;
    bottom: 20px;
    box-shadow: 0px 5px 18.8px 1.2px rgba(99, 102, 187, 0.1);
    z-index: -1;
}
.process-style01 .process-block .process-count span {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #101010;
}
.process-style01 span {
    display: inline-block;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #f85c00;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    font-weight: 900;
    font-size: 22px;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    margin-bottom: 19px;
    transition: all 0.35s ease-in-out;
    bottom: 20px;
    right: -5px;
}
.process-style01:nth-child(2) .item span {
    bottom: auto;
}
.process-style01 .thumb {
    position: relative;
    display: inline-block;
}
.process-style01 img {
    height: 170px;
    width: 170px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.35s ease-in-out;
}
.main-process {
    position: relative;
    z-index: 1;
    padding-top: 33px;
}
.main-process .line-shape {
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
    transform: rotate(-3deg);
}
.process-style01 .item:hover span {
    transform: scale(1.2);
    background: #101010;
    color: #fff;
    right: -45px;
}
.process-style01:nth-child(2n) .item span {
    transform: scale(1.2);
    background: #f85c00;
    color: #fff;
    right: -45px;
}
.process-style01:nth-child(2n) .item img {
    transform: scale(1.4);
    margin-bottom: 60px;
}
.process-style01 .item:hover img {
    transform: scale(1.4);
    margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
    .process-style01 img {
        transform: scale(1.4);
        margin-bottom: 60px;
    }
    .main-process .line-shape {
        display: none;
    }
}
.process-style02 {
    background-image: url(../img/content/process-line01.png);
    background-repeat: no-repeat;
    background-position: center top;
}
.process-block .process-img {
    position: relative;
}
.process-block .process-img .count-size {
    position: absolute;
    left: 64px;
    top: 0;
}
.process-block .process-img .number {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    background: #f85c00;
    color: #fff;
    border-radius: 50%;
}
.process-block .process-img .number:before {
    width: 57px;
    height: 57px;
    opacity: 0.2;
}
.process-block .process-img .number:after {
    width: 69px;
    height: 69px;
    opacity: 0.09;
}
.process-block .process-img .number:before,
.process-block .process-img .number:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    border-radius: 50%;
    background-color: #f85c00;
}
.process-block:hover .process-img .number:before,
.process-block:hover .process-img .number:after {
    background-color: #002345;
    webkit-animation: circle-2 1.05s infinite;
    -moz-animation: circle-2 1.05s infinite;
    -ms-animation: circle-2 1.05s infinite;
    -o-animation: circle-2 1.05s infinite;
    animation: circle-2 1.05s infinite;
}
@-webkit-keyframes circle-2 {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes circle-2 {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@media screen and (max-width: 1199px) {
    .process-block .process-img .count-size {
        left: 24px;
    }
}
@media screen and (max-width: 991px) {
    .process-style02 {
        background-image: none;
    }
    .process-block .process-img .count-size {
        left: 23%;
    }
}
@media screen and (max-width: 575px) {
    .process-block .process-img .count-size {
        left: 33%;
    }
}
.service-style01 .service-item {
    position: relative;
}
.service-style01 .text {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 50px 60px 60px;
    z-index: 9;
}
.service-style01 .text h3 a {
    font-weight: 800;
    color: #fff;
    line-height: 1.2222222222;
}
.service-style01 .text span {
    display: block;
    color: #fff;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
.service-style01 .service-item .service-btn {
    position: absolute;
    bottom: 71px;
    left: 56px;
}
.service-style01 .service-item .service-btn a {
    opacity: 0;
    transition: all ease 0.35s;
    transform: translateY(50px);
    z-index: 9;
}
.service-style01 .service-item:hover .service-btn a {
    opacity: 1;
    transform: translateY(0);
}
.service-style01 .service-item:before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(10, 18, 41, 0.4);
    opacity: 0;
    transition: all ease 0.35s;
    border-radius: 0.375rem;
}
.service-style01 .service-item:hover:before {
    opacity: 1;
}
.service-style01 .service-item:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(#101010, transparent);
    opacity: 0.8;
    border-radius: 0.375rem;
}
@media screen and (max-width: 1399px) {
    .service-style01 .service-item .service-btn {
        bottom: 43px;
    }
    .service-style01 .text {
        padding: 50px 40px 60px 40px;
    }
    .service-style01 .service-item .service-btn {
        left: 40px;
    }
}
@media screen and (max-width: 575px) {
    .service-style01 .text {
        padding: 30px 30px 40px 30px;
    }
    .service-style01 .service-item .service-btn {
        left: 30px;
    }
}
.contact-icon01 {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}
.contact-icon01:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse-border2 1400ms ease-out infinite;
    z-index: 1;
}
@keyframes pulse-border2 {
    0% {
        transform: scale(1);
        opacity: 0.67;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.vision-wrapper {
    display: grid;
    align-items: end;
    overflow: hidden;
    height: 700px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 99;
    transition: background-image 0.3s ease-in-out;
}
.vision-changebg[data-overlay-dark]:before,
.vision-changebg[data-overlay-light]:before {
    z-index: -1;
    transition: background-image 0.3s ease-in-out;
}
.vision-changebg.owl-carousel .owl-nav button {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    color: #20282d;
    text-align: center;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.vision-changebg.owl-carousel .owl-nav button.owl-prev {
    left: 5%;
}
.vision-changebg.owl-carousel .owl-nav button.owl-next {
    right: 5%;
}
.vision-changebg.owl-carousel .owl-nav button.owl-prev i,
.vision-changebg.owl-carousel .owl-nav button.owl-next i {
    font-size: 18px;
    color: #fff;
}
.vision-changebg.owl-carousel .owl-nav [class*="owl-"]:hover {
    background: #f85c00;
}
.vision-wrapper .vision-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}
.vision-wrapper h3:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    content: "";
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease-in-out;
}
.vision-wrapper:hover h3:after {
    height: 100%;
}
@media screen and (min-width: 992px) {
    .vision-wrapper {
        background-image: none !important;
    }
}
@media screen and (max-width: 1399px) {
    .vision-wrapper {
        height: 500px;
    }
}
@media screen and (max-width: 1199px) {
    .vision-wrapper {
        height: 450px;
    }
    .vision-content {
        padding: 15px;
    }
}
@media screen and (max-width: 991px) {
    .vision-wrapper {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .vision-content p {
        opacity: 1;
        visibility: visible;
    }
}
@media screen and (max-width: 575px) {
    .vision-wrapper {
        height: 400px;
    }
}
.contact-style01 .contact {
    margin: 0px 0px 0px 0px;
    padding: 60px 60px 60px 60px;
    box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.06);
}
.contact-style01 .box {
    padding: 60px 40px;
    box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 991px) {
    .contact-style01 .contact {
        padding: 50px 50px 50px 50px;
    }
    .contact-style01 .box {
        padding: 35px;
    }
}
@media screen and (max-width: 767px) {
    .contact-style01 .contact {
        padding: 45px 45px 45px 45px;
    }
    .contact-style01 .box {
        padding: 30px;
    }
}
@media screen and (max-width: 575px) {
    .contact-style01 .contact {
        padding: 30px;
    }
    .contact-style01 .box {
        padding: 25px;
    }
}
.progress-style01 .progress {
    height: 8px;
}
.progress-style01 .progress .progress-bar {
    background-color: #f85c00;
}
.lg-backdrop {
    z-index: 99999;
}
.lg-outer {
    z-index: 999999;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #f85c00;
}
.lg-progress-bar .lg-progress {
    background-color: #f85c00;
}
.lg-backdrop.in {
    opacity: 0.85;
}
.testimonials-style04 .left-content {
    margin-bottom: 15%;
}
.testimonials-style04 .left-content .left-count {
    margin-right: 10px;
    color: #fff;
}
.testimonials-style04 .left-content .start-content {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
    letter-spacing: -2px;
    background-color: #f85c00;
    font-size: 16px;
    color: #101010;
    padding-top: 3px;
    padding-bottom: 3px;
}
.testimonials-style04 .left-content span {
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
}
@media screen and (max-width: 991px) {
    .testimonials-style04 .left-content {
        margin-bottom: 5%;
    }
}
@media screen and (max-width: 767px) {
    .testimonials-style04 .left-content {
        margin-bottom: 4%;
    }
    .testimonials-style04 .left-content .start-content {
        font-size: 13px;
    }
    .testimonials-style04 .left-content span {
        font-size: 11px;
    }
}
.scroll-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.scroll-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}
.pause-on-hover:hover,
.pause-on-hover:active,
.pause-on-hover:focus {
    animation-play-state: paused;
}
.scroll-left {
    animation-name: scroll-left;
}
.scroll-right {
    animation-name: scroll-right;
}
.scroll-group {
    display: inline-flex;
    white-space: nowrap;
}
.scroll-item {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}
.scroll-item.with-img {
    min-width: 90px;
    height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}
.scroll-item.with-img img {
    vertical-align: middle;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%);
    }
}
@keyframes scroll-right {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}
.scroll-speed-1 {
    animation-duration: 10s;
}
.scroll-speed-2 {
    animation-duration: 15s;
}
.scroll-speed-3 {
    animation-duration: 20s;
}
.scroll-speed-4 {
    animation-duration: 30s;
}
.scroll-speed-5 {
    animation-duration: 40s;
}
.scroll-speed-6 {
    animation-duration: 60s;
}
.scroll-speed-7 {
    animation-duration: 80s;
}
.scroll-speed-8 {
    animation-duration: 100s;
}
.scroll-speed-9 {
    animation-duration: 120s;
}
.border-text {
    text-fill-color: transparent;
    text-stroke-color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
}
.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
}
.prev-page,
.next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px;
}
.prev-page:before,
.next-page:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
    transform: scale(1.04, 1.12);
    transition: 0.3s ease-in-out;
    pointer-events: none;
}
.prev-page .page-info > a,
.next-page .page-info > a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s;
}
.prev-page .page-info .image-prev,
.prev-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden;
}
.next-page .page-info .image-prev,
.next-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden;
}
.prev-page .page-info .prev-title,
.prev-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s;
}
.next-page .page-info .prev-title,
.next-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s;
}
.prev-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty {
    display: none;
}
.next-page .page-info .prev-title:empty,
.next-page .page-info .next-title:empty {
    display: none;
}
.prev-page:hover:before,
.next-page:hover:before {
    background-color: white;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
}
.prev-page a {
    justify-content: flex-start;
    text-align: left;
}
.prev-page a:hover .image-prev:after {
    visibility: visible;
    opacity: 1;
}
.prev-page a:hover .image-prev:before {
    visibility: visible;
    opacity: 1;
    margin-left: 0;
}
.prev-page .image-prev {
    margin-right: 20px;
}
.prev-page .image-prev:after {
    background-color: #f85c00;
}
.next-page .image-next:after {
    background-color: #f85c00;
}
.prev-page .image-prev:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: 20px;
    content: "\e64a";
    font-family: "themify";
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.prev-page .image-prev:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.next-page {
    margin-left: auto;
}
.next-page a {
    justify-content: flex-end;
    text-align: right;
}
.next-page a:hover .image-next:after {
    visibility: visible;
    opacity: 1;
}
.next-page a:hover .image-next:before {
    visibility: visible;
    opacity: 1;
    margin-right: 0;
}
.next-page .image-next {
    margin-left: 20px;
}
.next-page .image-next:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-right: 20px;
    content: "\e64a";
    font-family: "themify";
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    transform: scaleX(-1);
}
.next-page .image-next:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.next-page .next-title {
    text-align: right;
}
.prev-link-page-info > span,
.next-link-page-info > span {
    display: block;
}
.prev-link-page-info .date-details,
.next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 20px;
    margin-bottom: -2px;
}
.prev-link-page-info .date-details > div,
.prev-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500;
}
.next-link-page-info .date-details > div,
.next-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500;
}
.prev-link-page-info .date-details:only-child,
.next-link-page-info .date-details:only-child {
    margin-top: 0;
}
@media (max-width: 767px) {
    .prev-page,
    .next-page {
        width: calc(100% - 20px);
        max-width: unset;
    }
    .prev-page + .next-page {
        margin-top: 0;
    }
    .page-navigation {
        flex-direction: column;
    }
}
@media (max-width: 575px) {
    .prev-page .page-info > a,
    .next-page .page-info > a {
        padding: 10px;
    }
    .prev-page .page-info .prev-title,
    .prev-page .page-info .next-title {
        max-width: 168px;
    }
    .next-page .page-info .prev-title,
    .next-page .page-info .next-title {
        max-width: 168px;
    }
}
.map {
    width: 100%;
    height: 400px;
    vertical-align: top;
    border: 0;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    margin-bottom: 0.5rem;
}
.form-control:focus {
    border-color: #f85c00;
}
.form-check-input:checked {
    border-color: #f85c00;
    background-color: #f85c00;
}
.quform-input {
    position: relative;
}
.quform-input .form-control {
    border-radius: 5px;
}
.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1;
}
.quform-element > label {
    font-weight: normal;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 16px;
}
.quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px;
}
.quform-inner input {
    width: 100%;
}
.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top;
}
.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px;
}
.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal;
}
.quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}
.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
    border-color: #f5543f;
}
.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-submit-inner {
    float: none;
}
.quform-loading-wrap {
    float: none;
}
.quform-loading-wrap .quform-loading {
    display: inline-block;
}
.light-validation .quform-errors > .quform-error {
    color: #fff;
}
.newsletter-form .quform-elements {
    position: relative;
}
.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px;
}
.newsletter-form .quform-submit-inner .btn {
    padding: 0.5rem 1.15rem;
}
.newsletter-form .quform-submit-inner .btn:focus,
.newsletter-form .quform-submit-inner .btn:active {
    border: 1px solid transparent;
}
.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}
.newsletter-form input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff;
}
.newsletter-form .form-control:focus,
.newsletter-form .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error textarea,
.newsletter-form .quform-has-error select {
    border-color: #f5543f;
}
.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px;
}
.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
}
.newsletter-one .quform-elements .quform-input .form-control {
    background: rgba(255, 255, 255, 0.2);
    border: 0;
    box-shadow: none;
    border-width: 0 0 1px 0;
    padding: 14px 170px 12px 10px;
    color: #fff;
}
.newsletter-one .quform-submit-inner {
    position: absolute;
    right: 25px;
    top: 8px;
    width: auto;
    background: transparent;
    height: 48px;
}
.newsletter-three .form-control {
    background: transparent;
    border-width: 0 0 1px 0;
    padding: 0.375rem 1.45rem 0.375rem 0;
    color: #fff;
}
.newsletter-three .quform-submit-inner {
    position: absolute;
    top: 10px;
    right: 0;
    width: unset;
}
.social-icon-style01 li {
    display: inline-block;
    margin-right: 10px;
}
.social-icon-style01 li:last-child {
    margin-right: 0;
}
.social-icon-style01 li a {
    font-size: 16px;
    background: #f85c00;
    color: #fff;
    height: 36px;
    width: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}
.social-icon-style01 li a:hover {
    color: #f85c00;
    background: #fff;
}
.social-icon-style02 li {
    display: inline-block;
    margin-right: 20px;
}
.social-icon-style02 li:last-child {
    margin-right: 0;
}
.social-icon-style02 li a {
    font-size: 18px;
    color: #101010;
}
.social-icon-style02.white li a {
    color: #fff;
}
.social-icon-style02 li a:hover,
.social-icon-style02 li a:active,
.social-icon-style02 li a:focus {
    color: #f85c00;
}
.social-icon-style03 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none;
}
.social-icon-style03 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}
.social-icon-style03 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: #f85c00;
    height: 41px;
    line-height: 42px;
    width: 41px;
}
.social-icon-style03 li a:hover,
.social-icon-style03 li a:active,
.social-icon-style03 li a:focus {
    color: #f85c00;
    background: #ffffff;
}
.social-icon-style03 li:last-child {
    margin-right: 0;
}
.social-icon-style03 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
}
.social-icon-style03.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
}
@media screen and (max-width: 991px) {
    .social-icon-style03.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
.social-icon-style04 {
    margin-bottom: 0;
    list-style: none;
}
.social-icon-style04 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}
.social-icon-style04 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    height: 41px;
    line-height: 41px;
    width: 41px;
}
.social-icon-style04 li a:hover,
.social-icon-style04 li a:active,
.social-icon-style04 li a:focus {
    background: #f85c00;
    border-color: #f85c00;
}
.social-icon-style04 li a:hover i,
.social-icon-style04 li a:active i,
.social-icon-style04 li a:focus i {
    color: #fff;
}
footer .email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding-bottom: 5px;
}
footer .email a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.8s ease;
}
footer .email a:hover:after,
footer .email a:active:after,
footer .email a:focus:after {
    width: 100%;
}
footer .email a:hover,
footer .email a:active,
footer .email a:focus {
    color: #f85c00;
}
footer .email a:after {
    border-bottom: 1px solid #fff;
    transition: all 0.8s ease;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -11px;
    right: 0;
    width: 0;
}
footer .phone {
    padding-bottom: 0;
    margin-bottom: 0;
}
footer .phone a {
    padding-bottom: 0;
    letter-spacing: -0.05rem;
    color: white;
}
footer .phone a:hover,
footer .phone a:active,
footer .phone a:focus {
    color: #f85c00;
}
@media screen and (max-width: 767px) {
    footer .email a:after {
        bottom: -10px;
    }
}
.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block;
}
.footer-list {
    list-style: none;
}
.footer-list li {
    margin-bottom: 5px;
}
.footer-list li:last-child {
    margin-bottom: 0;
}
.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    transition-duration: 0.2s;
}
.footer-list li a:hover,
.footer-list li a:active,
.footer-list li a:focus {
    color: #f85c00;
}





















.floating-contact{
    position:fixed;
    left:20px;
    bottom:30px;
    z-index:9999;
}

#toggle-contact{
    display:none;
}

.contact-toggle{
    width:60px;
    height:60px;
    background:#ff6b00;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.contact-toggle:hover{
    transform:scale(1.08);
}

.close-icon{
    display:none;
}

#toggle-contact:checked + .contact-options + .contact-toggle .open-icon{
    display:none;
}

#toggle-contact:checked + .contact-options + .contact-toggle .close-icon{
    display:block;
}

.contact-options{
    position:absolute;
    bottom:75px;
    left:0;
    display:flex;
    flex-direction:column;
    gap:12px;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
}

#toggle-contact:checked + .contact-options{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.contact-options a{
    display:flex;
    align-items:center;
    gap:12px;
    width:190px;
    padding:14px 18px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    transition:.3s;
}

.contact-options a:hover{
    transform:translateX(-8px);
}

.call-btn{
    background:#007bff;
}

.whatsapp-btn{
    background:#25D366;
}

.contact-options i{
    font-size:20px;
}





















.construction-section{
    padding:100px 0;
    background:#f8f8f8;
}

.construction-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.construction-image{
    flex:1;
}

.construction-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.construction-content{
    flex:1;
}

.sub-title{
    color:#ff6b00;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.construction-content h2{
    font-size:42px;
    margin:15px 0 20px;
    line-height:1.3;
}

.construction-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.construction-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.feature-box{
    background:#fff;
    padding:22px;
    border-radius:15px;
    display:flex;
    gap:18px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-box:hover{
    transform:translateY(-8px);
}

.icon{
    width:60px;
    height:60px;
    background:#ff6b00;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.feature-box h4{
    margin-bottom:8px;
    font-size:19px;
}

.feature-box p{
    margin:0;
    font-size:15px;
}

.construction-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#ff6b00;
    color:#fff;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.construction-btn:hover{
    background:#111;
    color:#fff;
}

@media(max-width:991px){

.construction-wrapper{
    flex-direction:column;
}

.construction-content h2{
    font-size:34px;
}

.construction-features{
    grid-template-columns:1fr;
}

}











.video-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:1;
}

.video-bg video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.item{
    position:relative;
}

.section-title01{
    position:relative;
    z-index:9;
}

.section-title01 h1{
    max-width:900px;
    margin:0 auto;
}

@media(max-width:991px){

    .section-title01 h1{
        font-size:42px;
    }

}

@media(max-width:767px){

    .section-title01 h1{
        font-size:32px;
        line-height:1.3;
    }

}


/* ===================================
   Banner Navigation Arrows
=================================== */

.slider-fade1 .owl-nav{
    margin:0;
}

.slider-fade1 .owl-nav .owl-prev,
.slider-fade1 .owl-nav .owl-next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:65px;
    height:65px;

    border-radius:50%;
    background:rgba(255,255,255,.15) !important;
    border:2px solid rgba(255,255,255,.35);

    color:#fff !important;
    font-size:22px !important;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;
    backdrop-filter:blur(8px);

    opacity:1;
}

.slider-fade1 .owl-nav .owl-prev{
    left:40px;
}

.slider-fade1 .owl-nav .owl-next{
    right:40px;
}

.slider-fade1 .owl-nav .owl-prev:hover,
.slider-fade1 .owl-nav .owl-next:hover{

    background:#ff6b00 !important;
    border-color:#ff6b00;
    color:#fff !important;

    transform:translateY(-50%) scale(1.08);
}

.slider-fade1 .owl-nav .owl-prev i,
.slider-fade1 .owl-nav .owl-next i{

    font-size:20px;
    line-height:1;

}

@media(max-width:991px){

.slider-fade1 .owl-nav .owl-prev,
.slider-fade1 .owl-nav .owl-next{

    width:50px;
    height:50px;

}

.slider-fade1 .owl-nav .owl-prev{
    left:15px;
}

.slider-fade1 .owl-nav .owl-next{
    right:15px;
}

}