:root {
    --blue: #4bb3b6;
    --white: #ffffff;
    --orange: #f37e3a;
}


/********************************* Global Settings *********************************/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    color: #565656;
    line-height: 1.7em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.25em;
    font-family: 'Roboto Condensed', sans-serif;
}

textarea {
    overflow: hidden;
}

button {
    outline: none !important;
    cursor: pointer;
}

p,
.text {
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 400;
    margin-bottom: 0;
}

ul {
    margin-bottom: 0;
}

ul li {
    list-style: none;
}


/********************************* Header Section *********************************/

.sticky {
    position: fixed!important;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 10;
    /* transition: 0.5s all ease-in-out;  */
}

.topmenu-main {
    background-color: #28303d;
    padding: 10px;
}

.top-menu a {
    color: #fff;
}

.top-menu a:hover {
    color: #000;
}

.top-menu i {
    margin-right: 10px;
}

.top-menu li:not(:last-child) {
    margin-right: 10px;
}

.navbar-brand {
    width: 26%;
}

.nav-item {
    margin: 0 5px;
}

#header a.nav-link {
    color: #565656;
    margin-top: 5px;
    position: relative;
}

#header a.nav-link:hover {
    color: #565656;
}

#header .dropdown-item {
    color: #565656;
}

.navbar {
    padding: 1.5rem 1rem;
}

#header a.nav-link:before,
.dropdown.open:before {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #ef7d00;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

#header a.nav-link:hover:before {
    width: 100%;
    left: 0;
}

.header-nav {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#header .dropdown-item:focus,
#header .dropdown-item:hover,
#header .dropdown-item.active,
#header .dropdown-item:active {
    background-color: var(--orange)!important;
    color: #fff;
}

.dropdown.open .dropdown-menu {
    display: block;
    border-radius: 0;
    /*    border-top: 5px solid var(--orange);*/
    padding-top: 0px;
    padding-bottom: 0;
}

.dropdown.open.nav-item .dropdown-item {
    padding: .50rem 1.5rem;
    border-bottom: 1px solid #efefef;
}


/* Mobile Menu */

.mobile-nav-toggler span {
    font-size: 24px;
    color: #ef7d00;
}

.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: 0.7s all ease;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible.mobile-menu {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    /* transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease; */
}


/* .mobile-menu .navigation li>a:hover, .mobile-menu .navigation li>a:active {
    color: var(--orange);    
} */

.mobile-menu .social-links li a:hover,
.mobile-menu .social-links li a:active {
    color: var(--orange);
}

li.dropdown.show>a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu-visible.mobile-menu .menu-backdrop {
    opacity: 0.70;
    visibility: visible;
    /* -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease; */
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #fff;
    color: #000;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: 0.5s all ease;
}

.mobile-menu-visible.mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 30px;
    color: #ef7d00;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
    transition-delay: 0.5s;
}

.mobile-menu-visible.mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    /* -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease; */
    transition: 0s all;
}

.mobile-menu .navigation li ul li>a {
    font-size: 15px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}


/* .mobile-menu .navigation li.current>a:before {
    height: 100%;
} */


/* .mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
} */


/* .mobile-menu .navigation li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
} */

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #000;
    /* -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease; */
    transition: 0s all;
}

.menu-outer {
    position: relative;
    display: block;
}

.mobile-menu .dropdown-menu.show {
    position: relative!important;
    display: block!important;
    width: 100%;
    transform: none!important;
    padding-left: 20px;
    float: none;
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.mobile-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .dropdown-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.mobile-menu .dropdown-toggle::after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    color: black;
    padding: 0;
    display: block;
    width: 20%;
    right: 0;
    margin-top: -40px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
    border-color: transparent;
}

.mobile-menu .dropdown.show .dropdown-toggle:after {
    content: "\f106";
}


/********************************* Banner Slider Section *********************************/

.cap_info {
    position: relative;
    height: 100%;
}

.cap_info .container {
    height: 100%;
}

.slide-content {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    color: #fff;
    justify-content: center;
    height: 100%;
}

.banner h5 {
    font-size: 24px;
    line-height: 30px;
    display: inline-block;
}

.banner h2 {
    font-size: 50px;
    line-height: 60px;
    color: #ef7d00;
    font-weight: 700;
    letter-spacing: 2px;
}

.banner .pogoSlider-slide:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/********************************* About Us Section *********************************/

