@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Open+Sans:wght@300;400;500;600&family=Pathway+Extreme:wght@100;200;300;400;500;600;700;800;900&family=Quicksand:wght@300;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400;1,700&display=swap');
body {
    margin: 0;
    padding: 0;
    color: #000;
}

:root {
    --white: #fff;
}

/* html {
  scroll-behavior: smooth;
} */

#viewport {
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* FONTS */

.subhead {
    font-family: 'Lato', sans-serif;
}

body::-webkit-scrollbar {
    width: 7px;
}
*{

}


a.fonts {
    color: #fff;
    text-decoration: none;
    border-right: 1px solid #fff;
    padding: 3px 12px;
    margin: 0px 7px;
}

a {
    text-decoration: none;
}
h2{
    font-size: 41px;
}
p{
    text-align: justify;
    line-height: 28px !important;
}
.top-header {
    /* padding: 15px; */
    position: relative;
    z-index: 5;
}

/* HEADER */

.sticky-top.main {}

.top_hd {
    /* background: #fff; */
    background: linear-gradient(103deg, rgba(238, 50, 39, 1) 1%, rgba(248, 148, 30, 1) 99%);
    z-index: 2;
    position: relative;
    padding: 10px 0px;
}

.header {
    /* background: #1865AA; */
    background-color: #fff;
    color: #fff;
    padding: 2px 0;
    position: relative;
    z-index: 5;
}

h1 {
    /* position: relative; */
}

span.ani {
    display: block;
    font-weight: 900;
}

span.ani:after {
    content: " ";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform-origin: 100% 0;
    background: white;
}

/* NAVIGATION MENU */

.nav-container span img.icn1 {
    margin: 20px 5px 20px 10px;
}

.nav-container span img.icn2 {
    margin: 20px 35px 20px 10px;
}

.nav-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* text-align: right; */
    top: 40%;
    left: 0;
    margin: 0 auto;
}

.nav-container p {
    font-size: 20px;
}

.nav-container a {
    display: inline-block;
    position: relative;
    text-align: center;
    color: #f8941e;
    text-decoration: none;
    font-size: 20px;
    overflow: hidden;
    top: 5px;
}

.nav-container a:after {
    content: '';
    position: absolute;
    background: #FF5252;
    height: 2px;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    -webkit-transition: .35s ease;
    transition: .35s ease;
}

.nav-container a:hover:after,
.nav-container a:focus:after,
.nav-container a:active:after {
    width: 100%;
}
.logo-img{
    height: 83px;
}
/*  */

.nav-container.main__head a.main__head_a {
    top: 0;
    display: contents;
}

.nav-container.main__head a.main__head_a:after {
    content: none !important;
}

/*  */

.button_container {
    position: absolute;
    top: 0px;
    right: 0%;
    height: 27px;
    width: 30px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.button_container:hover {
    opacity: 1;
}

.button_container.active {
    position: fixed;
    top: 82px;
    right: 7%;
}

.button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    -ms-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}

.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}

.button_container span {
    background: #7b2326;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(2) {
    top: 11px;
    width: 60%;
}

.button_container span:nth-of-type(3) {
    top: 22px;
}

.overlay {
    position: fixed;
    /*background: #1865AA;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    z-index: 99;
}

.overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}

.overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 50px;
    font-family: 'Montserrat', serif;
    font-weight: 700;
    text-align: center;
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}

.overlay ul li {
    display: block;
    /* height: 20%;
    height: calc(100% / 5);
    min-height: 50px; */
    position: relative;
    opacity: 0;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    margin-left: 22px;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid #FFF;
    padding: 15px 0;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 100%;
}

.overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 1px;
    background: #F8941E;
    -webkit-transition: .35s;
    transition: .35s;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

/* MEGA - TOPBAR */

#overlay .container-fluid.top {
    background: #fff;
}

#overlay .top-header {
    padding: 10px;
}

#overlay .top-header a.fonts {
    color: rgb(253 253 253);
    text-decoration: none;
    border-right: 1px solid rgb(244 250 255);
    padding: 3px 12px;
    margin: 0px 7px;
    font-size: 16px;
}
.top-header a {
    color: white;
    font-size: 16px;
    margin-bottom:4px;
}
.mega {}

.mega h3 {
    font-size: 28px;
    font-weight: 600;
    text-align: left;
    color: #7b2326;
}

.mega h3::after {
    width: 100%;
    height: 10px;
    background-color: red;
}

.mega .bg {
    background: #fff;
    padding: 50px;
    height: 100vh;
}