.hp-about {
    position: relative;
    display: block;
    padding: 70px 0;
}

.titleline {
    position: relative;
    padding-left: 75px;
    display: inline-block;
}

.heading {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 600;
}

.orange {
    color: var(--orange);
}

.blue {
    color: var(--blue);
}

.titleline:before {
    position: absolute;
    left: 0;
    top: 10px;
    background: url(../images/sec-titleline2.png);
    content: "";
    width: 100px;
    height: 25px;
    background-repeat: no-repeat;
}

.site-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
    overflow: hidden;
    vertical-align: middle;
    background-color: var(--orange);
    padding: 10px 40px;
    margin-top: 20px;
    box-shadow: 0 -3px 0 0 rgb(187 103 10) inset;
    z-index: 1;
}

.btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    background: var(--blue);
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 700ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 700ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: -webkit-transform 700ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: -webkit-transform 700ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 700ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 700ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 700ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

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

.site-btn.btn-style-one:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}


/********************************* Service Section*********************************/

.hp-service {
    position: relative;
    display: block;
    padding: 70px 0;
    background: #fafafa;
}

.hp-service .item .image:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient( 60deg, rgb(250, 250, 250) 40%, hsla(359, 66%, 45%, 0) 100%);
}

.hp-service .item {
    position: relative;
    border-top: 4px solid var(--orange);
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 25%);
}

.hp-service .item .image {
    position: relative;
    text-align: center;
}

.hp-service .lower-content {
    position: relative;
    /* margin-top: -100px; */
    padding: 0px 20px 30px 20px;
}

.hp-service .item h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    min-height: 66px;
}

.hp-service .item h2 a {
    color: #28303d;
    transition: all 700ms ease;
}

.hp-service .item h2 a:hover {
    color: var(--orange);
}

.text-ellipse-1 {
    -webkit-line-clamp: 1;
}

.text-ellipse-2 {
    -webkit-line-clamp: 2;
}

.text-ellipse-3 {
    -webkit-line-clamp: 3;
}

.text-ellipse-4 {
    -webkit-line-clamp: 4;
}

.text-ellipse-5 {
    -webkit-line-clamp: 5;
}

.text-ellipse-1,
.text-ellipse-2,
.text-ellipse-3,
.text-ellipse-4,
.text-ellipse-5 {
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}


/********************************* Project Section*********************************/

.project {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.project .item {
    position: relative;
    overflow: hidden;
    /* margin-bottom: 30px; */
}

.project .item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    width: 100%;
    height: 2px;
    background: #1B4962;
    z-index: 1;
}