.mega .bg2 {
    padding: 100px 100px;
    background: url(images/mega-circle.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-image: linear-gradient(to right, #7b2326 0%, #F8941E 100%);
}

.mega .bg2 h5 {
    color: #fff;
    font-size: 27px;
    font-weight: 300;
    border-left: 10px solid #F8941E;
    padding: 0 10px;
}

.mega .bg2 ul {
    width: 100%;
}

.mega .bg2 ul li:nth-child(1) {
    border-bottom: unset;
    width: 100%;
    padding: unset;
}

.mega .bg2 ul li {
    width: 100%;
    padding: 0px 0;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

.delay-3 {
    animation-delay: .6s;
}

.delay-4 {
    animation-delay: .8s;
}

.tag {
    display: inline-block;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

;
/* OWL */

.owl-carousel {
    margin: 100px 0;
}

.owl-theme .item {
    text-align: center;
}

.owl-theme .owl-stage-outer .owl-stage div.owl-item .item span {
    background-color: #f5f5f5;
    border: 1px solid #208CCB;
    /* padding: 16px; */
    /* display: block; */
    width: 70px;
    height: 70px;
    border-top-right-radius: 2%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    transform: rotate(317deg);
    margin: 0 auto;
    font-size: 25px;
    display: inline-flex;
    margin: 15px 0;
    align-items: center;
}

.owl-theme .owl-stage-outer .owl-stage div.owl-item .item span p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
    margin: 0;
}

.owl-carousel.owl-theme .owl-stage-outer .owl-stage div.owl-item .item p {
    margin-bottom: 0;
    width: fit-content;
    margin: 0 auto;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.owl-theme .item span img {
    width: 100%;
    height: auto;
}

.owl-theme .item span img {
    fill: #FFF;
    filter: invert(48%) sepia(100%) saturate(0%) hue-rotate(86deg) brightness(100%) contrast(1000%);
}

/* .owl-theme .owl-stage-outer .owl-stage div.owl-item.center .item span{
  background-color: #1865AA !important;
} */

/* .owl-theme .owl-stage-outer .owl-stage div.owl-item .item img{
  width: 50px;
  height: auto;
  margin: 0 auto;
} */

.owl-carousel.owl-theme .owl-stage-outer .owl-stage div.owl-item .item img {
    width: 100px;
    height: auto;
    margin: 0 auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    object-fit: contain;
}

.owl-carousel.owl-theme .owl-stage-outer .owl-stage div.owl-item.active .item.first span {
    background-color: #1865AA;
    display: inline-flex;
    margin: 15px 0;
    color: #fff;
}

.owl-carousel.owl-theme .owl-dots .owl-dot:after {
    content: "";
    position: absolute;
    width: 2%;
    bottom: 6%;
    height: 1px;
    background-color: transparent !important;
    transform: translate(0px, 0px);
    z-index: -1;
}

.owl-theme.owl-milestone:after {
    content: "";
    position: absolute;
    left: 120px;
    width: 82%;
    top: 38%;
    height: 1px;
    background-color: #208CCB;
    transform: translate(0px, 0px);
    z-index: -1;
}

/* .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: unset;
  line-height: 0;
  height: 2px;
  bottom: 190px;
  background: red;
  width: 100%;
  transform: translateY(-100px);
} */

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 49px !important;
}

.owl-theme .owl-dots .owl-dot:after {
    content: "";
    position: absolute;
    width: 2%;
    bottom: 6%;
    height: 1px;
    background-color: #d6d6d6;
    transform: translate(0px, 0px);
    z-index: -1;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #F8941E !important;
}

/* .owl-theme .owl-stage-outer .owl-stage .owl-item:not(.active) + .owl-item.active {
  margin-top: -50px;
}

.owl-theme .owl-stage-outer .owl-stage .owl-item:not(.active) + .owl-item.active + .owl-item.active {
  margin-top: 51px;
}

.owl-theme .owl-stage-outer .owl-stage .owl-item:not(.active) + .owl-item.active + .owl-item.active + .owl-item.active {
  margin-top: 90px;
}

.owl-theme .owl-stage-outer .owl-stage .owl-item:not(.active) + .owl-item.active + .owl-item.active + .owl-item.active + .owl-item.active {
  margin-top: 50px;
}

.owl-theme .owl-stage-outer .owl-stage .owl-item:not(.active) + .owl-item.active + .owl-item.active + .owl-item.active + .owl-item.active + .owl-item.active {
  margin-top: -50px;
} */

.owl-carousel2,
.owl-carousel2 .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel2 {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel2 .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel2 .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel2 .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel2 .owl-item,
.owl-carousel2 .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel2 .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel2 .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel2 .owl-dots.disabled,
.owl-carousel2 .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel2,
.owl-carousel2.owl-loaded {
    display: block
}

.owl-carousel2 .owl-dot,
.owl-carousel2 .owl-nav .owl-next,
.owl-carousel2 .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel2 .owl-nav button.owl-next,
.owl-carousel2 .owl-nav button.owl-prev,
.owl-carousel2 button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit
}

.owl-carousel2.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel2.owl-hidden {
    opacity: 0
}

.owl-carousel2.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel2.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel2.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel2.owl-rtl {
    direction: rtl
}

.owl-carousel2.owl-rtl .owl-item {
    float: right
}

.owl-carousel2 .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.owl-carousel2 .owl-animated-in {
    z-index: 0
}

.owl-carousel2 .owl-animated-out {
    z-index: 1
}

.owl-carousel2 .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel2 .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel2 .owl-item .owl-lazy:not([src]),
.owl-carousel2 .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel2 .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel2 .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel2 .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.owl-carousel2 .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel2 .owl-video-playing .owl-video-play-icon,
.owl-carousel2 .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel2 .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel2 .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-theme2 .item {
    text-align: center;
}

.owl-theme2 .owl-stage-outer .owl-stage div.owl-item .item span {
    background-color: #f5f5f5;
    border: 1px solid #208CCB;
    padding: 16px;
    /* display: block; */
    width: 70px;
    height: 70px;
    border-radius: 100%;
    margin: 0 auto;
    font-size: 25px;
    display: inline-flex;
    margin: 15px 0;
    align-items: center;
}

.owl-theme2 .owl-stage-outer .owl-stage div.owl-item .item span p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    margin: 0;
}

.owl-theme2 .owl-stage-outer .owl-stage div.owl-item .item p {
    margin-bottom: 0;
    width: 50%;
    margin: 0 auto;
}

.owl-theme2 .item span img {
    width: 100%;
    height: auto;
}

.owl-theme2 .item span img {
    fill: #FFF;
    filter: invert(48%) sepia(100%) saturate(0%) hue-rotate(86deg) brightness(100%) contrast(1000%);
}

.owl-theme2 .owl-stage-outer .owl-stage div.owl-item.center .item span {
    /* background-color: #1865AA !important; */
}

.owl-theme2 .owl-stage-outer .owl-stage div.owl-item .item img {
    width: 86%;
    height: auto;
    margin: 0 auto;
}

.owl-theme2 .owl-stage-outer .owl-stage div.owl-item.active.first .item span {
    background-color: #1865AA;
    display: inline-flex;
    margin: 15px 0;
    color: #fff;
}

/* .owl-theme:after {
  content: "";
  position: absolute;
  left: 120px;
  width: 82%;
  top: 36%;
  height: 1px;
  background-color: #208CCB;
  transform: translate(0px, 0px);
  z-index: -1;
} */

.owl-theme2 .owl-nav.disabled+.owl-dots {
    margin-top: 49px !important;
}

.owl-theme2 .owl-dots .owl-dot:after {
    content: "";
    position: absolute;
    width: 2%;
    bottom: 6%;
    height: 1px;
    background-color: #d6d6d6;
    transform: translate(0px, 0px);
    z-index: -1;
}

.owl-theme2 .owl-dots .owl-dot.active span,
.owl-theme2 .owl-dots .owl-dot:hover span {
    background: #1865aa !important;
}

.owl-carousel2 .owl-dots {
    display: none;
}

.owl-carousel2 .owl-nav {
    text-align: center;
}
.slide svg{
    margin: 0 auto;
    display: block;
}
.slide{
    margin-top: 192px;
}


/* .mega .slide {
    padding: 50px;
} */
/* banner */
/* ============ Full Page Slider ================= */
.creative-photography--slider {
    background-color: #121212;
    /* padding: 0px 100px 100px 0px; */
    position: relative;
}
.photography-slider--item {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 100px);
}
.photography-slider--layer {
    position: absolute;
    top: 0px;
    z-index: 1;
    left: auto;
    right: 45%;
}
.photography-slider--layer img{
    width: 100%;
}
.photography-slider--content {
    position: relative;
    height: 100%;
    margin-top: 100px;
}
.photography-slider--content .photography-slider--image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 2s linear;
    -moz-transition: all 2s linear;
    transition: all 2s linear;
    position: relative;
    max-width: 72.917vw;
    margin-left: auto;
    opacity: 1;
}
.photography-slider--content .photography-slider--image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photography-slider--inner {
    position: absolute;
    /* left: -16.5vw; */
    top: 30%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 2;
}
.photography-slider--inner .photography-heading {
    margin-bottom: 0px;
    position: relative;
}
.photography-slider--inner .photography-heading .photography-item--title{
    font-size: 11.296vh;
    line-height: 11.296vh;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0px;
    letter-spacing: 0px;
    opacity: 1;
    transform: translateX(0px);
    -webkit-transition: all 2.5s ease;
    -moz-transition: all 2.5s ease;
    transition: all 2.5s ease;
    transform-origin: top;
    z-index: 1;
    position: relative;
    opacity: 0;
    transform-origin: top;
    transform: translateX(200px);
    -webkit-transition: all 2.5s ease;
    -moz-transition: all 2.5s ease;
    transition: all 2.5s ease;
    background: linear-gradient(103deg, rgba(238, 50, 39, 1) 1%, rgba(248, 148, 30, 1) 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.photography-slider--inner .photography-heading .photography-item--title-outline{
    font-size: 20.111vh;
    line-height: normal;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #2F2F2F;
    z-index: 0;
    position: absolute;
    bottom: -4.083vw;
    opacity: 1;
    transform: translateX(0px);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0px;
    letter-spacing: 0px;
    transform-origin: top;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    transition: all 2s ease;
    -webkit-text-stroke-width: 3px;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform-origin: top;
    transform: translateX(200px);
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    transition: all 2s ease;
}
.swiper-slide-active .photography-heading .photography-item--title {
    opacity: 1;
    transform: translateX(0px);
}
.swiper-slide-active .photography-heading .photography-item--title-outline {
    opacity: 1;
    transform: translateX(0px);
}
.creative-photography--slider .creative-swiper--dots .swiper-pagination{
    counter-reset: numbers;
    display: flex;
    flex-direction: column;
    gap: 12px;
    bottom: 0;
    margin-top: 0px;
    left: 25px;
    width: 100%;
}
.creative-photography--slider .creative-swiper--dots .swiper-pagination span{
    position: static;
    background: #fff;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 14px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    font-size: 14px;
    font-weight: 600;
}
.creative-swiper--dots .swiper-pagination span.swiper-pagination-bullet-active{
   background-color: #F8941E; 
}
.creative-swiper--dots .swiper-pagination .swiper-pagination-bullet::after {
    content: '';
    font-size: 24px;
    font-weight: 600;
    counter-increment: numbers;
    content: "0" counter(numbers);
    color: #F8941E;
    position: absolute;
    bottom: calc(100% + 20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.creative-swiper--dots .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    opacity: 1;
    visibility: visible;
}
.creative-photography--slider .creative-photography--sidebar{
    width: 100px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.creative-photography--sidebar ul{
    position: relative;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    flex-direction: column;
}
.creative-photography--sidebar ul li{
    position: relative;
    /* transform: rotate(90deg); */
}
.creative-photography--sidebar ul li a{
    font-size: 18px;
    line-height: 15px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: transparent;
    border: 1px solid #ffffff;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
}
.creative-photography--sidebar ul li a:hover{
    border-color: #b90808;
    background-color: #b90808;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ======================= Responsive Ipad Pro ============================== */
@media screen and (max-width: 1366px) {
    .photography-slider--inner .photography-heading .photography-item--title-outline {
        font-size: 15.67vh;
        line-height: 15.65vh;
        bottom: -3.083vw;
    }
    .photography-slider--inner .photography-heading .photography-item--title span{
        font-size: 9.444vh;
        font-family: inherit;
        font-style: inherit;
        font-weight: inherit;
        background-color: #0f0f0f;
        display: inline-block;
    }
}
/* ======================= Responsive Ipad ============================== */
@media screen and (max-width: 991px) {
    .photography-slider--content .photography-slider--image {
        max-width: 100vw;
    }
    .photography-slider--inner{
        left: 30px;
        top: 60%;
        transform: translateY(-50%) rotate(0deg);
    }
    .photography-slider--inner .photography-heading .photography-item--title span{
        background-color: transparent;
    }
    .photography-slider--content{
        margin-top: 0px;
    }
    .creative-photography--slider .creative-swiper--dots .swiper-pagination{
        bottom: 60%;
        left: 10px;
    }
}
/* ======================= Responsive Ipad ============================== */
@media screen and (max-width: 460px) {
    .creative-photography--slider{
        padding: 0px;
    }
    .creative-photography--slider .photography-slider--inner{
        top: 50%;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        left: 0px;
    }
    .photography-slider--inner .photography-heading .photography-item--title{
        font-size: 8.296vh;
        line-height: 8.296vh;
    }
    .photography-slider--inner .photography-heading .photography-item--title span{
       font-size: 8.296vh; 
   }
   .photography-slider--inner .photography-heading .photography-item--title-outline {
    font-size: 8.296vh;
    line-height: 8.296vh;
    bottom: -0.083vw;
}
.creative-photography--slider .creative-photography--sidebar{
    top: 35px;
    justify-content: start;
}
.creative-photography--slider .creative-swiper--dots .swiper-pagination{
    bottom: 90px;
    left: 0;
    flex-direction: row;
    justify-content: center;
}
.creative-photography--slider .creative-swiper--dots .swiper-pagination span{
    margin: 0 5px;
}
}

section{
    padding: 50px 0;
}
.section-title h6{
    color: #F8941E;
    position: relative;
}
/*.section-title h6::after{*/
/*    content: url(images/h6-after.png);*/
/*    position: absolute;*/
/*    top: -4px;*/
/*    left: 104px;*/
/*    height: 30px ;*/
/*    width: auto;*/
    
/*}*/
.section-title h2{
    color: #fff;
    font-weight: bold;
    font-size:32px;
}
/* .section-title h2 span{
    background: linear-gradient(103deg, rgba(238, 50, 39, 1) 1%, rgba(248, 148, 30, 1) 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
.section-btn{

    --c: #f8941e;
    color: var(--c);
    font-size: 14px;
    border: 1px solid var(--c);
    border-radius: 25px;
    width: 12em;
    height: 3em;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 3em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    
}
.section-btn span {
    position: absolute;
    width: 25%;
    height: 100%;
    background: linear-gradient(103deg, rgba(238, 50, 39, 1) 1%, rgba(248, 148, 30, 1) 99%);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.section-btn:hover {
    color: #fff;
}

.section-btn:hover span {
    transform: translateY(0) scale(2);
}

.section-btn span:nth-child(1) {
    --n: 1;
}

.section-btn span:nth-child(2) {
    --n: 2;
}

.section-btn span:nth-child(3) {
    --n: 3;
}

.section-btn span:nth-child(4) {
    --n: 4;
}

/* section-button */

/* about section */
.about-section{
    background-color: #121212;
    position: relative;
}
.about-section::before{
    content: "";
position: absolute;
top: 0;
left: 0;
background: url(../images/about-bg.png);
z-index: 2;
height: 100%;
width: 100%;
background-repeat: no-repeat;
background-size: contain;

}
.about-content{
    position: relative;
    z-index: 3;
}
.about-content img{
    border-radius: 15px;
    position: relative;
}
.about-content .ticks{
    padding: 2em;
    background: rgba(0, 0, 0, 0.9);
    width: 50%;
    margin-top: -294px;
    margin-left: -31px;
    position: relative;
    z-index: 2;
    border-radius: 10px;

}
.about-content .ticks ul li{
    list-style-type: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-weight: 500;
}
.about-content .ticks ul li i{


color: #F8941E;
}
.about-content .ticks ul{
    padding: 0;
}
.about-content p{
    color: #fff;
    border-bottom:  1px solid #d7d7d7;
}
.about-content h1{

    color: #F8941E;
    letter-spacing: 7px;
    text-align: center;
    border-bottom: 1px solid #d7d7d7;
}
/* solutions-section */
.solutions{
  background-image: url("../images/service-bg.jpg");

  min-height: 500px;

  background-attachment: fixed;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;
  position: relative;
}
.solutions:after{
position: absolute;
content: "";
background: rgba(0, 0, 0, 0.85);
left: 0;
top: 0;
height: 100%;
width: 100%;

}
.solutions .solution-content{
    position: relative;
    z-index: 3;
}
.solutions .section-title h6{
    text-align: center;
    /*width: 125px;*/
    margin: 0 auto;
}

.solutions .section-title h6::after{
    left: 127px;
}
.solutions .solution-box{
    background: #121212;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}
.border-right{
    border-right: 1px solid rgba(255,255,255,0.18);
}
.solutions h4{
    color: #fff;
    font-size: 20px;
}
.solutions .solution-box .solution-box-single{
    padding: 20px 0;
}
.solutions img{
    height: 100px;
    margin: 0 auto;
    display: flex;
    transition: 0.5s all ease;
}
.solutions .solution1{
    background-image: url(../images/fire-alarm-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.solutions .solution2{
    background-image: url(../images/fire-extinguisher.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.solutions .solution3{
    background-image: url(../images/sprinkler-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.solutions .solution4{
    background-image: url(../images/water-hose.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.solution-box p{
    color: #fff;
    text-align: center;
}
.solutions .solution-box-single:hover img{
    animation-name: bounceIn;
    animation-duration: 1s;
    animation-iteration-count: 1;
    transition: 0.5s all ease;
    filter: brightness(0) invert(1);
  
}
.solutions .solution-box:hover{
    border: 1px solid dotted;
    transition: 0.5s all ease;
}
/* service section */
.services{
    background-color: #121212;
}
.services .section-title h6{
    text-align: center;
    /*width: 107px;*/
    margin: 0 auto;
}
.services .section-title  h2{
    text-align: center;
}
.services .service-content p{
    color: #fff;
}
.service-box h4{
    color: #fff;
}
.services .section-title h6::after{
    left: 108px;
} 
.service-box{
    background-image: url(../images/curve-shape.png);
    background-color: #000;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 15px;
    padding: 45px 20px;
    position: relative;
    transition: 0.5s all ease;
}

.service-box:after{
    position: absolute;
content: "";
background: rgba(0, 0, 0, 0.6);
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.service-box .service-box-content{
    z-index:3;
    position:relative;
}
.service-box:hover{
    transition: 1s all ease;
    background-color: #fff;

}

.service-box:hover h4{
    color: #fff;
    transition: 0.5s all ease;
}
.service-box:hover p{
    color: #fff;
    transition: 0.5s all ease;
}
.service-box:hover .service-icon-box{
    filter: none;
    transition: 0.5s all ease;
}
.service-icon{
    border-radius: 50%;
    background-image: url(../images/dotted-circle.png);
    height: 80px;
    width: 80px;
    background-repeat: no-repeat;
   
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -76px;
    left: -39px;

}

   
.service-icon-box{
    border-radius: 50%;
    background-color: linear-gradient(103deg, rgba(238, 50, 39, 1) 1%, rgba(248, 148, 30, 1) 99%);
    filter: brightness(0) invert(1);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all ease;
}
.service-icon-box img{
    height: 40px;
    width: 40px;
}
.service-icon-box .d-gas-img{
height: 28px;
width: auto;
}
/* clients */
.clients{
    background-color: #000;
}
.client-bg{
    background-image: url("../images/banner2.jpg");

    min-height: 500px;
  
    background-attachment: fixed;
  
    background-position: center;
  
    background-repeat: no-repeat;
  
    background-size: cover;
    position: relative;
}
.client-bg:after{
    position: absolute;
content: "";
background: rgba(0, 0, 0, 0.6);
left: 0;
top: 0;
height: 100%;
width: 100%;
}

.clients .carousel-wrap {
    margin: 90px auto;
    padding: 0 5%;
    width: 80%;
    position: relative;
    z-index:3;
  }
  
  /* fix blank or flashing items on carousel */
  .clients .owl-carousel .item {
    position: relative;
    z-index: 100; 
    -webkit-backface-visibility: hidden; 
  }
  
  /* end fix */
 
  .clients .owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
  }
  
  .clients .owl-nav i {
    font-size: 52px;
  }
  
  .clients .owl-nav .owl-prev {
    left: -30px;
  }
  
  .clients .owl-nav .owl-next {
    right: -30px;
  }
  /* contact */
  .contact{
  background-color: #121212;
  
    background-attachment: fixed;
  
    background-position: center;
  
    background-repeat: no-repeat;
  
    background-size: cover;
    position: relative;
  }
  .contact-content{
    position: relative;
    z-index: 3;
  }
  .contact::before{
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.9);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  .contact p{
    color: #fff;
    text-align: left;
  }
  .contact .section-title h6::after{
    left: 149px;
  }

  form .form-row{
    margin-top: 50px;
}
form .form-row input{
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 1px solid rgba(250,250,250, 1);
    outline: none;
    background:none;
    color: white;
}
form .form-row  textarea{
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 1px solid rgba(250,250,250,1);
    outline: none;
    background:none;
    color: white;
}
.form-row input:focus ~ label, .form-row textarea:focus ~ label,
.form-row input:valid ~ label, .form-row textarea:valid ~ label{
  transform: translateY(-20px);
  font-size: 14px;
  color: #f8941e;
}
.form-row{
    position: relative;
}
.form-row textarea{
    resize: none;
    padding-top: 10px;
  }
  .form-row label{
    position: absolute;
    pointer-events: none;
    bottom: 24px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #fff;
  }
  .form-row .under{
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
  }
  .form-row .under:before{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: #f8941e;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .form-row input:focus ~ .under:before,
.form-row input:valid ~ .under:before,
.form-row textarea:focus ~ .under:before,
.form-row textarea:valid ~ .under:before{
  transform: scale(1);
}


.social-contact li{
display: inline-block;
}


.social-contact a{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all ease;
}
.social-contact a:hover{
    border: 1px solid #f8941e;
    transition: 0.5s all ease;
    margin-right: 10px;
}
.social-contact i{
    color: #fff;
}
/* core values */
.core-values{
    background-color: #121212;
}
.core-values .section-title h6{
    text-align: center;
    /*width: 107px;*/
    margin: 0 auto;
}
.core-values .section-title  h2{
    text-align: center;
}
.core-box{
    background-image: url(../images/flame.png);
    height: 235px;
    width: 235px;
    display: flex;
    align-items: center;
    justify-content:center;
}
.core-box:hover img{
    transition: 0.5s all ease;
    animation: bounce 2s  linear;
}
@-webkit-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-moz-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-o-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-ms-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
.core-box img{
    height: 70px;
    width: 70px;
    margin-top: 90px;
    transition: 0.5s all ease;
}
.core-values h4{
    color: #fff;
}
/* footer */
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
    background: url(../images/banner3.jpg);
  }
  .sitename{
    background: linear-gradient(103deg, rgba(238, 50, 39, 1) 1%, rgba(248, 148, 30, 1) 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .footer-top{
    position: relative;
    z-index: 3;
  }
  .copyright{
    position: relative;
    z-index: 3;
  }
  .footer:after{
    position: absolute;
content: "";
background: rgba(0, 0, 0, 0.9);
left: 0;
top: 0;
height: 100%;
width: 100%;
  }
  .footer li:before {
    content: '\f04b';
    font-family: 'FontAwesome';
    float: left;
    margin-right: 5px;
    color: #fea200;
  }
  
  .footer .footer-top {
    padding: 50px 0;
    background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
  
  }
  .border-bottom{
    border-bottom: 1px solid #462600 !important;
  }
  
  .footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 10px;
  }
  
  .footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: #fff;
  }
  
  .footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
  }
  
  .footer .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 16px;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: var(--contrast-color);
    background-color: var(--accent-color);
  }
  
  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
  }
  
  .footer .footer-links ul {
    list-style: none;
   padding-left: 10px;
    margin: 0;
  }
  .footer p{
    color: #fff;
  }
  .footer .footer-links ul i {
    margin-right: 4px;
    font-size: 12px;
    line-height: 0;
    color: #fff;
  }
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #fff;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    color: #fff;
    display: inline-block;
    line-height: 1;
  }
  
  .footer .footer-links ul a:hover {
    color: var(--accent-color);
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
  }
  
  .footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
    transition: 0.3s;
  }
  
  .footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
  }
  
  .footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
    color: var(--default-color);
  }
  
  .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
  }
  
  .footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
  
  .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  .footer .copyright {
    padding: 30px 0;
  }
  
  .footer .copyright p {
    margin-bottom: 0;
  }
  
  .footer .credits {
    margin-top: 5px;
    font-size: 13px;
  }
  .footer-about{
    color: #fff;
  }
  .copyright span{
    color: #fff;
  }
  .copyright span a{
    color: #f8941e;
  }
  .footer-contacts{
    position: relative;
    z-index: 3;
  }
  .footer-contacts .ul img{
    height: 40px;
    width: 40px;
  }
  .footer-contacts .logo img{
    height: 44px;
  }
  .footer-contacts ul {
   
    color: #fff;
  }
  .footer-contacts{
    border-bottom: 1px solid #462600;
  }
  .footer-contacts .ul{
    background-color: #000;
    border-radius: 20px;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #fff;
    font-size:15px;
  }
  /* inner banner */
  .inner-banner{
    background-color:#000;
    padding:15px 0;
    /* margin-top: 115px; */
    
  }
  .inner-banner img{
    height: 24px;
    width: 24px;
  }
  .inner-banner h5{
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 26px;
  }
  .about-page-inner{
    background-image: url("../images/services_bg2.webp");

    min-height: 500px;
  
    background-attachment: fixed;
  
    background-position: center;
  
    background-repeat: no-repeat;
  
    background-size: cover;
    position: relative;
  }
  .about-page-inner-content{
    position: relative;
    z-index: 3;
  }
  .about-page-inner::before{
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.9);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  /* about page timeline */
  .timeline-main {
    width: 100%;
    padding: 25px;
}
.timeline-main .timeline-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.timeline-main .timeline-wrap::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 10px);
    background-color: #f8941e;
    animation: line 5s linear;
}
@media (max-width: 767px) {
    .timeline-main .timeline-wrap::before {
        left: 95%;
   }
}
.timeline-main .timeline-wrap .timeline-card {
    width: 50%;
    margin-right: auto;
    position: relative;
}
@media (max-width: 767px) {
    .timeline-main .timeline-wrap .timeline-card {
        width: 95%;
   }
}
.timeline-main .timeline-wrap .timeline-card::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #b90808;
    animation: fadeIn 1.5s;
    animation-fill-mode: both;
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap {
    height: 100%;
    margin-right: 35px;
    background-color: #000;
    border-radius: 10px;
    position: relative;
    padding: 30px;
    animation: fadeInRight 2.5s;
    animation-fill-mode: both;
}
@media (max-width: 767px) {
    .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap {
        padding: 20px;
   }
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap::before {
    content: "";
    position: absolute;
    left: 30px;
    top: -8px;
    height: 8px;
    width: calc(100% - 60px);
    background: linear-gradient(103deg, rgba(238, 50, 39, 1) 1%, rgba(248, 148, 30, 1) 99%);
    border-radius: 5px 5px 0 0;
    opacity: 0.3;
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(103deg, rgba(238, 50, 39, 1) 1%, rgba(248, 148, 30, 1) 99%);
    border-radius: 5px;
    transform: rotate(45deg);
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
   }
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-head {
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-head {
        font-size: 18px;
        line-height: 28px;
   }
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-subhead {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #bdbdbd;
    margin-bottom: 0;
    font-style: italic;
}
@media (max-width: 767px) {
    .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .card-head-wrap .timeline-card-subhead {
        font-size: 14px;
        line-height: 24px;
   }
}
.timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .timeline-card-text {

    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin: 25px 0 0;
    text-align: left;
}
@media (max-width: 767px) {
    .timeline-main .timeline-wrap .timeline-card .timeline-card-wrap .timeline-card-text {
        font-size: 14px;
        line-height: 22px;
   }
}
@media (min-width: 768px) {
    .timeline-main .timeline-wrap .timeline-card:nth-child(even) {
        margin-left: auto;
        margin-right: 0;
   }
    .timeline-main .timeline-wrap .timeline-card:nth-child(even)::after {
        right: unset;
        left: -10px;
        animation-delay: 2.6s;
   }
    .timeline-main .timeline-wrap .timeline-card:nth-child(even) .timeline-card-wrap {
        margin-right: 0;
        margin-left: 35px;
        animation: fadeInLeft 2.5s;
        animation-fill-mode: both;
        animation-delay: 2.5s;
   }
    .timeline-main .timeline-wrap .timeline-card:nth-child(even) .timeline-card-wrap::after {
        right: unset;
        border-left: none;
        left: -8px;
        /* border-right: 10px solid #00283a; */
   }
}
@keyframes line {
    0% {
        height: 0;
   }
    100% {
        height: calc(100% - 10px);
   }
}
@keyframes fadeIn {
    from {
        opacity: 0;
   }
    to {
        opacity: 1;
   }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
   }
    100% {
        opacity: 1;
        transform: translateX(0);
   }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
   }
    100% {
        opacity: 1;
        transform: translateX(0);
   }
}
/* gallery */
.gallery{
    padding: 50px 0;
    background-color: #121212;
}
.gallery-box-container {
    display: flex;
    justify-content: space-between;
    flex: 0 1 90%;
    flex-wrap: wrap;
}
.gallery-box {
    display: block;
    color: #fff;
    flex: 0 1 calc(25% - 15px);
    height: 400px;
    background: #fea200;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 1200px) {
    .gallery-box {
        flex: 0 1 calc(50% - 15px);
        margin: 15px 0;
   }
}
@media screen and (max-width: 640px) {
    .gallery-box {
        flex: 0 1 calc(100% - 15px);
   }
}
.gallery-box__img-container {
    display: block;
    width: 135%;
    height: 350px;
    background: #fff;
    border-radius: 0 0 40px 40px;
    border: 2px solid #fffff8;
    transform: rotate(25deg);
    position: absolute;
    left: -15%;
    top: -75px;
    transition: all 0.4s ease;
    overflow: hidden;
}
@media screen and (max-width: 1200px) {
    .gallery-box__img-container {
        height: 420px;
        top: -180px;
   }
}
@media screen and (max-width: 900px) {
    .gallery-box__img-container {
        height: 420px;
        top: -120px;
   }
}
@media screen and (max-width: 640px) {
    .gallery-box__img-container {
        height: 450px;
        top: -190px;
   }
}
.gallery-box__img {
    display: block;
    width: 100%;
    transform: rotate(-25deg) scale(1.1);
    transition: all 0.4s ease;
}
.gallery-box__text-wrapper {
    transition: all 0.4s ease;
    position: absolute;
    left: 15px;
    top: 250px;
    width: 80%;
}
.gallery-box__text {
    font-weight: 500;
    font-size: 22px;
    padding: 8px 0;
    box-shadow: 8px 0 0 rgba(0, 0, 0, 0.7), -8px 0 0 rgba(0, 0, 0, 0.7);
    box-decoration-break: clone;
    line-height: 2;
    background: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 900px) {
    .gallery-box__text {
        font-size: 20px;
   }
}
.gallery-box:hover .gallery-box__img-container {
    width: 110%;
    height: 450px;
    border-radius: 0;
    transform: rotate(0);
    left: -2px;
    top: -120px;
}
.gallery-box:hover .gallery-box__img {
    display: block;
    width: 100%;
    transform: rotate(0deg) scale(1);
}
.gallery-box:hover .gallery-box__text-wrapper {
    top: 288px;
}
/* header dropdown */
header li {
    color: #fff;

    display: block;
    float: left;
    padding: 1rem;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
}

header li a {
    color: #fff;
}

header .header-drop-li:before {
    content: '\f0d7';
    font-family: 'FontAwesome';
    float: right;
    margin-right: 5px;
    color: #fff;
  }
header ul li ul {

    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none !important;
}

header ul li ul.show {
    visibility: visible;
    opacity: 1;
    display: block !important;
}


header ul li ul li {
    clear: both;
    width: 100%;
}
/* clients page */
.clients-inner{
    background: #121212;
}
.client-box
{

  margin: 0 auto;
  padding: 2px;
  
  transition: 0.5s all ease-in;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAOqrAP///yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=='),  url('data:image/gif;base64,R0lGODlhAQABAPAAAOqrAP///yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=='),
url('data:image/gif;base64,R0lGODlhAQABAPAAAP///////yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==');
  background-repeat: no-repeat;
  background-size: 0 2px, 0 100%, 0% 2px;
  background-position: top center, top center, bottom center;

}

/* Chrome, Safari, Opera */
@-webkit-keyframes drawBorderFromCenter {
    0% {
      background-size: 0 2px, 0 0, 100% 100%;
    }
    20% {
      background-size: 100% 2px, 100% 0, 100% 100%;
    }
    66%
    {
      background-size: 100% 2px, 100% 98%, 100% 100%;
    }
    99%
    {
      background-size: 100% 2px, 100% 98%, 0 2px;
    }
}
.client-box .box-box{
    margin-top: 25px;
    /* background-color:#000; */
}
.client-box:hover .box-box{
   padding:15px;
    transition: 0.5s all ease-in;
    -webkit-animation: drawBorderFromCenter 4s;
 
}
.client-box img{
  width: 100%;
 
}
/* contact page */
.contact-page{
    background-image: url("../images/service-bg.jpg");

    min-height: 500px;
  
    background-attachment: fixed;
  
    background-position: center;
  
    background-repeat: no-repeat;
  
    background-size: cover;
    position: relative;
  }
  .contact-page-content{
    position: relative;
    z-index: 3;
  }
  .contact-page::before{
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.9);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }


  .contact-page .info-item {
    position: relative;
	z-index: 2;
	backdrop-filter: blur(8px);
    
	color: #fff;

	padding: 30px 10px;
	border-radius: 10px;
    box-shadow: 0 5px 50px rgb(116 116 116 / 30%);
    text-align: center;
  }
  
  .contact-page .info-item i {
    font-size: 28px;
    line-height: 0;
    color: #f8941e;
  }
  
  .contact-page .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px 0;
  }
  
  .contact-page .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 0;
    text-align: center;
  }
  
 .contact-page .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: #fff;
    color: #fff;
  }
  .contact-page .php-email-form .form-control {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: #fff;
    color: #fff;
  }
  
  .contact-page .php-email-form input[type=text]:focus,
    .contact-page .php-email-form input[type=email]:focus,
    .contact-page .php-email-form textarea:focus {
    border-color: var(--accent-color);
  }
  
  .contact-page .php-email-form input[type=text]::placeholder,
  .contact-page .php-email-form input[type=email]::placeholder,
  .contact-page .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  .contact-page .php-email-form button[type=submit] {
    /*background: var(--accent-color);*/
    /*color: var(--contrast-color);*/
    border: 0;
    /*padding: 10px 30px;*/
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact-page .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }


  
  /* certificate page */
  .certifcates{
    background-color: #121212; 
  }
  .certi-box  {
	
	
	position: relative;
	background: rgba(255,255,255,1);
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
	color: #2c3e50;
	box-shadow: inset 0 0 0 3px #fea200;
	-webkit-transition: background 0.4s 0.5s;
	-ms-transition: background 0.4s 0.5s;
	transition: background 0.4s 0.5s;
	margin-bottom:10px;
    padding: 10px;
}