.project .item .image img {
    width: 100%;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.project .item:hover .image img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.project .item .lower-content {
    position: absolute;
    bottom: -242px;
    left: 0;
    text-align: center;
    width: 100%;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
    background-size: cover;
}

.project .item:hover .lower-content {
    bottom: 1px;
    opacity: 1;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(0%);
    transition: 500ms ease all;
}

.project .item .lower-content .link-btn {
    position: relative;
    z-index: 1;
}

.project .item .lower-content .link-btn a {
    position: relative;
    top: -12px;
    padding: 20px 30px;
    color: #fff;
}

.project .item .lower-content h2 {
    position: relative;
    font-size: 24px;
    color: #0E0E0E;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 30px;
}

.project .item .lower-content h2:before {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    background: url(../images/project-link-btn-dot.png);
    width: 25px;
    height: 5px;
    text-align: center;
}

.project .item .lower-content p {
    margin-bottom: 25px;
}

.project .item .lower-content .link-btn {
    transform: scale(2) skewY(0deg);
    opacity: 0;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

.project .item:hover .lower-content .link-btn {
    transform: scale(1) skewY(0deg);
    opacity: 1;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    transition-delay: 500ms;
}

.project .item .lower-content .link-btn span {
    font-size: 14px;
}

.project .item .lower-content .link-btn span:after {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    background: url(../images/project-link-btn-shape.png);
    width: 62px;
    height: 62px;
    text-align: center;
    z-index: -1;
}

.project .slick-next {
    right: 30px;
}

.project .slick-prev {
    left: 20px;
}

.project .slick-arrow {
    z-index: 1;
}

.project .slick-prev:before,
.project .slick-next:before {
    font-size: 32px;
    color: var(--orange);
}


/********************************* Fun Fact Counter Section*********************************/

.fun-facts-section {
    position: relative;
    padding: 90px 0px 40px;
    background: #f0f3fb;
    overflow: hidden;
}

.fun-facts-section.default-style {
    padding: 80px 0px 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.fun-facts-section.bio-theme {
    padding-top: 190px;
}

.fun-facts-section .auto-container {
    max-width: 1300px;
}

.fun-facts-section .bg-pattern-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.fact-counter {
    position: relative;
    z-index: 1;
}

.fact-counter .counter-column {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.fact-counter .counter-column .inner {
    position: relative;
    display: block;
}

.fun-facts-section.default-style .inner:before {
    content: '';
    position: absolute;
    right: -15px;
    bottom: 5px;
    border-left: 1px dashed rgba(0, 0, 0, 0.20);
    height: 80px;
}

.fun-facts-section.default-style .counter-column:last-child .inner:before {
    display: none;
}

.fact-counter .counter-column .icon-box {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1em;
    color: #f47629;
    margin-bottom: 25px;
}

.fun-facts-section.bio-theme .fact-counter .counter-column .icon-box {
    color: #f47629;
}

.fact-counter .count-box {
    position: relative;
    font-size: 48px;
    line-height: 1.1em;
    color: #494949;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 5px;
}

.fun-facts-section.bio-theme .fact-counter .count-box {
    color: #222222;
}

.fact-counter .count-box .count-text {
    position: relative;
    display: inline-block;
}

.fact-counter .counter-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fun-facts-section.bio-theme .fact-counter .counter-title {
    color: #f47629;
    font-size: 16px;
    text-transform: uppercase;
}

.fact-counter .counter-column .inner {
    position: relative;
    display: block;
    border-right: 1px dashed #35353514!important;
}


/********************************* Maintenance Section*********************************/

.maintenance {
    background-position: center top;
    background-size: cover;
    padding: 96px 0;
    overflow: hidden;
    background-image: url(../images/maintenance-bg.jpg);
}

.maintenance-content h4:before {
    content: '';
    width: 4px;
    height: calc(100% - 20px);
    background-color: var(--orange);
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
}

.maintenance-content {
    background-color: #fff;
    display: inline-block;
    padding: 77px 100px 100px 90px;
    max-width: 584px;
}

h4.title {
    font-size: 36px;
    line-height: 46px;
    color: #28303d;
    position: relative;
    padding: 0 0 0 37px;
    margin: 0 0 23px;
    font-weight: 600;
}

a.mt-btn {
    padding: 10px 20px;
    margin-right: 15px;
    color: #fff;
    transition: 0.5s all;
    border-radius: 4px;
    white-space: nowrap;
}

a.mt-btn:hover {
    background: transparent;
    border-color: var(--orange);
    color: var(--orange);
}

.btn__color01 {
    background: var(--orange);
    border: 1px solid var(--orange);
}

.btn__color02 {
    background: var(--blue);
    border: 1px solid var(--blue);
}


/********************************* Brand Section*********************************/

.brand {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 70px 0;
}

.brand a img {
    margin: 0 auto;
    border: 1px solid #ccc;
}

.brand a {
    display: block;
    text-align: center;
    max-width: 100%;
}

.brand .slick-prev,
.brand .slick-next {
    width: 30px;
    height: 30px;
}

.brand .slick-prev:before,
.brand .slick-next:before {
    color: var(--orange);
    font-size: 30px;
    font-weight: 600;
}


/********************************* Footer Section*********************************/

footer {
    position: relative;
    display: block;
    padding: 50px 0;
    background-color: #28303d;
}

.footer-widget-title {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-menu a,
footer .contact a {
    color: #fff;
    padding: .3rem 0;
    display: block;
    font-size: 16px;
}

ul.footer-menu {
    margin-bottom: 0;
}

footer .contact a i {
    position: absolute;
}

footer .contact a {
    padding-left: 30px;
    position: relative;
}

footer .contact a i {
    position: absolute;
    width: 30px;
    left: 0;
    text-align: center;
    line-height: 26px;
}

ul.contact {
    margin-top: 30px;
}

.footer-menu a:hover,
footer .contact a:hover {
    color: #d2d1ce;
}


/* //Footer */


/****************************** End Home Page ******************************/


/****************************** Start Contact Page ******************************/

.page-banner {
    position: relative;
    text-align: center;
    padding: 50px 0px;
    z-index: 2;
    background: #fafafa;
}

.page-banner h1 {
    position: relative;
    font-size: 60px;
    font-weight: 700;
    color: #28303d;
    text-transform: capitalize;
    margin-bottom: 38px;
    font-family: 'Roboto', sans-serif;
}

.page-banner h1:before {
    position: absolute;
    left: 0;
    bottom: -25px;
    right: 0;
    margin: 0 auto;
    background: url(../images/banner-title-line-shape.png);
    content: "";
    width: 142px;
    height: 16px;
    background-repeat: no-repeat;
}

.page-banner .bread-crumb {
    position: relative;
}

.page-banner .bread-crumb li {
    position: relative;
    display: inline-block;
    line-height: 30px;
    margin-left: 11px;
    color: #28303d;
    font-size: 18px;
    font-weight: 600;
}

.page-banner .bread-crumb li:first-child {
    margin-left: 0px;
}

.page-banner .bread-crumb li:not(:last-child):before {
    content: '-';
    position: absolute;
    right: -20px;
    width: 24px;
    top: 0px;
    text-align: center;
    line-height: 30px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.page-banner .bread-crumb li a {
    color: #28303d;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.contact-details .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #686868;
    padding: 20px 0;
}

.contact-details .icon-box .content {
    padding-left: 30px;
}

.contact-details .icon-box .content ul {
    margin-bottom: 0;
}

.contact-details .icon-box span {
    font-size: 24px;
    color: #fff;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background: var(--orange);
}

.contact-details .icon-box h3 {
    color: #28303d;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

.contact-details .icon-box li {
    color: var(--orange);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.contact-info {
    position: relative;
    display: block;
    padding: 70px 0;
}

.contact-form .form-control:focus {
    box-shadow: none;
    outline: 0;
    border-color: var(--orange);
}

.contact-form .form-control {
    padding: 10px 20px;
    background-color: #f7f8fa;
    border-radius: 0;
    border: 1px solid rgba(134, 140, 156, 0.18);
    margin-bottom: 20px;
}

.contact-form .form-control::placeholder {
    font-size: 14px;
}

.contact-form {
    margin-top: 10px;
}


/****************************** End Contact Page ******************************/


/****************************** Start About Page ******************************/

.about-main {
    position: relative;
    display: block;
    padding: 70px 0px;
}

.service-sidebar {
    padding-right: 20px;
}

.sidebar .sidebar-widget {
    position: relative;
    display: block;
    margin-bottom: 50px;
    border: 1px solid #e1e1e1;
    padding: 25px 20px;
    border-radius: 10px;
}

.sidebar .sidebar-widget {
    position: relative;
    display: block;
    margin-bottom: 50px;
    border: 1px solid #e1e1e1;
    padding: 25px 20px;
    border-radius: 10px;
}

.sidebar .sidebar-widget .widget-inner {
    position: relative;
    display: block;
}

.sidebar .services-widget ul {
    position: relative;
    display: block;
}

.sidebar .services-widget ul li {
    position: relative;
    display: block;
    background: #f6f6f6;
    margin-bottom: 15px;
}

.sidebar .services-widget ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    border-left: 3px solid #ffffff;
    background: var(--orange);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar .services-widget ul li:hover:before,
.sidebar .services-widget ul li.active:before {
    width: 100%;
}

.sidebar .services-widget ul li a {
    position: relative;
    display: block;
    /* border-bottom: 1px solid rgba(82,195,6,0.20); */
    padding: 15px 20px;
    line-height: 36px;
    color: #414141;
    font-size: 18px;
    text-transform: capitalize;
    z-index: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar .services-widget ul li:hover a,
.sidebar .services-widget ul li.active a,
.sidebar .services-widget ul li:hover .icon,
.sidebar .services-widget ul li.active .icon {
    color: #ffffff;
}

.sidebar .services-widget ul li .icon {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 36px;
    line-height: 36px;
    color: #cfcfe2;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar .info-widget {
    text-align: center;
}

.sidebar .info-widget .widget-inner {
    background: #f47629;
    color: #ffffff;
    margin: -25px -20px;
    border-radius: 10px;
}

.sidebar .info-widget .lower {
    display: block;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
}

.sidebar .info-widget .image {
    position: relative;
    display: block;
    margin: 0;
}

.sidebar .info-widget .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.sidebar .info-widget .subtitle {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 30px;
    color: var(--orange);
}

.sidebar .info-widget .icon-box {
    position: relative;
    display: block;
    font-size: 54px;
    line-height: 1em;
    margin-bottom: 30px;
    color: var(--orange);
    border: 0;
    padding: 0;
}

.sidebar .info-widget .phone {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.sidebar .info-widget .phone a {
    display: inline-block;
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    color: var(--orange);
}

.sidebar .info-widget .email {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.5em;
}

.sidebar .info-widget .email a {
    color: var(--orange);
}

.sidebar .downloads-widget {
    position: relative;
    /* display: none; */
}

.sidebar .downloads-widget h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.sidebar .downloads-widget li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.sidebar .downloads-widget li:last-child {
    border-bottom: none;
}

.sidebar .downloads-widget li a {
    position: relative;
    display: block;
    padding: 15px 0px;
    line-height: 30px;
    font-weight: 500;
    color: #222222;
    text-transform: uppercase;
}

.sidebar .downloads-widget li .fa,
.sidebar .downloads-widget li .far {
    position: relative;
    padding-right: 10px;
    font-size: 20px;
    top: 2px;
}

.sidebar .downloads-widget li a:hover {
    color: #f47629;
}

.about-details ul {
    position: relative;
    padding-left: 30px;
}

.about-details ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.about-details ul li {
    margin-bottom: 10px;
}


/****************************** End About Page ******************************/


/****************************** Start Our Team Page ******************************/

.team-section .avatar img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
}

.avatar {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.avatar:before {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    bottom: 100%;
    left: 0;
    right: 0;
    z-index: 3;
    background-image: linear-gradient(transparent, #ef7d00), linear-gradient(transparent, #ff4f0000);
    -moz-background-size: 100%;
    background-size: 100%;
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat;
    transition: all .3s ease-out;
}

.avatar:hover:before {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.avatar-social {
    left: 50%;
    right: 0;
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    color: #fffefe;
    position: absolute;
    top: 110%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    z-index: 7;
    font-size: 30px;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.avatar:hover .avatar-social {
    opacity: 1;
    visibility: visible;
    top: 79%;
    -webkit-transition: all .6s ease-out;
    -moz-transition: all .6s ease-out;
    -ms-transition: all .6s ease-out;
    -o-transition: all .6s ease-out;
    transition: all .6s ease-out;
}

.btn-floating {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0;
    margin: 10px;
    overflow: hidden;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 47px;
    height: 47px;
    background: var(--orange);
}

.btn-floating:hover {
    -webkit-box-shadow: 0 8px 17px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    box-shadow: 0 8px 17px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.btn-floating.btn-sm i {
    font-size: 18px;
    line-height: 47px;
}

.btn-floating i {
    display: inline-block;
    width: inherit;
    color: var(--orange);
    text-align: center;
    background-color: #fff;
}

.avatar-social a {
    color: #fff;
    font-size: 18px;
}

.avatar-social a.facebook:hover {
    color: #4267B2;
}

.avatar-social a.twitter:hover {
    color: #00acee;
}


/****************************** End Our Team Page ******************************/


/****************************** Start Client Page ******************************/

#client {
    position: relative;
    padding: 70px 0;
    display: block;
}

.team-mate {
    margin-bottom: 30px;
}

.team-mate {
    position: relative;
    box-shadow: 1px 1px 5px #ddd;
    border: 1px solid #ddd;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.team-mate .member-photo a {
    overflow: hidden;
    position: relative;
    width: 200px;
    height: 150px;
    align-items: center;
    display: flex;
    margin: 0 auto;
    justify-content: center;
}


/****************************** End Client Page ******************************/


/****************************** Start Projects Page ******************************/

.projects {
    position: relative;
    padding: 70px 0;
    display: block;
    overflow: hidden;
}

.projects .team-mate .member-photo a {
    width: auto;
    height: 100%;
}

.projects .member-photo a:before {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    bottom: 100%;
    left: 0;
    right: 0;
    z-index: 3;
    background-image: linear-gradient(transparent, #ef7d00), linear-gradient(transparent, #ff4f0000);
    -moz-background-size: 100%;
    background-size: 100%;
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat;
    transition: all .3s ease-out;
}

.projects .member-photo a:hover:before {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.mate_ty .member-title {
    /*  min-height: 100px;*/
}

.projects .team-mate .member-title {
    padding: 15px 0;
    background-color: #fff;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    text-align: center;
}

.mate_ty .member-title h4 {
    text-transform: none;
    font-size: 17px;
}

.team-mate .member-title h4 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.member-title p {
    width: 100%;
}

.projects .team-mate:before {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    right: 0;
    height: 5px;
    width: 100%;
    background: #ffc300;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.projects .team-mate:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.projects .member-photo {
    height: 150px;
    width: 100%;
}

.projects .team-mate .member-photo a {
    width: 100%;
}

.projects .team-mate .member-photo a img {
    width: 100%;
    height: 100%;
    display: block;
}


/****************************** End Projects Page ******************************/


/****************************** Start Prestigious Projects Page ******************************/

.p-projects {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    display: block;
}

.p-projects .tab-btn-style-one {
    position: relative;
    right: 0;
    top: 0;
    border: unset;
    margin-bottom: 44px;
}

.p-projects .nav-tabs .nav-item {
    display: block;
    margin-bottom: 20px;
    margin-right: 20px;
}

.p-projects .nav-tabs .nav-link {
    position: relative;
    font-size: 16px;
    color: #212121;
    background-color: transparent;
    margin: 0 auto;
    text-align: center;
    border-radius: unset;
    border-color: #fff;
    width: 197px;
    height: 127px;
    border: 1px solid var(--orange);
    text-align: center;
    padding: 30px 0px 0px 0px;
    display: block;
    font-weight: 500;
}

.p-projects .nav-tabs .nav-item i {
    font-size: 60px;
    color: var(--orange);
    display: block;
    margin-bottom: 25px;
}

.p-projects .tab-btn-style-one .nav-item .nav-link.active {
    box-shadow: 0px 18px 29px 0px rgb(239 125 0 / 40%);
    background-color: var(--orange);
    color: #fff;
}

.p-projects .tab-btn-style-one .nav-item .nav-link.active i {
    color: #fff;
}

.p-projects .content h2 {
    position: relative;
    font-size: 24px;
    color: #212121;
    font-weight: 700;
    margin-bottom: 37px;
    font-family: 'Roboto', sans-serif;
}

.p-projects .content h2:before {
    position: absolute;
    left: 0;
    bottom: -30px;
    background: url(../images/sec-titleline.png);
    content: "";
    width: 100px;
    height: 25px;
    background-repeat: no-repeat;
}

.p-projects .content-box {
    display: block;
    width: 100%;
}

.project-details {
    padding: 30px 20px;
    border: 1px solid var(--orange);
    border-left: 5px solid var(--orange);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects-title h4,
.project-details h5 span {
    color: var(--orange);
}

.p-projects .content-box ul.nav {
    justify-content: center;
}

.project-details h5 {
    white-space: nowrap;
    margin-left: 20px;
}


/****************************** End Prestigious Projects Page ******************************/


/****************************** Start Service Page ******************************/

.service {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 70px 0;
    text-align: center;
}


/* .service ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: var(--orange);
} */

.service ul li {
    margin-bottom: 10px;
}

.service ul {
    position: relative;
    padding-left: 30px;
    /* width: 500px;
    margin: 0 auto;
    text-align: left; */
}


/****************************** End Service Page ******************************/

.container-auto {
    margin: auto;
    width: 90%;
}

@media (max-width:1400px) {
    .container-auto {
        margin: auto;
        width: 100%;
        padding: 0 20px;
    }
}

.swiper-slide .container2 {
    position: relative;
    height: 700px;
    width: 100%;
}

.animeslide-heading {
    background: rgba(0, 0, 0, 0.8);
    font-size: 40px;
    margin: auto;
    position: relative;
    top: 85%;
    text-align: center;
    max-width: 650px;
}

@media (max-width:1400px) {
    .animeslide-heading {
        top: 60%;
    }
}

@media (max-width:1000px) {
    .animeslide-heading {
        font-size: 25px;
        top: 40%;
    }
}

@media (max-width:700px) {
    .animeslide-heading {
        font-size: 20px;
        top: 30%;
        width: 60%;
    }
}

@media (max-width:600px) {
    .animeslide-heading {
        font-size: 15px;
        top: 22%;
        width: 60%;
    }
}

@media (max-width:400px) {
    .animeslide-heading {
        font-size: 12px;
        top: 12%;
        width: 60%;
    }
}