.certi-box:hover {
	background: rgba(255,255,255,0);
	-webkit-transition-delay: 0s;
	-ms-transition-delay: 0s;
	transition-delay: 0s;
}

.certi-box h3 {
	font-family: 'Dancing Script', cursive;
	font-size: 180px;
	line-height: 370px;
	margin: 0;
	font-weight: 400;
	width: 100%;
}

.certi-box span {
	display: block;
	font-weight: 300;
	letter-spacing: 1px;
	font-size: 13px;
	padding: 5px 10px;
}

.certi-box h3,
.certi-box span {
	-webkit-transition: color 0.4s 0.5s;
	-ms-transition: color 0.4s 0.5s;
	transition: color 0.4s 0.5s;
}

.certi-box:hover h3,
.certi-box:hover span {
	color: #fff;
	-webkit-transition-delay: 0s;
	-ms-transition-delay: 0s;
	transition-delay: 0s;
}

.certi-box svg {
	position: absolute;
	top: 0;
	left: 0;
}

.certi-box svg line {
	stroke-width: 3;
	stroke: #000;
	fill: none;
	-webkit-transition: all .8s ease-in-out;
	-ms-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}

.certi-box:hover svg line {
	-webkit-transition-delay: 0.1s;
	-ms-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.certi-box svg line.top,
.certi-box svg line.bottom {
	stroke-dasharray: 330 240; 
}

.certi-box svg line.left,
.certi-box svg line.right {
	stroke-dasharray: 490 400;
}

.certi-box:hover svg line.top {
	-webkit-transform: translateX(-600px);
	-ms-transform: translateX(-600px);
	transform: translateX(-600px);
}

.certi-box:hover svg line.bottom {
	-webkit-transform: translateX(600px);
	-ms-transform: translateX(600px);
	transform: translateX(600px);
}

.certi-box:hover svg line.left {
	-webkit-transform: translateY(920px);
	-ms-transform: translateY(920px);
	transform: translateY(920px);
}

.certi-box:hover svg line.right {
	-webkit-transform: translateY(-920px);
	-ms-transform: translateY(-920px);
	transform: translateY(-920px);
}

.dropdown-menu.show {
    display: block !important;
}
/* fire protection system page */
.service-fire{
background-color: #121212;
}
.service-fire p{
    color: #fff;
    text-align: center;
    margin-top: 10px;
}
.fire-box img{
    margin: 0 auto;
    display: flex;
}

.fire-box{
   padding: 30px 0;
    width: 100%;
    color: white;
    position: relative;
    margin-top: 10px;
    font-size: 2em;
    border: 1px solid #fea200;
    transition: 0.5s all ease;
}
.fire-box h4{
    font-size: 17px;
}
.fire-box:hover{
    border: none;
    transition: 0.5s all ease;
    margin-bottom: 30px;
}
.fire-box:hover h4{
 
    transition: 0.5s all ease;
    color: #fea200;
}
.fire-box:hover img{
    filter: brightness(0) invert(1);
    transition: 0.5s all ease;
}
.fire-box:hover::after, .fire-box:hover::before{
    transform: scale(1, 1);
}
.fire-box::after, .fire-box::before{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    transition: all 0.5s;
}
.fire-box::after{
    border-right: 1px solid #fea200;
    border-left: 1px solid #fea200;
    transform: scale(1, 0);
}
.fire-box::before{
    border-top: 1px solid #fea200;
    border-bottom: 1px solid #fea200;
    transform: scale(0, 1);
}
/* d gas */
.d-gas{
    background-color: #121212;
}
.d-gas .service-box{
    height:324px
}
.d-gas .service-icon{
    top: -122px;
}

#yellow {
    stroke: #fea200;
    stroke-width: 1.1;
    stroke-dasharray: 810; 
    stroke-dashoffset: 810;
    fill-opacity: 0;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    
    animation-name: DrawLine, FadeStroke, FillIn;
    animation-duration: 8s, 8s, 8s;
    animation-delay: 3s, 6.1s, 6.27s;
  }
  #white{
    stroke: #fff;
    stroke-width: 1.1;
    stroke-dasharray: 810; 
    stroke-dashoffset: 810;
    fill-opacity: 0;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    
    animation-name: DrawLine, FadeStroke, FillIn;
    animation-duration: 8s, 8s, 8s;
    animation-delay: 3s, 6.1s, 6.27s;
  }
  #orange{
    stroke: #D96830;
    stroke-width: 1.1;
    stroke-dasharray: 810; 
    stroke-dashoffset: 810;
    fill-opacity: 0;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    
    animation-name: DrawLine, FadeStroke, FillIn;
    animation-duration: 8s, 8s, 8s;
    animation-delay: 3s, 6.1s, 6.27s;
  }
  
  @keyframes offset {
    100% {
      stroke-dashoffset: 0; 
    }  
  }
  
  @keyframes fill-it-lightBlue {
    0%{
      fill: #ffffff;
    }
    100% {
      fill: #0097A7; 
    }
  }
  
  @keyframes fill-it-darkestBlue {
      0%{
      fill: #ffffff;
    }
    100% {
      fill: #006064; 
    }
  }
  
  @keyframes fill-it-darkBlue {
      0%{
      fill: #ffffff;
    }
    100% {
      fill: #00838F; 
    }
  }
  
  
  @keyframes fill-it-lightestBones {
      0%{
      fill: #ffffff;
    }
    100% {
      fill: #E0F7FA; 
    }
  }
  
  @keyframes DrawLine {
    to { stroke-dashOffset: 0; }
  }
  
  @keyframes FadeStroke {
    to { stroke-opacity: 0; }
  }
  
  @keyframes FillIn {
    from { fill-opacity: 0; }
    to { fill-opacity: 1; }
  }
  /* low current system page */
  .low-current{
    background-color: #121212;
  }
  .low-current p{
    color: #fff;
  }
  /* prelosder */
  .intro{

}
.logo img{
    height: 100px;
    width: auto;
}

.logo-header{
	position: absolute;
	/* top: 40%;
	left: 50%;
	transform: translate(-50%, -50%); */
	color: #D9DCD6;
}

.logo{
	position: relative;
	display: inline-block;
	bottom: -20px;
	opacity: 1;
    color: #000;
    font-weight: bold;
}

.logo.active{
	bottom: 0;
	opacity: 1;
	transition: ease-in-out 0.5s;
}

.logo.fade{
	bottom: 0;
	opacity: 1;
	transition: ease-in-out 0.5s;
}

/* progress bar */
#loader {
    width: 15%;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10%;
    position: relative;
  }
  
  #text {

    color: #fff;
    font-size: 20px;
    padding: 0 10px;
    font-weight: 500;
  }
  #percent {

    color: #fff;
    transition: all 1.5s linear;
    font-size: 16px;
    padding: 0 10px;
    font-weight: 500;
  }
  #bar {
    position: absolute;
    height: 40px;
    width: 100%;
    z-index: -1;
    border-top: 2px solid #D96830;
    transform-origin: left;
    transform: scalex(0%);
    transition: all 1.5s linear;;
  }

  .banner-logo{
    height: 110px;
  }
  .d-box{
    border: 1px solid #F8941E;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 


  .d-box {
    /* width: 60vmin;
    height: 50vmin; */
    display: grid;
    place-content: center;
    color: white;
    text-shadow: 0 1px 0 #000;
    --border-angle: 0turn;
    --main-bg: conic-gradient(from var(--border-angle), #242424, #000 5%, #000 60%, #242424 95%);
    border: solid 1px transparent;
    /* border-radius: 2em; */
    --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #f8941e, #f03 99%, transparent);
    background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    background-position: center center;
    animation: bg-spin 3s linear infinite;
}
@keyframes bg-spin {
    to {
        --border-angle: 1turn;
   }
}
.d-box:hover {
    animation-play-state: paused;
}
@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}
/* *:hover .intro{
    left: -100%;
} */
.intro.moved {

    /* border-top-right-radius: 50% 100%; 
    border-bottom-right-radius: 50% 100%; */
    background: #37b8ab;
    background: -webkit-linear-gradient(to right, #8f0100, #f49900);
    background: linear-gradient(to right, #8f0100, #f49900);
    border-radius: 0% 51% 51% 0%;
  }
 
.intro {
    
    transition: left 0.3s ease; /* Smooth transition */

  

    position: absolute;
	z-index: 9999;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	transition: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* testtimonial */

  .large-container {
    position: static;
    max-width: 1580px;
    padding: 0px 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.testimonial-section {
    background-color: #121212;
    position: relative;
    /* padding-top: 80px;
    padding-bottom: 210px; */
    overflow: hidden;
}
/* .testimonial-section:before {
    position: absolute;
    left: -200px;
    top: 22%;
    background-image: url(../images/testibg.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 701px;
    height: 756px;
    content: "";
    -webkit-animation: fa-spin 25s infinite alternate;
    -moz-animation: fa-spin 25s infinite alternate;
    -ms-animation: fa-spin 25s infinite alternate;
    -o-animation: fa-spin 25s infinite alternate;
    animation: fa-spin 25s infinite alternate;
} */
.testimonial-section .sec-title {
    position: relative;
    margin-bottom: 115px;
}
.testimonial-section .sec-title .title {
    margin-bottom: 20px;
}
.testimonial-section .testimonial-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 -50px;
}
.testimonial-block {
    position: relative;
    padding: 50px;
}
.testimonial-block .inner-box {
    padding: 80px 105px;
    background-color: #fff;
    /* box-shadow: 0 0 50px rgba(226, 222, 232, 0.75); */
    border-radius: 10px;
}
.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #121212;
    font-weight: 400;
    margin-bottom: 50px;
    font-family: "Muli", sans-serif;
}
.testimonial-block .info-box {
    position: relative;
    padding-left: 115px;
    padding-top: 10px;
}
.testimonial-block .info-box .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 82px;
    width: 82px;
}
.testimonial-block .info-box .thumb img {
    border: 6px solid #fdd6a8;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    width: 80px;
    height:80px;
    object-fit:cover;
    /* box-shadow: 0 45px 45px rgba(147, 147, 147, 0.35); */
}
.testimonial-block .info-box .name {
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 1.2em;
    color: #F8941E;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Niramit", sans-serif;
}
.testimonial-block .info-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #121212;
    font-weight: 400;
    font-family: "Muli", sans-serif;
}
.testimonial-carousel .owl-nav {
    position: absolute;
    right: 75px;
    bottom: 70px;
}
.testimonial-carousel .owl-next, .testimonial-carousel .owl-prev {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-carousel .owl-next:hover, .testimonial-carousel .owl-prev:hover {
    /* background-color: #00df97; */
    /* box-shadow: 0 24px 24px rgba(187, 187, 187, 0.75); */
}
.arrow-right, .arrow-left {
    position: relative;
    display: inline-block;
    height: 9px;
    width: 43px;
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-left-2.png);
    background-repeat: no-repeat;
    background-position: center;
}
.arrow-right {
    background-image: url(http://t.commonsupport.com/adro/images/icons/arrow-right-2.png);
}
.testimonial-section .thumb-layer {
    position: absolute;
    right: 30px;
    top: 120px;
}
.testimonial-section .thumb-layer .image {
    position: relative;
    margin-right: 0;
}
.testimonial-section .thumb-layer .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width: 767px) {
    .testimonial-section .sec-title {
        margin-bottom: 50px;
   }
    .testimonial-block {
        padding: 0;
   }
    .testimonial-block .inner-box {
        box-shadow: none;
        border: 2px solid #f1f1f1;
        margin-top: 15px;
   }
    .testimonial-carousel .owl-nav {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        text-align: center;
   }
    .testimonial-carousel .owl-next, .testimonial-carousel .owl-prev {
        border: 2px solid #f1f1f1;
   }
}
@media only screen and (max-width: 1366px) {
    .large-container {
        padding-left: 20px;
        padding-right: 20px;
   }
}


.logo-blck{
    display: none;
}
.intro.moved .logo-blck{
    display: block;
} 
.intro.moved .demco-icon{
    display: none;
} 

/* svg */

 .black{
    stroke: #000;
    stroke-width: 1.1;
    stroke-dasharray: 810; 
    stroke-dashoffset: 810;
    fill-opacity: 0;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    
    animation-name: DrawLine, FadeStroke, FillIn;
    animation-duration: 8s, 8s, 8s;
    animation-delay: 3s, 6.1s, 6.27s;
    
    /* Loop animation infinitely */
    animation-iteration-count: infinite;
  }

.orange {
    stroke: #F5741D;
    stroke-width: 1.1;
    stroke-dasharray: 810; 
    stroke-dashoffset: 810;
    fill-opacity: 0;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    
    animation-name: DrawLine, FadeStroke, FillIn;
    animation-duration: 8s, 8s, 8s;
    animation-delay: 3s, 6.1s, 6.27s;
    
    /* Loop animation infinitely */
    animation-iteration-count: infinite;
}

@keyframes offset {
    100% {
      stroke-dashoffset: 0; 
    }  
  }
  
  @keyframes fill-it-lightBlue {
    0%{
      fill: #ffffff;
    }
    100% {
      fill: #0097A7; 
    }
  }
  
  @keyframes fill-it-darkestBlue {
      0%{
      fill: #ffffff;
    }
    100% {
      fill: #006064; 
    }
  }
  
  @keyframes fill-it-darkBlue {
      0%{
      fill: #ffffff;
    }
    100% {
      fill: #00838F; 
    }
  }
  
  
  @keyframes fill-it-lightestBones {
      0%{
      fill: #ffffff;
    }
    100% {
      fill: #E0F7FA; 
    }
  }
  
  @keyframes DrawLine {
    to { stroke-dashOffset: 0; }
  }
  
  @keyframes FadeStroke {
    to { stroke-opacity: 0; }
  }
  
  @keyframes FillIn {
    from { fill-opacity: 0; }
    to { fill-opacity: 1; }
  }
  /* inner page */
  .single-banner{
    display: flex;
    align-items: center;
  }
  .banner-brief {
    border: 1px solid #fff;
    padding: 50px;
    z-index: 9;
  }
  .banner-brief.banner-brief-right {
    transform: translateX(-56px);
        -webkit-transform: translate(-56px);
        -ms-transform: translate(-56px);
         -o-transform: translate(-56px);
  }
  .banner-brief.banner-brief-left {
    transform: translateX(56px);
      -webkit-transform: translate(56px);
        -ms-transform: translate(56px);
         -o-transform: translate(56px);
    text-align: right;
  }
  .banner-brief h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .banner-brief h2 span {
    font-weight: 700;
  }
  .banner-brief h2.line-bottom {
    font-size: 24px;
  }
  .line-bottom {
    position: relative;
  }
  .line-bottom::before {
    background: #f6416c none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 75px;
  }
  .banner-brief-left .line-bottom::before {
    left: auto;
    right: 0;
  }
  .shop-now {
    border: 1px solid #f6416c;
    color: #333333;
    display: inline-block !important;
    font-size: 14px;
    height: 33px;
    line-height: 31px;
    margin-top: 20px;
    padding: 0 13px;
    text-transform: uppercase;
  }
  .shop-now:focus {
      color: #333333;
  }
  .shop-now:hover, .blog-brief .shop-now:hover {
      background: #f6416c;
      border-color: transparent;
      color: #fff;
  } 
  .banner-photo a {
      display: block;
      position: relative;
  }
  .banner-photo a::before {
      background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
      bottom: 18px;
      content: "";
      left: 18px;
      position: absolute;
      right: 18px;
      top: 18px;
      transform: scaleY(0);
      transition:0.5s;
      opacity:0;
  }
  .banner-photo a:hover::before {
      transform: scale(1);
      opacity:0.2;
  }
  .banner-photo a::after {
      background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
      bottom: 18px;
      content: "";
      left: 18px;
      position: absolute;
      right: 18px;
      top: 18px;
      transform: scaleX(0);
      transition:0.5s;
      opacity:0;
  }
  
  .banner-photo a:hover::after {
      transform: scale(1);
      opacity:0.2;
  }
  .inner-content-area{
    background: #121212;
  }
  /* text animation */
  .text-effect{
    color: #fff;
    background: linear-gradient(to right top, #f49900, #ee3227, #f49900, #f49900);
    background-size: 50% auto;
 
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: gradientAnim 4s ease  alternate infinite;
}
@keyframes gradientAnim{
    to { background-position: 180% top; }   
}
@media only screen and (max-width: 990px){
    .text-effect{ font-size: 80px; }
}
@media only screen and (max-width: 767px){
    .text-effect{ font-size: 60px; }
}
@media only screen and (max-width: 576px){
    .text-effect{ font-size: 45px; }
}
.dgas-blck{
    height: 55px;
}
.mep-b{
    height: 100px;
}
.banner-brief:hover .text-effect{
    color: #fff;
    background: linear-gradient(to right top, #fff, #eff, #fff, #fff);
    background-size: 50% auto;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: gradientAnim 4s ease alternate infinite;
    transition: 0.5s all ease;
}
.banner-brief:hover h5{
color: #fff;
transition: 0.5s all ease;
}
.banner-brief h5{

    transition: 0.5s all ease;
    }
.banner-brief span{
  
    transition: 0.5s all ease;
}
.banner-brief:hover img{
    filter: brightness(0) invert(1);
    transition: 0.5s all ease;
}
.banner-brief img{
    
    transition: 0.5s all ease;
}
.banner-brief h5{
    color:#F5741D;
    text-align: center;
}
.gas-icon{
    height: 32px;
    width: 32px;
}
body.home .common-log{
    /* display: none; */
}
.common-log{
    height: 35px;
}
body.inner-page .header-main{
    position: relative;
}

/* dfire about */

.bg-awesome-feedback {
    background: #171717;
}
.rts-awesome-funfacts-area {
    overflow: hidden;
}
.left-awesome-feedback-wrapper {
    position: relative;
    height: 675px;
}
.single-awesome-feedback-area {
    background: #1f1f1f;
    height: 450px;
    width: 450px;
    border-radius: 50%;
    padding: 95px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 5;
}
@media screen and (max-width: 1220px) {
    .single-awesome-feedback-area {
        padding: 35px;
        height: 350px;
        width: 350px;
   }
}
.single-awesome-feedback-area::after {
    position: absolute;
    content: '';
    height: 500px;
    width: 500px;
    border: 2px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -50px;
    z-index: -1;
}
@media screen and (max-width: 1220px) {
    .single-awesome-feedback-area::after {
        height: 400px;
        width: 400px;
   }
}
.single-awesome-feedback-area .wrapper h2 {
    color: var(--color-primary);
}
.single-awesome-feedback-area .wrapper .title {
    color: #fff;
}
.single-awesome-feedback-area.small {
    top: -50px;
    left: 50%;
    width: 350px;
    height: 350px;
    padding: 40px;
}
@media screen and (max-width: 1628px) {
    .single-awesome-feedback-area.small {
        left: 40%;
        width: 300px;
        height: 300px;
   }
}
@media screen and (max-width: 1220px) {
    .single-awesome-feedback-area.small {
        left: 23%;
        width: 300px;
        height: 300px;
   }
}
@media screen and (max-width: 1120px) {
    .single-awesome-feedback-area.small {
        left: 0%;
        width: 300px;
        height: 300px;
   }
}
.single-awesome-feedback-area.small .wrapper h2 {
    font-size: 36px;
}
.single-awesome-feedback-area.small .wrapper h5 {
    font-size: 20px;
}
.single-awesome-feedback-area.small::after {
    top: -100px;
    z-index: -2;
    border: 2px solid #1f1f1f;
    left: -50px;
    width: 416px;
    height: 416px;
}
@media screen and (max-width: 1628px) {
    .single-awesome-feedback-area.small::after {
        width: 340px;
        height: 340px;
        left: -20px;
   }
}
.rts-awesome-funfacts-area .title-area-left p.pre {
    margin-bottom: 27px;
}
.rts-awesome-funfacts-area .title-area-left .title {
    color: #fff;
    font-size: 36px;
}
.rts-awesome-funfacts-area .awes-me-fun-f-content .score-rate {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.rts-awesome-funfacts-area .awes-me-fun-f-content .score-rate span.score {
    display: block;
    padding: 5px 8px;
    border: 1px solid #dedede;
    max-width: max-content;
    font-size: 24px;
    border: 1px solid #dedede;
    color: #fff;
}
.rts-awesome-funfacts-area .awes-me-fun-f-content .score-rate .info-wrapper {
    margin-left: 30px;
}
.rts-awesome-funfacts-area .awes-me-fun-f-content .score-rate .info-wrapper p {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
.rts-awesome-funfacts-area .awes-me-fun-f-content .score-rate .info-wrapper span {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #74787c;
}
.padding-feedback-top-btm {
    padding: 120px 0;
}
.pl--control-feedback {
    padding-left: 60px;
}
.btn-under-p {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #fd8f14;
    text-decoration: underline;
    transition: 0.3s;
}
.btn-under-p:hover {
    color: #fff;
    text-decoration: underline;
}
.rts-projects-area.home-1 {
    position: relative;
}
.rts-projects-area.home-1::after {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    height: 20px;
    width: 1060px;
    background: #F8941E;
}

.dfire-about::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    height: 20px;
    width: 1060px;
    background: #F8941E;
}
.dfire-about{
    position: relative;
}
.dfire-about::before {
    position: absolute;
    content: "";
    height: 73px;
    width: 555px;
    right: 0;
    bottom: 0;
    background-image: url(../images/dfire-bg.png);
    background-repeat: no-repeat;
}
.awes-me-fun-f-content p{
    color:#fff;
}
.awes-me-fun-f-content ul li{
    color: #fff;
    list-style: none;
}
.awes-me-fun-f-content ul{
    padding: 0;
}


.awes-me-fun-f-content ul li i
{
    color:#F8941E;
}
.df-img{
    border: 9px solid white;
    box-shadow: rgb(255 125 0 / 56%) 0px 5px 15px;
}
.single-awesome-feedback-area p{
    color: #fff;
}
/* conslusion */
.conclusion{
    background-color: #000;
    padding: 50px 0;
    color: #fff;
    background-image: url(../images/df-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.liqa-dash{
    /*border: 2px solid #A58C3E;*/
    border-radius:10px;
    /* padding:43px 0; */
   position:relative;
   
}
.liqa-dash h6{
    font-size:15px;
}

/*.liqa-dash:before{*/
/*  content: '';*/
/*  position:absolute;*/
/*  top:0;*/
/*  left:-100%;*/
/*  width:100%;*/
/*  height:100%;*/
/*  background: rgba(255,255,255,0.1);*/
/*  transition:0.5s;*/
/*  pointer-events: none;*/
/*}*/


.liqa-dash .border-span{
  position: absolute;
  top: 0;
  left: -35px;
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  
}

.liqa-dash .border-span:nth-child(1)
{
  transform:rotate(0deg);
}

.liqa-dash .border-span:nth-child(2)
{
  transform:rotate(90deg);
}

.liqa-dash .border-span:nth-child(3)
{
  transform:rotate(180deg);
}

.liqa-dash .border-span:nth-child(4)
{
  transform:rotate(270deg);
}

.liqa-dash .border-span:before
{
  content: '';
  position: absolute;
  width:100%;
  height: 2px;
  background: #F8941E;
  animation: animate 4s linear infinite;
}

@keyframes animate {
  0% {
  transform:scaleX(0);
  transform-origin: left;
  }
  50%
  {
    transform:scaleX(1);
  transform-origin: left;
  }
  50.1%
  {
    transform:scaleX(1);
  transform-origin: right;
    
  }
  
  100%
  {
    transform:scaleX(0);
  transform-origin: right;
    
  }
  
  
} 
/* d-fire services */
.df-services{
    background-color: #121212;
    padding: 50px 0;
    color: #fff;

 
}
.service-ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-ul li{
    display: inline-block;
    list-style-type: none;
}
.service-ul li i{
    color: #f49900;
}
.box-df{
    text-align: center;
    /* box-shadow: 0 0 5px #7e7d7d; */
    position: relative;
}
.box-df img{
    width: 100%;
    height: auto;
}
.box-df .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.box-df:hover .box-content{
    background-color: rgba(0, 0, 0, 0.8);
}
.box-df .box-content:before,
.box-df .box-content:after{
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.6s ease 0.3s;
}
.box-df .box-content:before{
    border-left: 1px solid #F8941E;
    border-top: 1px solid #F8941E;
    top: 19px;
    left: 19px;
}
.box-df .box-content:after{
    border-bottom: 1px solid #F8941E;
    border-right: 1px solid #F8941E;
    bottom: 19px;
    right: 19px;
}
.box-df:hover .box-content:before,
.box-df:hover .box-content:after{
    opacity: 1;
    transform: scale(1);
}
.box-df .title{
    font-size: 22px;
    color: #fff;
    margin: 0;
    position: relative;
    top: 0;
    opacity: 0;
    transition: all 1s ease 0.01s;
}
.box-df:hover .title{
    top: 39%;
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, -0.53, 0.405, 1.425) 0.01s;
}
.box-df .title:after{
    content: "";
    width: 0;
    height: 1px;
    background: #f8941e;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 1s ease 0s;
}
.box-df:hover .title:after{
    width: 80%;
    transition: all 1s ease 0.8s;
}
.box-df  .icon{
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(1, -0.53, 0.405, 1.425);
    transition-delay: 0.1s;
}
.box-df:hover .icon{
    bottom: 39%;
    opacity: 1;
}
.box-df .icon li{
    display: inline-block;
}
.box-df .icon li i{ line-height:inherit; }
.box-df .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    /* border-radius: 50%; */
    font-size: 18px;
    /* color: #000; */
    /* border: 1px solid #000; */
    margin-right: 5px;
    transition: all 0.3s ease-in-out 0s;
}
.box-df .icon li a:hover{

    color: #fff;
}
.box-df .icon li a img{
    margin-top: 3rem;
}
@media only screen and (max-width:990px){
    .box-df{ margin-bottom: 30px; }
}
.box-df .image-container {
    position: relative;
    display: inline-block;
}

.box-df .image-container img {
    width: 100%;
    display: block;
}

.box-df .image-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%; /* Adjust the height of the gradient */
    /* background: linear-gradient(to top, rgba(244, 153, 0, 1), transparent);  */
    background: linear-gradient(to top, rgba(250, 250, 250, 1), transparent);
}

.box-df .overlay-text {
    position: absolute;
    bottom: 10px; /* Adjust the text position */
    /* left: 20px; */
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
    width: 100%;
}
.box-df:hover .overlay-text{
    display:none
}
.box-df .overlay-text{
   color: #000;
   text-align: center;
}
/* dgas about */
.dgas-about::after{
    background: #044d7e;
}
.dgas-about::before{
background-image: url(../images/dgas-bg.png);
}
.gas.liqa-dash{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.program-box img{
    margin: 0 auto;
    display: flex;
}

.program-box{
   padding: 10px 10px;
    width: 100%;
    color: white;
    position: relative;
    margin-top: 10px;
    font-size: 2em;
    border: 1px solid #f8941e;
    transition: 0.5s all ease;
}
.program-box h4{
    font-size: 17px;
}
.program-box:hover{
    border: none;
    transition: 0.5s all ease;

}
.program-box:hover h4{
 
    transition: 0.5s all ease;
    color:  #f8941e;
}
.program-box:hover img{
    filter: brightness(1) invert(1);
    transition: 0.5s all ease;
}
.program-box:hover::after{
    transform: scale(1, 1);
}
.program-box:hover::before{
    transform: scale(1, 1);
}
.program-box::after, .program-box::before{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    transition: all 0.5s;
}
.program-box::after{
    border-right: 1px solid  #f8941e;
    border-left: 1px solid  #f8941e;
    transform: scale(1, 0);
}
.program-box::before{
    border-top: 1px solid  #f8941e;
    border-bottom: 1px solid  #f8941e;
    transform: scale(0, 1);
}
.name-job p{
    font-size: 14px;
}
.principles{
    background-color: #000;
    padding: 50px 0;
    color: #fff;
    background-image: url(../images/df-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-banner{
    background-image: url(../images/service-bg.jpg);
    padding: 100px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner:after{
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.9);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.inner-banner .container{
    position: relative;
    z-index: 3;
}
.inner-banner i{
    color: #F8941E;
}
.logo-fire{
    height: 55px;
}
.footer-social a {
    color: #ffa22f;
    font-size: 17px;
    margin-right: 7px;
}
.mob-hide{
    bottom: 10%;
    right: 0px;
}


/* popup */

.popup{
    display: none !important;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    
  }
  
  .popup.active{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999999;
  }
  .popup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #000000c7;
  }
  .popup-body{
    position: fixed;
  }
  .active{
    display: block !important;
  }
  .popup-img {
    border: 30px solid white;
    max-width: 900px;
    background-color: white;
  }
  .relative{
    position: relative;
  }
  .close-btn {
    position: absolute;
    right: 7%;
    color: black;
    top: 1%;
    cursor: pointer;
  }
  h3.popup-title {
    position: absolute;
    left: 6%;
    font-size: 22px;
    padding: 3px;
  }
  .popup img{
    object-fit: cover;
  }
  
  i.bi.bi-caret-left-fill {
    color: black;
    position: absolute;
    left: -24px;
  }
  
  i.bi.bi-caret-right-fill {
    color: black;
    position: absolute;
    right: -22px;
  }
  
  @media(max-width:450px){
    .relative{
      max-width: 95%;
      margin: auto;
    }
  }
  
  .light-bg {
    background: #bdbec1 !important;
  }


  
/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/

.stats-counter .stats-item .purecounter {
    padding-right: 0;
    /* margin-left: 15px; */
    font-weight: 700;
    text-align: start;
    font-size: 33px;
}

.stats-counter .stats-item i {
    font-size: 90px;
    line-height: 0;
    color: white;
    margin-bottom: 30px;
}

.stats-counter .stats-item span {
    font-size: 17px;
    display: block;
    color: #e7e0e0;
    line-height: 28px;
    text-align: center;
    font-weight: 400;
}

.stats-counter .stats-item p {
    margin: 0;
    /* font-family: var(--font-primary); */
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
.call-to-action {
    /* background: url(../images/hero-bg.png) center left; */
    background: url(../images/services_bg2.webp) center left;
    background-size: cover;
    padding: 80px 0px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    background-attachment: scroll;
}
.call-to-action:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 0;
    opacity: 0.6;
}
span.purecounter:after {
    position: absolute;
    content: '+';
    width: 10px;
    height: 10px;
    margin-left: 4px;
}
.white-icon{
    filter: brightness(0) invert(1);
    /*height:64px;*/
}
.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    display: none;
}
.box-box img{
    background-color: white;
}
a.btn-text {
    color: #fa9435;
}

.icon.circle{
    display: flex;
    justify-content: center;
    align-items: center;
}
.op{
    opacity:0.5 !important;
}

.stats-item.d-flex.align-items-center {
    padding: 20px;
    border: 1px solid #7b7b7b;
    border-radius: 5px;
}

.whats-float {
    position: fixed;
    transform: translate(108px, 0px);
    bottom: 10%;
    right: 0;
    width: 150px;
    overflow: hidden;
    background-color: #00c254;
    color: #fff;
    border-radius: 2px 0 0 2px;
    z-index: 1111111111;
    transition: all 0.5s ease-in-out;
    vertical-align: middle;
    border-radius: 50px 0px 0px 50px;
    padding-left: 3px;
}
.whats-float.\32 4 {
    bottom: 18%;
    background:#f55b2e !important;
}
.text-24{
    margin-left:4px;
    padding-top:14px !important;
}
.w-45{
    width:45px;
    border-radius:100%;
    margin-left:-3px;
}
.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align: center;
}

.whats-float:hover {
  color: #ffffff;
  transform: translate(0px, 0px);
}



.whats-float:hover i {
  transform: rotate(360deg);
}


.whats-float a span {
  color: white;
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 10px;
  position: absolute;
  line-height: 16px;
  font-weight: 400;
}
.h-80{
    height:85px;
}
a.fonts{
    transition: color 0.3s ease;
}
a.fonts:hover {
    color: black;
}

#overlay .top-header a.fonts:hover {
    color: black;
}
.footer-contacts span:hover {
    color: #fa9435 !important;
}

.info-item a:hover {
    color: #fa9435 !important;
}
.form-row.captcha {
    margin-top: 18px;
}
.btn-txt-none{
    background: none;
    color: #fa9435;
    border: none;
    width:100%;
}
.section-btn:hover button {
    color: #e3e3e3;
}
.form-row.captcha2 {
    margin-top: 10px;
}