@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CSource+Serif+Pro:400,600,700');

/*---------------------------
** Reset css
---------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    /*vertical-align: baseline;*/
}

HTML5 display-role reset for older browsers article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*---------------------------
** Global css
---------------------------*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
}

.outer-container {
    display: table;
    height: 100%;
}

.inner-container {
    display: table-cell;
    vertical-align: middle;
}

a.boxed-btn {
    padding: 20px;
    display: inline-block;
    color: #fff;
    background-color: #f28237;
    font-size: 14px;
    font-weight: 600;
    border: none;
    text-decoration: none;
}

.section-summary {
    font-size: 15px;
    font-weight: 400;
    margin: 16px 0px 22px 0px;
    font-weight: 400;
    line-height: 1.4;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
}

ul.breadcumb {
    display: block;
    margin-top: 20px;
}

ul.breadcumb li {
    display: inline-block;
    position: relative;
    margin-left: 20px;
    text-transform: capitalize;
}

ul.breadcumb li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
}

ul.breadcumb li a:hover {
    color: #f28237;
}

ul.breadcumb li::after {
    /*position: absolute;
    right: -20px;
    top: 0;
    content: "/\00a0";*/
}

ul.breadcumb li:first-child {
    margin-left: 0;
}

ul.breadcumb li:last-child {
    font-weight: 600;
}

ul.breadcumb li:last-child::after {
    display: none;
}

.form-element {
    margin-bottom: 20px;
}

.form-element:last-child {
    margin-bottom: 0px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="color"],
input[type="datetime-local"],
input[type="range"],
input[type="month"],
input[type="week"],
input[type="search"],
input[type="time"] {
    display: inline-block;
    width: 100%;
    height: 50px;
    padding-left: 23px;
    border: 1px solid #ddd;
    outline: 0;
    border-radius: 1px;
}

textarea {
    display: inline-block;
    width: 100%;
    height: 100px;
    padding: 15px 0px 0px 23px;
    border: 1px solid #ddd;
    outline: 0;
    border-radius: 1px;
}

input[type="submit"],
button[type="submit"] {
    border: none;
    color: #fff;
    padding: 18px 45px;
    display: inline-block;
    outline: 0;
    font-weight: 600;
    background-color: #0a3041;
    border: 1px solid #0a3041;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: .5s;
    transition: .5s;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color: #fff;
    color: #0a3041;
}

::-webkit-input-placeholder {
    color: #38383c;
    opacity: 1;
    /* Firefox */
    font-size: 14px;
}

:-ms-input-placeholder {
    color: #38383c;
    opacity: 1;
    /* Firefox */
    font-size: 14px;
}

::placeholder {
    color: #38383c;
    opacity: 1;
    /* Firefox */
    font-size: 14px;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #38383c;
    font-size: 14px;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #38383c;
    font-size: 14px;
}

.back-to-top {
    bottom: 30px;
    right: 0px;
    position: fixed;
    color: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: #f28237;
    border: 1px solid #f28237;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}

.back-to-top:hover {
    background-color: #fff;
    color: #f28237;
}

.back-to-top.show {
    opacity: 1;
    right: 30px;
}


/*---------------------------
** Helper css
---------------------------*/

.height-100 {
    height: 100%;
}

.no-margin {
    margin: 0px !important;
}

.no-padding {
    padding: 0px !important;
}


/*---------------------------
** Preloader css
---------------------------*/

.loader-container {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .5s;
    transition: .5s;
}

.loader {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    border: 4px solid #f28237;
    -webkit-animation: loader 2s infinite ease;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #f28237;
    -webkit-animation: loader-inner 2s infinite ease-in;
    animation: loader-inner 2s infinite ease-in;
}

.loader-fadeout {
    opacity: 0;
    visibility: hidden;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}


/*---------------------------
** Header area css
---------------------------*/

.header-absolute {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.support-bar-area {
    padding-top: 20px;
    font-size: 14px;
    color: #fff;
}

.support-bar-area .support-contact-info i {
    color: #f28237;
    font-size: 16px;
    margin-right: 4px;
}

.support-bar-area i {
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
}

.support-bar-area .address {
    margin-right: 25px;
}

.support-bar-area ul.social-links {
    position: relative;
    display: inline-block;
}

.support-bar-area ul.social-links::after {
    position: absolute;
    /*content: "|";*/
    display: inline-block;
    right: 0px;
    top: 0px;
}

.support-bar-area ul.social-links li {
    display: inline-block;
    margin-right: 15px;
}

.support-bar-area ul.social-links li a {
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.support-bar-area ul.social-links li a:hover {
    color: #f28237;
}

.support-bar-area ul.social-links li:last-child {
    margin-right: 0px;
}

.support-bar-area a {
    color: #fff;
    font-size: 14px;
    display: block;
    font-weight: 400;
}

.language {
    display: inline-block;
    margin-left: 25px;
    position: relative;
}

a.language-btn {
    position: relative;
    text-decoration: none;
    width: 85px;
    text-align: left;
    -webkit-transition: .5s;
    transition: .5s;
}

a.language-btn:hover {
    color: #f28237;
}

.language-btn::after {
    content: "\f078";
    position: absolute;
    right: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    top: 2px;
    font-size: 10px;
}

ul.language-dropdown {
    text-align: center;
    position: absolute;
    z-index: 10;
    top: 25px;
    left: 0;
    width: 120px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: .5s;
    transition: .5s;
}

ul.language-dropdown.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

ul.dropdown li {
    display: block;
}

ul.language-dropdown li {
    position: relative;
    background-color: #0a3041;
    z-index: -1;
}

ul.language-dropdown li a {
    display: block;
    position: relative;
    padding: 12px 16px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

ul.language-dropdown li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #f28237;
    z-index: -1;
    -webkit-transition: .5s;
    transition: .5s;
}

ul.language-dropdown li a:hover::before {
    width: 100%;
}

ul.language-dropdown li:last-child a {
    border-bottom: none;
}

.language a i {
    margin-right: 3px;
}

.logo-wrapper {
    display: table;
    height: 100%;
    margin-top: -5px;
}

.logo-wrapper a {
    display: table-cell;
    vertical-align: middle;
}

.logo-wrapper img {
    max-width: 220px;
    /*max-height: 60px;*/
}

#mobileMenu {
    display: none;
}

.header-navbar {
    padding: 29px 0px 28px 0px;
    border-bottom: 1px solid #94a7b2;
    position: relative;
}

.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0a3041;
    border: none;
    -webkit-animation: navFadeIn 1s;
    animation: navFadeIn 1s;
}

@-webkit-keyframes navFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.sticky-navbar .support-bar-area {
    display: none;
}

.sticky-navbar .header-navbar {
    border: none;
    padding: 15px 0px;
}

.sticky-navbar .main-menu {
    padding: 6px 0px;
}

.main-menu li {
    display: inline-block;
    margin-right: 3px;
}

.main-menu li:last-child {
    margin-right: 0px;
}

.main-menu li a {
    display: block;
    position: relative;
    padding: 15px 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
}

.main-menu li a::after {
    content: "";
    width: 0px;
    height: 3px;
    background-color: #f28237;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-transition: .5s;
    transition: .5s;
}

.main-menu li a::before {
    content: "";
    width: 0px;
    height: 3px;
    background-color: #f28237;
    position: absolute;
    bottom: 0px;
    right: 0px;
    -webkit-transition: .5s;
    transition: .5s;
}

.main-menu li a:hover::after {
    width: 100%;
}

.main-menu li a:hover::before {
    width: 100%;
}

.main-menu li a:hover {
    color: #f28237;
}

.main-menu li a.boxed-btn::after,
.main-menu li a.boxed-btn::before {
    display: none;
}

.main-menu li.active a {
    color: #f28237;
}

.main-menu li a.boxed-btn {
    font-weight: 600;
    padding: 20px;
    margin-left: 25px;
    -webkit-transition: .5s;
    transition: .5s;
    border: 1px solid #f28237;
}

.main-menu li a.boxed-btn:hover {
    background-color: #fff;
    border: 1px solid #f28237;
    color: #f28237;
}

.main-menu li.dropdown {
    position: relative;
    margin-right: 15px;
}

.main-menu li.dropdown::after {
    position: absolute;
    content: "\f078";
    right: -3px;
    top: 16px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #fff;
    font-size: 10px;
    -webkit-transition: .5s;
    transition: .5s;
}

.main-menu li.dropdown2::after {
    position: absolute;
    content: "\f054";
    right: 6px;
    top: 16px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #fff;
    font-size: 10px;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 99999999 !important;
}

.main-menu li.dropdown.active::after {
    color: #f28237;
}

.main-menu li.dropdown ul.dropdown-lists {
    position: absolute;
    top: 45px;
    left: 0;
    width: 180px;
    text-align: left;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.main-menu li.dropdown:hover ul.dropdown-lists {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.main-menu li.dropdown:hover a {
    color: #f28237;
}

.main-menu li.dropdown:hover a.dropdown-btn::after {
    width: 100%;
}

.main-menu li.dropdown:hover a.dropdown-btn::before {
    width: 100%;
}

.main-menu li.dropdown:hover::after {
    color: #f28237;
}

.main-menu li.dropdown ul.dropdown-lists li {
    display: block;
    margin: 0px;
    position: relative;
    z-index: -1;
    background-color: #0a3041;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.main-menu li.dropdown ul.dropdown-lists li:last-child {
    border-bottom: none;
}

.main-menu li.dropdown ul.dropdown-lists li a {
    position: relative;
    color: #fff;
    border-top: none;
}

.main-menu li.dropdown ul.dropdown-lists li a::after {
    background-color: transparent;
}

.main-menu li.dropdown ul.dropdown-lists li a::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #f28237;
    z-index: -1;
    -webkit-transition: .5s;
    transition: .5s;
}

.main-menu li.dropdown ul.dropdown-lists li a:hover::before {
    width: 100%;
}


/*---------------------------
** Hero area css
---------------------------*/

.hero-area {
    position: relative;
}

.hero-area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0a3041;
    opacity: .6;
}

.hero-bg {
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
}

.hero-txt {
    padding: 310px 270px 373px 0px;
    color: #fff;
    position: relative;
    z-index: 9999999999999 !important;
}

.hero-txt span {
    display: inline-block;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 16px;
    line-height: 32px;
}

.hero-txt h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.4;
}

a.hero-boxed-btn {
    display: inline-block;
    width: 150px;
    height: 45px;
    line-height: 44px;
    color: #fff;
    text-align: center;
    border: 2px solid #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
    position: relative;
    background-color: transparent;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 1px;
    z-index: 999999999999;
}

a.hero-boxed-btn:hover {
    color: #fff;
    background-color: #f28237;
}

a.hero-boxed-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: 100%;
    right: 100%;
    border-top: 2px solid #0a3041;
    border-left: 2px solid #0a3041;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
}

a.hero-boxed-btn::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    top: 100%;
    left: 100%;
    border-right: 2px solid #0a3041;
    border-bottom: 2px solid #0a3041;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
}

a.hero-boxed-btn:hover::before {
    visibility: visible;
    bottom: 0px;
    right: 0px;
}

a.hero-boxed-btn:hover::after {
    visibility: visible;
    top: -2px;
    left: -2px;
}

.single-hero-feature:nth-child(odd) {
    background-color: #0a3041;
}

.single-hero-feature:nth-child(even) {
    background-color: #0e3e53;
}

.hero-feature {
    color: #fff;
    z-index: 1000;
}

.hero-features {
    color: #fff;
    position: relative;
    z-index: 100;
    padding: 0px 15px;
}

.single-hero-feature {
    position: relative;
    padding: 40px 60px 41px 60px;
}

.single-hero-feature::after {
    position: absolute;
    content: "";
    height: 25px;
    width: 100%;
    top: 0px;
    left: 0;
    -webkit-transition: top .5s;
    transition: top .5s;
}

.single-hero-feature:nth-child(odd)::after {
    background-color: #0a3041;
}

.single-hero-feature:nth-child(even)::after {
    background-color: #0e3e53;
}

.single-hero-feature:hover::after {
    top: -25px;
}

.hero-features i {
    font-size: 50px;
    margin: 0px;
}

.hero-features h3 {
    margin-top: 26px;
    font-size: 24px;
    font-weight: 600;
}


/*---------------------------
** Introduction css
---------------------------*/

.intro-section {
    margin-top: -213px;
}

.intro-txt {
    padding: 77px 47px 40px 47px;
    background-color: #f28237;
    color: #fff;
}

.intro-txt h2 {
    color: #fff;
}

.intro-txt a {
    display: inline-block;
    position: relative;
    width: 200px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-weight: 600;
    background-color: #0a3041;
    border: none;
    text-decoration: none;
    font-size: 14px;
}

.intro-txt a span {
    display: inline-block;
    margin-left: 0px;
    -webkit-transition: .3s;
    transition: .3s;
}

.intro-txt a:hover span {
    margin-left: -10px;
}

.intro-txt a::after {
    content: "\f101";
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    right: 50px;
    color: #fff;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.intro-txt a:hover::after {
    visibility: visible;
    opacity: 1;
    right: 45px;
}

.intro-bg {
    height: 100%;
    background-size: cover;
    background-image: url('../img/aboutus.jpg');
}


/*---------------------------
** How we do section css
---------------------------*/

.approach-section {
    padding: 120px 0px 118px 0px;
}

.approach-section .section-summary {
    margin: 15px 0px 55px 0px;
}

.approach-summary {
    /*padding-right: 150px;*/
}

.approach-summary span.section-title {
    font-size: 18px;
    color: #afb2be;
    font-weight: 700;
}

.approach-summary h2 {
    color: #38383c;
}

.single-approach {
    margin-bottom: 30px;
}

.single-approach:last-child {
    margin-bottom: 0px;
}

.single-approach h4 {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 9px;
}

.single-approach p {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    text-align: justify;
}

.single-approach:last-child {
    margin-bottom: 0px;
}

.single-approach::after {
    content: "";
    display: block;
    clear: both;
}

.approach-icon-wrapper {
    height: 80px;
    width: 80px;
    border: 1px solid #f28237;
    border-radius: 50%;
    text-align: center;
    /*float: left;*/
    -webkit-transition: .5s;
    transition: .5s;
    margin-bottom: 25px;
}

.approach-icon-wrapper i {
    margin: 0;
    line-height: 80px;
    font-size: 30px;
    color: #f28237;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-approach:hover .approach-icon-wrapper {
    background-color: #f28237;
    border: 1px solid #f28237;
}

.single-approach:hover .approach-icon-wrapper i {
    color: #fff;
}

.approach-text {
    /*margin-left: 110px;*/
}

.approach-summary a.boxed-btn {
    position: relative;
    border: 1px solid #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.approach-summary a.boxed-btn:hover {
    border: 1px solid #f28237;
    color: #f28237;
    background-color: #fff;
}


/*---------------------------
** CTA section css
---------------------------*/

.cta-bg {
    background-image: url('../img/cta-bg.jpg');
    background-size: cover;
}

.cta-section {
    padding: 49px 0px;
    position: relative;
}

.cta-section h3 {
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
}

.contact-btn-wrapper {
    text-align: right;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #f28237;
    opacity: .70;
}

.cta-content {
    position: relative;
    z-index: 10;
}

a.contact-btn {
    position: relative;
    width: 180px;
    text-align: center;
}

a.contact-btn span {
    display: inline-block;
    margin-left: 0px;
    -webkit-transition: .3s;
    transition: .3s;
}

a.contact-btn:hover span {
    margin-left: -10px;
}

a.contact-btn::after {
    content: "\f101";
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    right: 35px;
    color: #fff;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

a.contact-btn:hover::after {
    visibility: visible;
    opacity: 1;
    right: 30px;
}


/*---------------------------
** Case section css
---------------------------*/

.case-bg {
    background-image: url('../img/case/header-bg.jpg');
}

.case-section {
    position: relative;
    padding: 116px 0px 107px 0px;
}

.case-section .section-title {
    color: #afb2be;
}

.case-section .section-summary {
    margin: 15px 0px 56px;
}

.case-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.single-case-bg-1 {
    background-image: url('../img/case/case-1.jpg');
    background-size: cover;
}

.single-case-bg-2 {
    background-image: url('../img/case/case-2.jpg');
    background-size: cover
}

.single-case-bg-3 {
    background-image: url('../img/case/case-3.jpg');
    background-size: cover
}

.single-case-bg-4 {
    background-image: url('../img/case/case-4.jpg');
    background-size: cover
}

.single-case-bg-5 {
    background-image: url('../img/case/case-5.jpg');
    background-size: cover
}

.single-case-bg-7 {
    background-image: url('../img/case/case-7.jpg');
    background-size: cover
}

.single-case {
    display: block;
    height: 340px;
    width: 100%;
    background-color: #ddd;
    text-decoration: none;
}

.case-carousel.owl-theme .owl-dots .owl-dot.active span,
.case-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #f28237;
}

.single-case .outer-container {
    background-color: rgba(10, 48, 65, 0);
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
}

.single-case .outer-container h4 {
    color: #fff;
}

.single-case:hover .outer-container {
    background-color: rgba(10, 48, 65, 0.8);
    visibility: visible;
}

.outer-container {
    display: table;
    height: 100%;
    width: 100%;
}

.single-case .inner-container {
    display: table-cell;
    vertical-align: middle;
    padding: 0px 80px;
    text-align: center;
    opacity: 0;
}

.single-case .inner-container {
    display: table-cell;
    vertical-align: middle;
    padding: 0px 80px;
    text-align: center;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-case:hover .inner-container {
    opacity: 1;
}

.single-case h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 28px;
}

.single-case p {
    font-size: 14px;
    font-weight: 600;
    color: #f28237;
}

.single-case a.readmore-btn {
    margin-top: 18px;
}

.case-carousel {
    position: relative;
}

.case-carousel.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}

.case-carousel button.owl-prev {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    height: 40px;
    width: 40px;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    line-height: 40px;
    left: -20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
    outline: none;
}

.case-carousel button.owl-prev i {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}

.case-carousel button.owl-prev:hover {
    border: 2px solid #f28237 !important;
}

.case-carousel button.owl-prev:hover i {
    color: #f28237;
}

.owl-carousel button.owl-next {
    display: inline-block;
    position: absolute;
    height: 40px;
    width: 40px;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    line-height: 40px;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: none;
    opacity: 0;
    z-index: 2;
    -webkit-transition: .5s;
    transition: .5s;
}

.case-carousel button.owl-next i {
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}

.case-carousel button.owl-next:hover {
    border: 2px solid #f28237 !important;
}

.case-carousel button.owl-next:hover i {
    color: #f28237;
}

.case-carousel:hover button.owl-prev {
    left: 0px;
    opacity: 1;
}

.case-carousel:hover button.owl-next {
    right: 0px;
    opacity: 1;
}

.case-carousel .owl-nav::after {
    display: block;
    clear: both;
    content: "";
}

.case-carousel::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0px;
    width: 120px;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(10, 10, 10, 0.9)), color-stop(rgba(0, 0, 0, 0.6)), color-stop(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    z-index: 1;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}

.case-carousel:hover::before {
    opacity: 1;
}

.case-carousel::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0px;
    width: 120px;
    height: 100%;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(10, 10, 10, 0.9)), color-stop(rgba(0, 0, 0, 0.6)), color-stop(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to left, rgba(10, 10, 10, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    z-index: 1;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}

.case-carousel:hover::after {
    opacity: 1;
}


/*---------------------------
** Testimonial section css
---------------------------*/

.testimonial-section {
    padding-bottom: 116px;
}

.testimonial-section .section-title {
    color: #afb2be;
}

.testimonial-section .section-summary {
    margin: 17px 0px 51px;
}

.testimonial-carousel.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
    border-radius: 50%;
}

.testimonial-carousel::after {
    content: "";
    display: block;
    clear: both;
}

.single-testimonial .img-wrapper {
    float: left;
}

.client-desc {
    margin-left: 100px;
}

.single-testimonial {
    padding: 40px 40px 40px;
    background-color: #f7f7f7;
    position: relative;
    margin: 4px;
}

.single-testimonial::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 100%;
    right: 100%;
    opacity: 0;
    border-top: 2px solid #f28237;
    border-right: 2px solid #f28237;
}

.single-testimonial:hover::before {
    opacity: 1;
    right: 0px;
    bottom: 0px;
    -webkit-transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
    transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
}

.single-testimonial::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    top: 100%;
    left: 100%;
    opacity: 0;
    border-bottom: 2px solid #f28237;
    border-left: 2px solid #f28237;
}

.single-testimonial:hover::after {
    -webkit-transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
    opacity: 1;
    left: 0px;
    top: 0px;
}

.single-testimonial p.comment {
    font-weight: 400;
    font-size: 13px;
    color: #5d5d61;
    line-height: 20px;
    margin-bottom: 18px;
}

.client-desc p{
    font-weight: 400;
    font-size: 13px;
    color: #5d5d61;
    line-height: 20px;
    margin-bottom: 18px;
}

.single-testimonial h6 {
    font-weight: 700;
    color: #f28237;
    font-size: 14px;
    margin-bottom: 8px;
}

.single-testimonial p.rank {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}


/*---------------------------
** Team section css
---------------------------*/

.team-section {
    position: relative;
    padding: 116px 0px 120px;
}

.team-section .section-summary {
    margin: 20px 0px 47px;
}

.team-bg {
    background-image: url('../img/team/team-bg.jpg');
    background-size: cover;
}

.team-overlay {
    background-color: #0a3041;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .8;
}

.team-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.single-team-member {
    position: relative;
}

.single-team-member::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 100%;
    bottom: 100%;
    border-top: 2px solid #f28237;
    border-left: 2px solid #f28237;
    visibility: hidden;
    z-index: 10;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-team-member::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 100%;
    top: 100%;
    border-bottom: 2px solid #f28237;
    border-right: 2px solid #f28237;
    visibility: hidden;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-team-member:hover::before {
    visibility: visible;
    right: 0px;
    bottom: 0px;
}

.single-team-member:hover::after {
    visibility: visible;
    left: 0px;
    top: 0px;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.social-accounts {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f28237;
    padding: 15px 0px;
    -webkit-transform: translateY(55px);
    transform: translateY(55px);
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 20;
}

.social-accounts ul {
    text-align: center;
}

.social-accounts ul li {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0px 5px;
    border-radius: 50%;
}

.social-accounts ul li a {
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
}

.social-accounts ul li a:hover {
    background-color: #fff;
    color: #f28237;
}

.single-team-member:hover .social-accounts {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.member-info {
    padding: 27px 25px 30px;
    background-color: #fff;
    margin-top: -3px;
}

.member-info .member-name {
    color: #444448;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1px;
}

.member-info small {
    font-weight: 400;
    font-size: 14px;
    color: #f28237;
}

.single-team-member img {
    width: 100%;
}


/*---------------------------
** Blog section css
---------------------------*/

.blog-section {
    padding: 117px 0px 118px;
}

.blog-section .section-summary {
    margin: 20px 0px 47px;
}

.blog-section .section-title {
    color: #afb2be;
}

.blog-img-wrapper {
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
}

.single-blog:hover img {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.blog-txt {
    background-color: #f7f7f7;
    padding: 29px 25px 30px;
    margin-top: -3px;
    position: relative;
}

.blog-txt .date {
    font-size: 16px;
    color: #95959e;
    font-weight: 400;
}

.blog-txt .date span {
    color: #f28237;
    font-weight: 700;
}

.blog-txt small:first-child {
    margin-right: 10px;
}

.blog-txt small:last-child {
    margin-left: 10px;
}

.blog-txt .blog-title {
    font-size: 24px;
    color: #38383c;
    font-weight: 700;
    margin: 16px 0px 10px;
    line-height: 1.3;
}

.blog-txt .blog-title a {
    color: #38383c;
    position: relative;
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
}

.blog-txt .blog-title a:hover {
    color: #f28237;
}

.blog-txt .blog-summary {
    font-weight: 400;
    color: #5d5d61;
    font-size: 14px;
    line-height: 24px;
}

.single-blog {
    position: relative;
}

.single-blog::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: 100%;
    bottom: 100%;
    border-top: 2px solid #f28237;
    border-left: 2px solid #f28237;
    visibility: hidden;
    z-index: -10;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-blog::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    left: 100%;
    top: 100%;
    border-right: 2px solid #f28237;
    border-bottom: 2px solid #f28237;
    visibility: hidden;
    z-index: -10;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-blog:hover::after {
    visibility: visible;
    right: 0px;
    bottom: 0px;
}

.single-blog:hover::before {
    visibility: visible;
    left: -2px;
    top: -2px;
}

a.readmore-btn {
    display: inline-block;
    position: relative;
    margin-top: 18px;
    font-size: 14px;
    background-color: #f28237;
    color: #fff;
    padding: 15px;
    text-align: center;
    width: 120px;
    font-weight: 600;
    text-decoration: none;
}

a.readmore-btn span {
    -webkit-transition: .5s;
    transition: .5s;
}

a.readmore-btn:hover span {
    margin-left: -10px;
}

a.readmore-btn::after {
    position: absolute;
    content: "\f101";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    right: 15px;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
    margin-top: 1px;
}

a.readmore-btn:hover::after {
    opacity: 1;
    right: 12px;
}


/*---------------------------
** Partner section css
---------------------------*/

.partner-section .top-border {
    border-top: 2px solid #dbddde;
}

.single-partner-item {
    height: 196px;
    text-align: center;
}

.single-partner-item .outer-container {
    margin: 0 auto;
}


/*---------------------------
** Footer section css
---------------------------*/

.footer-section {
    background-color: #0a3041;
    color: #c5dadc;
}

.footer-logo-wrapper {
    text-align: left;
    max-width: 150px;
    max-height: 60px;
}

.footer-logo-wrapper a {
    display: inline-block;
}

.footer-logo-wrapper img {
    width: 100%;
}

.footer-section .footer-txt {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 22px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
}

ul.footer-links li {
    display: block;
    margin-bottom: 10px;
}

ul.footer-links li:last-child {
    margin-bottom: 0px;
}

ul.footer-links li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #c5dadc;
    text-decoration: none;
    padding-left: 15px;
    -webkit-transition: .5s;
    transition: .5s;
}

ul.footer-links li a::after {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Font Awesome 5 Free';
    content: "\f0da";
    font-weight: 700;
    color: #f28237;
}

ul.footer-links li a:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    color: #f28237;
}

.top-footer-section {
    padding: 70px 0px 50px 0px;
    border-bottom: 2px solid #214c5f;
}

.footer-contact-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    line-height: 1.4;
}

.footer-contact-info ul li::after {
    content: "";
    display: block;
    clear: both;
}

.footer-contact-info ul li i {
    color: #f28237;
    font-size: 14px;
}

.footer-contact-info ul li span {
    font-weight: 400;
    font-size: 14px;
    margin-left: 15px;
    line-height: 24px;
    margin-top: -6px;
}

.copyright-section {
    padding: 25px 0px 27px;
    font-size: 14px;
}


/*---------------------------
** Home 2 page css
---------------------------*/

.hero2-carousel {
    position: relative;
}

.hero2-carousel.owl-theme .owl-dots {
    position: absolute;
    right: 28px;
    width: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero2-carousel.owl-theme .owl-dots .owl-dot {
    outline: none;
}

.hero2-carousel.owl-theme .owl-dots .owl-dot span {
    background-color: white;
    height: 5px;
    width: 35px;
}

.hero2-carousel.owl-theme .owl-dots .owl-dot.active span {
    background-color: #f28237;
    width: 50px;
    margin: 8px -9px;
}

.hero-bg-1 {
    background-image: url('../img/hero-bg.jpg');
}

.hero-bg-2 {
    background-image: url('../img/hero-bg-2.jpg');
}

.hero-bg-3 {
    background-image: url('../img/hero-bg-3.jpg');
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.hero2-carousel .owl-item.active .hero-txt span {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.hero2-carousel .owl-item.active .hero-txt a.hero-boxed-btn,
.hero2-carousel .owl-item.active .hero-txt h1 {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}


/*---------------------------
** Home 3 page css
---------------------------*/

.hero-txt.home-3 {
    position: static;
    z-index: 0;
}

.hero-txt.home-3 * {
    position: relative;
    z-index: 100;
}

div#particles-js canvas {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 50;
}

.home-3.intro-section {
    position: relative;
}


/*---------------------------
** About page css
---------------------------*/

.breadcrumb-area .breadcrumb-txt {
    padding: 200px 0px 115px 0px;
}

.breadcrumb-area {
    position: relative;
}

.breadcrumb-txt {
    padding: 325px 270px 360px 0px;
    color: #fff;
    position: relative;
    z-index: 100;
}

.breadcrumb-txt span {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: capitalize;
    display: inline-block;
}

.cases .breadcrumb-txt span {
    margin-bottom: 8px;
}

.breadcrumb-txt h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.3;
}

.about ul.breadcumb {
    display: block;
    margin-top: 58px;
}

.breadcrumb-area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0a3041;
    opacity: .6;
}

.about-bg {
    background-image: url('../img/about/header-bg.jpg');
    background-size: cover;
}

.about-company-section {
    padding: 118px 0px;
}

.about-company-section .section-summary {
    margin: 20px 0px 42px;
}

.about-company-section .section-title {
    color: #afb2be;
}

.about-company-txt {
    padding-right: 10px
}

.about-company-txt p {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    margin-bottom: 23px;
    line-height: 28px;
}

.about .section-title {
    color: #afb2be;
}

.about .section-summary {
    color: #38383c;
}

.tile-gallery .big-img {
    min-height: 280px;
    margin-bottom: 30px;
}

.tile-gallery .big-img-bg {
    background-image: url('../img/about/gallery_1.jpg');
    background-size: cover;
}

.tile-gallery .small-img {
    min-height: 230px;
}

.tile-gallery .small-img-bg-1 {
    background-image: url('../img/about/gallery_2.jpg');
    background-size: cover;
}

.tile-gallery .small-img-bg-2 {
    background-image: url('../img/about/gallery_3.jpg');
    background-size: cover;
}

.choose-us {
    margin-top: 63px;
}

.single-reason {
    padding-right: 10px;
}

.about-icon-wrapper {
    height: 100%;
    width: 80px;
    border: 1px solid #3fd680;
    border-radius: 50%;
    text-align: center;
    float: left;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-reason .reason-txt {
    margin-left: 105px;
}

.single-reason .reason-txt h4 {
    font-size: 22px;
    color: #38383c;
    font-weight: 500;
    margin-top: 17px;
}

.single-reason .reason-txt p {
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    font-weight: 400;
    margin-top: 9px;
}

.about-icon-wrapper i {
    margin: 0;
    line-height: 80px;
    font-size: 30px;
    color: #f28237;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-reason:hover .about-icon-wrapper {
    background-color: #f28237;
    border: 1px solid #f28237;
}

.single-reason:hover .about-icon-wrapper i {
    color: #fff;
}

.about .member-info {
    background-color: #f3f5f9;
}

.about.testimonial-section {
    padding: 117px 0px 113px;
}

.about.team-section {
    padding: 0px 0px 120px;
}

.about.team-section .section-summary {
    margin: 15px 0px 47px;
}

.about.testimonial-section .section-summary {
    margin: 15px 0px 52px;
}


/*---------------------------
** Services page css
---------------------------*/

.breadcrumb-area .breadcrumb-txt.reduce-padding {
    padding: 290px 0px 139px 0px;
}

.breadcrumb-txt span {
    margin-bottom: 11px;
}

.service-section {
    padding: 120px 0px 120px;
}

.service-bg {
    background-image: url('../img/services/header-bg.jpg');
    background-size: cover;
}

.service-section .section-title {
    color: #afb2be;
}

.single-service {
    margin-bottom: 30px;
    position: relative;
}

.single-service::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: 100%;
    bottom: 100%;
    border-top: 2px solid #f28237;
    border-left: 2px solid #f28237;
    visibility: hidden;
    z-index: -10;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-service::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    left: 100%;
    top: 100%;
    border-right: 2px solid #f28237;
    border-bottom: 2px solid #f28237;
    visibility: hidden;
    z-index: -10;
    -webkit-transition: .5s;
    transition: .5s;
}

.single-service:hover::after {
    visibility: visible;
    right: 0px;
    bottom: 0px;
}

.single-service:hover::before {
    visibility: visible;
    left: -2px;
    top: -2px;
}

.single-service .service-img-wrapper {
    overflow: hidden;
}

.single-service img {
    -webkit-transition: .5s;
    transition: .5s;
}

.single-service:hover img {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.service-section .col-md-6:last-child .single-service {
    margin-bottom: 0;
}

.service-section .col-md-6:nth-last-child(2) .single-service {
    margin-bottom: 0;
}

.service-img-wrapper img {
    width: 100%;
}

.service-txt {
    background-color: #f7f7f7;
    padding: 25px 28px 30px;
    margin-top: -3px;
}

.service-txt .service-title {
    font-size: 24px;
    color: #38383c;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-txt .service-title a {
    color: #38383c;
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
}

.service-txt .service-title a:hover {
    color: #f28237;
}

.service-txt .service-summary {
    font-weight: 400;
    color: #5d5d61;
    font-size: 14px;
    line-height: 24px;
}

.appoint-section {
    padding: 67px 35px 70px;
    background-color: #f28237;
    color: #fff;
}

.appoint-section h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.appoint-section input[type="text"],
.appoint-section input[type="email"],
.appoint-section input[type="date"],
.appoint-section input[type="number"],
.appoint-section input[type="tel"],
input[type="url"],
.appoint-section input[type="color"],
.appoint-section input[type="datetime-local"],
.appoint-section input[type="range"],
.appoint-section input[type="month"],
.appoint-section input[type="week"],
.appoint-section input[type="search"],
.appoint-section input[type="time"] {
    border: none;
}

a.download-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    font-weight: 600;
    background-color: #0a3041;
    color: #fff;
    padding: 22px 30px;
    text-decoration: none;
    font-size: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    border: 1px solid #0a3041;
    -webkit-transition: .5s;
    transition: .5s;
}

a.download-btn:hover {
    background-color: #fff;
    color: #0a3041;
}

a.download-btn i {
    margin-right: 6px;
    font-size: 30px;
    font-weight: 400;
    color: #6ec25b;
}


/*---------------------------
** Service details page css
---------------------------*/

.service-details.breadcrumb-area .breadcrumb-txt {
    padding: 290px 0px 140px 0px;
}

.service-details-section {
    padding: 120px 0px 118px;
}

.service-details-img-1,
.service-details-img-2 {
    width: 100%;
}

.service-details-txt {
    margin-bottom: 54px;
}

.service-details-txt h2 {
    font-size: 35px;
    font-weight: 700;
    color: #38383c;
    margin: 22px 0px;
}

.service-details-txt p {
    font-size: 14px;
    font-weight: 400;
    color: #5d5d61;
    line-height: 28px;
}

.why-choose-this h3 {
    font-size: 30px;
    font-weight: 700;
    color: #38383c;
}

.why-choose-this p {
    margin: 22px 0px 23px;
}

.why-choose-this p,
.why-choose-this li {
    font-size: 14px;
    font-weight: 400;
    color: #5d5d61;
    line-height: 24px;
}

.why-choose-this li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
    color: #38383c;
}

.why-choose-this li:last-child {
    margin-bottom: 0px;
}

.why-choose-this li i {
    margin-top: 5px;
    margin-right: 10px;
    color: #f28237;
}


/*---------------------------
** Blog page css
---------------------------*/

.blogs .breadcrumb-txt span {
    margin-bottom: 11px;
}

.blogs ul.breadcumb {
    display: block;
    margin-top: 60px;
}

.blog-lists {
    padding: 120px 0px 120px;
}

.blog-bg {
    background-image: url('../img/blog/blog-bg.jpg');
    background-size: cover;
}

.blog-lists .single-blog {
    margin-bottom: 30px;
    position: relative;
}

.blog-lists .col-md-6:last-child .single-blog {
    margin-bottom: 0;
}

.blog-lists .col-md-6:nth-last-child(2) .single-blog {
    margin-bottom: 0;
}

.blog-sidebar-widgets {
    background-color: #f7f7f7;
    padding: 40px 35px;
    margin-bottom: 40px;
}

.blog-sidebar-widgets.post-widget {
    padding: 37px 35px;
}

.blog-sidebar-widgets.category-widget {
    padding: 38px 35px 34px;
}

.searchbar::after {
    content: "";
    display: block;
    clear: both;
}

.searchbar input[type="text"],
.searchbar input[type="search"] {
    width: 80%;
    float: left;
    border: none;
}

.searchbar button[type="submit"],
.searchbar input[type="submit"] {
    width: 20%;
    float: left;
    padding: 0;
    height: 50px;
}

.popular-posts-lists h4,
.category-lists h4 {
    margin-bottom: 26px;
    font-size: 18px;
    font-weight: 700;
    color: #38383c;
}

.category-lists h4 {
    margin-bottom: 23px;
}

.single-popular-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.single-popular-post:last-child {
    margin-bottom: 0px;
}

.single-popular-post::after {
    content: "";
    display: block;
    clear: both;
}

.single-popular-post img {
    width: 60px;
}

.popular-post-txt {
    margin-left: 15px
}

.popular-post-txt h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.popular-post-txt h5 a {
    color: #38383c;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
}

.popular-post-txt h5 a:hover {
    color: #f28237;
}

.popular-post-txt small {
    font-size: 12px;
    font-weight: 400;
    color: #797e82;
}

.category-lists ul {
    padding: 0;
}

.category-lists ul li {
    display: block;
    margin-bottom: 14px;
    line-height: 21px;
}

.category-lists ul li:last-child {
    display: block;
    margin-bottom: 7px;
}

.category-lists ul li a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #38383c;
    text-decoration: none;
    padding-left: 10px;
    -webkit-transition: .5s;
    transition: .5s;
}

.category-lists ul li a:hover {
    color: #f28237;
}

.category-lists ul li a::after {
    position: absolute;
    content: "\f0da";
    top: 0;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #f28237;
}

.subscribe-section {
    padding: 42px 40px 45px;
    background-color: #0a3041;
    color: #fff;
}

.subscribe-section span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 11px;
    color: #f28237;
}

.subscribe-section h3 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    line-height: 1.4;
}

.subscribe-section h3::after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #f28237;
}

.subscribe-form {
    margin-top: 47px;
}

.subscribe-form input[type="email"] {
    border: none;
}

.subscribe-form input[type="submit"],
.subscribe-form button[type="submit"] {
    display: inline-block;
    background-color: #f28237;
    border: 1px solid #f28237;
    color: #fff;
    padding: 15px 0px;
    width: 120px;
    text-align: center;
}

.subscribe-form input[type="submit"]:hover,
.subscribe-form button[type="submit"]:hover {
    background-color: #fff;
    border: 1px solid #f28237;
    color: #f28237;
}

.pagination-nav {
    margin-top: 50px;
    font-size: 14px;
}

.pagination-nav li.page-item {
    margin: 0px 5px;
}

.pagination-nav a.page-link {
    padding: 10px 15px;
    border: 2px solid #dddddd;
    color: #38383c;
}

.pagination-nav .page-item:first-child .page-link {
    border-radius: 0;
}

.pagination-nav .page-item:last-child .page-link {
    border-radius: 0;
}

.pagination-nav li.page-item.active a {
    background-color: #f28237;
    border: 2px solid #f28237;
}


/*---------------------------
** Blog details page css
---------------------------*/

.breadcrumb-area.blog-details .breadcrumb-txt span {
    margin-bottom: 13px;
}

.blog-details-section {
    padding: 45px 0px 45px;
}

.blog-details-img-1 {
    width: 100%;
}

.blog-details-section small.date {
    font-size: 12px;
    color: #797e82;
    display: inline-block;
    margin-top: 26px;
}

.blog-details-title {
    font-size: 35px;
    font-weight: 700;
    margin: 14px 0px 23px;
    line-height: 1.4;
}

.blog-details-body p {
    font-size: 14px;
    line-height: 28px;
    color: #666666;
}

.blog-details-quote {
    padding: 50px 37px;
    border-left: 3px solid #f28237;
    font-style: italic;
    line-height: 32px;
    font-size: 18px;
    margin: 38px 0px 35px;
    background-color: #f7f7f7;
}

.blog-share {
    margin-top: 38px;
}

.blog-share ul li {
    display: inline-block;
    margin-right: 15px;
}

.blog-share ul li:last-child {
    margin-right: 0px;
}

.blog-share ul li a {
    display: block;
    width: 120px;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px 0px;
    border-radius: 50px;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
}

.blog-share ul li a:hover {
    opacity: .8;
}

.blog-share ul li a.facebook-share {
    background-color: #275baa;
}

.blog-share ul li a.twitter-share {
    background-color: #28c8f0;
}

.blog-share ul li a.pinterest-share {
    background-color: #d6061e;
}

.blog-share ul li a i {
    margin-right: 10px;
}

.author-info {
    margin: 68px 0px 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.author-info img {
    border-radius: 50%;
    width: 100px;
}

.author-details {
    margin-left: 35px;
}

.author-info .name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.author-info .desc {
    font-size: 14px;
    line-height: 28px;
    color: #666666;
}

.comment-lists h3 {
    font-size: 24px;
    font-weight: 700;
    color: #38383c;
    display: block;
    position: relative;
    margin-bottom: 49px;
}

.comment-lists h3::after {
    position: absolute;
    content: "";
    bottom: -9px;
    left: 0;
    height: 3px;
    width: 50px;
    background-color: #f28237;
}

.single-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 25px;
    background-color: #fbfbfb;
    margin-bottom: 30px;
}

.single-comment:last-child {
    margin-bottom: 0px;
}

.single-comment-wrapper {
    margin-right: 20px
}

.single-comment-wrapper img {
    border-radius: 50%;
    max-width: 60px;
}

.single-comment .person-name h5 {
    font-size: 16px;
    font-weight: 600;
}

.single-comment .person-info .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 8px;
}

.single-comment .person-info .date small {
    font-size: 14px;
    color: #8b8b8b;
}

.single-comment .person-info .date a {
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    color: #38383c;
    margin-top: -5px;
    -webkit-transition: .5s;
    transition: .5s;
    text-decoration: none;
}

.single-comment .person-info .date a:hover {
    color: #f28237;
}

.single-comment .person-info .comment {
    margin-top: 20px;
}

.single-comment .person-info .comment p {
    font-size: 14px;
    color: #666666;
    line-height: 28px;
}

.reply-form-section {
    margin-top: 67px;
}

.reply-form-section h3 {
    position: relative;
    margin-bottom: 52px;
    font-size: 24px;
    font-weight: 700;
    color: #38383c;
}

.reply-form-section h3::after {
    position: absolute;
    content: "";
    bottom: -12px;
    left: 0;
    height: 3px;
    width: 50px;
    background-color: #f28237;
}

.reply-form-section .form-element {
    margin-bottom: 20px;
}

.reply-form-section .form-element.reduced-mb {
    margin-bottom: 17px;
}


/*---------------------------
** Cases page css
---------------------------*/

.cases.breadcrumb-area .breadcrumb-txt {
    padding: 288px 0px 139px 0px;
}

.cases ul.breadcumb {
    margin-top: 44px;
}

.single-case-bg-6 {
    background-image: url('../img/case/case-6.jpg');
    background-size: cover;
}

.case-lists .section-title {
    color: #afb2be;
}

.case-types {
    display: block;
    position: relative;
    height: 100%;
    text-align: right;
}

.case-types ul {
    position: absolute;
    bottom: 60px;
    width: 100%;
}

.case-types ul li {
    display: inline-block;
    margin-right: 20px;
}

.case-types ul li button {
    color: #666666;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    background-color: transparent;
    border: none;
    padding: 0px;
    cursor: pointer;
    transition: .5s;
    outline: 0;
}

.case-types ul li button.is-checked {
    color: #f28237;
}

.case-types ul li button:hover {
    color: #f28237;
}

.case-types ul li:last-child {
    margin-right: 0px;
}

.case-lists {
    padding: 120px 0px 120px;
}

.case-lists .single-case {
    margin-bottom: 30px;
    width: 31.33%;
}

.case-lists .gutter-sizer {
    width: 3%;
}

.case-lists .col-md-6:nth-last-child(1) .single-case {
    margin-bottom: 0px;
}

.case-lists .col-md-6:nth-last-child(2) .single-case {
    margin-bottom: 0px;
}

.case-lists .col-md-6:nth-last-child(3) .single-case {
    margin-bottom: 0px;
}

.case-lists .single-case {
    height: 280px;
}

.case-lists .single-case .inner-container {
    padding: 0px 45px;
}


/*---------------------------
** Case details page css
---------------------------*/

.case-details .breadcrumb-txt span {
    margin-bottom: 7px;
}

.case-details ul.breadcumb {
    margin-top: 44px;
}

.case-details ul.breadcumb {
    display: block;
    margin-top: 44px;
}

.case-details.breadcrumb-area .breadcrumb-txt {
    padding: 290px 0px 140px 0px;
}

.case-details-section {
    padding: 120px 0px 118px;
}

.case-details-img {
    width: 100%;
}

.case-details-txt h2 {
    font-size: 35px;
    font-weight: 700;
    color: #38383c;
    margin: 22px 0px 14px;
}

.case-details-txt p {
    font-size: 14px;
    font-weight: 400;
    color: #5d5d61;
    line-height: 28px;
}

.case-details-section .case-details-points {
    margin-top: 34px;
}

.case-details-section .case-details-points h3 {
    font-size: 30px;
    font-weight: 700;
    color: #38383c;
}

.case-details-section .project-overview p {
    margin: 23px 0px;
}

.case-details-section .result p {
    margin: 16px 0px 23px;
}

.case-details-section .case-details-points p,
.case-details-section .case-details-points li {
    font-size: 14px;
    font-weight: 400;
    color: #5d5d61;
    line-height: 24px;
}

.case-details-section .case-details-points li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 13px;
    color: #38383c;
}

.case-details-section .case-details-points li:last-child {
    margin-bottom: 0px;
}

.case-details-section .case-details-points li i {
    margin-top: 5px;
    margin-right: 10px;
    color: #f28237;
}


/*---------------------------
** Contact page css
---------------------------*/

.contact-bg {
    background-image: url('../img/contact_bg.jpg');
    background-size: cover;
}

.contact ul.breadcumb {
    display: block;
    margin-top: 45px;
}

.contact.breadcrumb-area .breadcrumb-txt {
    padding: 288px 0px 140px 0px;
}

.contact-form-section {
    padding: 120px 0px 120px;
}

.contact-form-section .section-title {
    color: #afb2be;
}

.contact-form-section .section-summary {
    padding-right: 80px;
}

.contact-form .form-element {
    margin-bottom: 20px;
}

.contact-form .form-element {
    margin-bottom: 20px;
}

.contact-form .form-element.reduced-mb {
    margin-bottom: 17px;
}

.contact-form textarea {
    height: 120px;
}

.map-wrapper {
    height: 100%;
    position: relative;
}

div#map {
    height: 100%;
}

.contact-infos {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: #fff;
    opacity: .95;
    padding: 40px 50px 38px;
    max-width: 360px;
}

.single-contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
}

.single-contact-info:last-child {
    margin-bottom: 0px;
}

.single-contact-info i {
    margin-right: 20px;
    color: #f28237;
    font-size: 20px
}

.single-contact-info p {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-top: -5px;
}

.owl-theme .owl-nav.disabled+.owl-dots {z-index: 99999999 !important;}

.fulllist{
    width: 164%;
    background: #0a3041;
    position: absolute;
    right: 354px;
    padding: 20px;
    color: white;
    font-size: 14px;
}

.dropdown-lists-full{width: 1100px !important;}
.bigmenuhr{border-top: 1px solid #f28237 !important;}
.submenu a{
    font-weight: normal !important;
    font-size: 13px !important;
    color: white !important;
    line-height: 20px !important;
}

.footerh4{font-size: 15px !important;}
.single-category-sub{padding-left: 10px;}
.single-category-main{font-weight: bold;}
.menuactive a{color: #f28237 !important;}
.blog-details-title-page{font-size: 25px !important;margin-top: 0 !important;}



.dis-block {
    display: block;
}
.bg-img-fix {
    background-size: cover;
}
.bg-secondry {
    background-color: #152332;
}
.text-gray-dark {
    color: #9a9a9a;
}
.main-slider .button-lg {
    padding: 15px 30px;
}
.owl-none .owl-nav {
    display: none;
}
.client-logo ul {
    margin: 0 -10px;
}
.client-logo ul li {
    display: inline-block;
    float: left;
    padding: 0 10px;
    width: 33.33%;
    margin-bottom: 20px;
}
.client-logo img {
    width: 100%;
}
.dlab-bnr-inr .dz_error-404-area {
    height: 100vh;
}
.table-responsive {
    overflow-x: unset;
}
@media only screen and (max-width: 1280px) {
    .blog-info li {
        font-size: 13px;
    }
    .table-responsive {
        overflow-x: auto;
    }
}
@media only screen and (max-width: 767px) {
    .dlab-tabs.vertical .tab-pane {
        padding: 0;
    }
    .footer-bottom .text-left,
    .footer-bottom .text-right {
        text-align: center;
    }
}
.skew-content-box ul li a {
    color: #fff;
    font-size: 14px;
    width: auto;
    padding: 0 10px;
    line-height: 24px;
}
.skew-content-box {
    display: inline;
    left: -1px;
    padding: 5px 20px;
    position: absolute;
    top: -15px;
    width: auto;
}
.skew-content-box:after {
    background-color: inherit;
    content: "";
    height: 100%;
    position: absolute;
    right: -10px;
    top: 0;
    transform: skewX(20deg);
    -moz-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    -o-transform: skewX(20deg);
    width: 20px;
    z-index: 1;
}
@media only screen and (max-width: 767px) {
    .main-slider .button-lg {
        font-size: 14px;
        padding: 8px 10px;
    }
}
footer .footer-bottom .fa-heart {
    animation: 2.5s ease 0s normal none infinite running animateHeart;
    font-size: 16px;
}
@keyframes animateHeart {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.2);
    }
    10% {
        transform: scale(1.1);
    }
    15% {
        transform: scale(1.25);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
.overlay-primary-dark:after,
.overlay-primary-light:after,
.overlay-primary-middle:after {
    background: var(--color-primary);
    background: -moz-linear-gradient(45deg, var(--color-primary) 8%, var(--color-hover) 100%);
    background: -Winkit-linear-gradient(45deg, var(--color-primary) 8%, var(--color-hover) 100%);
    background: linear-gradient(45deg, var(--color-primary) 8%, var(--color-hover) 100%);
}
.h4,
.h5,
.h6,
h4,
h5,
h6 {
    font-weight: 600;
}
.box-sort {
    background-color: #fff;
    border: 1px solid #ebedf2;
    border-radius: 4px;
}
.box-sort .box-sort-in {
    border-top: 1px solid #ebedf2;
}
.dis-tbl {
    display: table;
}
.dis-tbl-cell {
    display: table-cell;
    vertical-align: middle;
}
.widget.bg-white {
    border: 1px solid #ebedf2;
}
.dlab-social-icon.dlab-social-icon-lg li a {
    color: #fff;
    font-size: 14px;
    height: 35px;
    line-height: 34px;
    padding: 0;
    width: 35px;
}
.dlab-social-icon-lg.dlab-social-icon li {
    display: inline-block;
    font-size: 12px;
    padding: 0;
}
.dlab-social-icon-lg.dlab-social-icon.border li a {
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-style-1 input {
    height: 50px;
}
.contact-style-1 .site-button {
    height: 50px;
    width: 100%;
}
.contact-style-1 .form-control {
    padding: 10px 20px;
    border-radius: 4px;
}
.contact-style-1 .form-control:focus,
.contact-style-1 .form-control:hover {
    border-color: silver;
}
.contact-style-1 h2 {
    margin-top: 0;
}
.contact-style-1 .border-1 {
    border: 1px solid #eee;
}
.contact-style-1 .dlab-social-icon-lg {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: left;
    width: 100%;
    margin: 0;
}
.contact-style-1 .dlab-social-icon-lg a {
    text-align: center;
}
.contact-style-1 .dlab-social-icon-lg li a:hover {
    background: #fff;
    color: #000;
    border: 1px solid #eee;
}
.contact-style-1 .form-group {
    margin-bottom: 25px;
}
.counter {
    position: relative;
}
.about-progress-box .about-progress-bar {
    height: 5px;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
}
.about-progress-box .about-progress {
    height: 5px;
    border-radius: 5px;
}
.about-progress-box {
    margin-bottom: 30px;
}
.faq-1 .panel {
    margin-bottom: 20px;
    transition: all 0.5s;
}
.faq-1 .acod-title a {
    padding: 20px 40px 20px 20px;
    color: #000;
}
.faq-1 .panel:hover {
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}
.faq-1 .acod-head a::after {
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 20px;
}
.faq-video {
    position: relative;
}
.faq-video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    font-size: 65px;
}
.title-box {
    font-weight: 500;
}
.faq-2 .panel .acod-body,
.faq-2 .panel .acod-head a {
    border-width: 1px 0;
}
.faq-2 .panel .acod-head a {
    padding: 20px 40px 20px 0;
    color: #000;
}
.faq-2 .panel .acod-content {
    margin: 20px 0;
}
.about-8-service .icon-bx-wraper {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}
.choses-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    text-align: center;
}
.choses-info-content [class*="col-"] {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.choses-info-content [class*="col-"]:last-child {
    border-right: 0;
}
.inquiry-form .form-control {
    border-width: 0 0 1px;
    font-size: 16px;
}
.inquiry-form .input-group-addon {
    border-width: 0 0 1px;
    font-size: 18px;
    padding: 9px 0 3px;
    vertical-align: top;
    border-bottom: 1px solid #e1e6eb;
}
.inquiry-form {
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0;
    margin-top: 0;
    height: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
}
.icon-bx-wraper.expertise {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.01);
}
.inquiry-form.box-shadow {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
}
.contact-page-9 .icon-bx-wraper {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #505050;
}
.inquiry-form.contact-project {
    margin-top: -50px;
}
.chosesus-content .list-checked li {
    margin-bottom: 10px;
}
.contact-full .dlab-bnr-inr {
    padding-bottom: 0;
}
.inquiry-form.inner {
    padding: 20px;
}
.dz_error-404 .dz_error {
    border-radius: 50%;
    font-size: 70px;
    font-weight: 700;
    height: 200px;
    line-height: 200px;
    margin: 20px 0;
    text-align: center;
    width: 200px;
}
.dz_error-405 .dz_error {
    color: #dfdfdf;
    font-family: poppins;
    font-size: 200px;
    font-weight: 700;
    line-height: 200px;
}
.dz_error-404 .error-head {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.dz_error-405 .error-head {
    font-size: 50px;
    font-weight: 700;
}
.dz_error-405 .error-content {
    font-size: 21px;
    font-weight: 500;
}
@media only screen and (max-width: 1024px) {
    .inquiry-form {
        padding: 30px;
    }
    .dz_error-405 .dz_error {
        font-size: 150px;
        line-height: 150px;
    }
    .title-box span {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .testimonials .testimonial-content {
        padding-left: 0;
    }
    .choses-info-content h4 {
        font-size: 14px;
        margin-bottom: 0;
    }
    .choses-info-content h2 {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 0;
    }
    .inquiry-form.contact-project {
        margin-top: 0;
    }
    .inquiry-form {
        padding: 20px;
    }
    .choses-info-content > div {
        padding: 20px 15px;
    }
    .portfolio .filters .btn a {
        clear: both;
        display: table-cell;
        padding: 5px 20px;
        text-align: center;
    }
    .dz_error-404 .dz_error {
        font-size: 35px;
        height: 100px;
        line-height: 100px;
        margin: auto;
        width: 100px;
    }
    .dz_error-404 .error-head {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .dz_error-405 .dz_error {
        font-size: 120px;
        line-height: 120px;
    }
    .dz_error-405 .error-head {
        font-size: 35px;
        margin: 10px 0;
    }
    .dz_error-405 .dlab-divider {
        margin: 15px 0;
    }
    .dz_error-405 .col-lg-5.m-tb30 {
        margin-bottom: 0;
    }
    .dz_error-404 [class*="col-"].m-tb30 {
        margin-top: 0;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 360px) {
    .dz_error-404 p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .dz_error-404 .error-head {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 32px;
    }
    .dz_error-405 .col-lg-5.m-tb30 {
        margin-top: 0;
    }
}
.portfolio .site-filters {
    margin-bottom: 30px;
}
.portfolio .dlab-gallery-box {
    margin-bottom: 0;
    padding: 7px;
}
.portfolio .btn {
    font-size: 12px;
}
.portfolio .dlab-box:hover .dlab-img-overlay1::before,
.portfolio .dlab-img-overlay1:hover::before {
    opacity: 0.8;
}
.portfolio p {
    margin: 0;
}
.portfolio p small {
    opacity: 0.7;
}
.portfolio .dlab-box:hover .overlay-icon,
.portfolio .ow-portfolio:hover .overlay-icon {
    margin-top: 0;
    transition: all 0.2s;
    opacity: 1;
}
.portfolio .dlab-box .overlay-icon,
.portfolio .ow-portfolio .overlay-icon {
    margin-top: 15px;
    transition: all 0.2s;
    opacity: 0;
}
.portfolio .icon-bx-xs {
    border-radius: 50%;
}
.portfolio .icon-bx-xs {
    width: 46px;
    height: 46px;
    line-height: 46px;
}
.portfolio-ic a {
    color: #000;
}
.portfolio-ic .dez-info a:hover {
    color: #24c4dd;
}
.portfolio-ic a:hover {
    color: #fff;
}
.portfolio-ic a:hover i {
    background: 0 0;
    border: 2px solid #fff;
}
.portfolio-ic .overlay-icon a {
    margin: 0 7px;
}
.portfolio .owl-next,
.portfolio .owl-next:hover,
.portfolio .owl-prev,
.portfolio .owl-prev:hover {
    background-color: #fff;
    color: #000;
    padding: 17px 17px;
}
.img-content-style-2 .link-list,
.img-hvr-content-style-1 .link-list,
.img-hvr-content-style-3 .link-list,
.img-hvr-content-style-4 .link-list {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
    margin: 0;
}
.img-hvr-content-style-2 .link-list {
    right: 20px;
    top: 20px;
    position: absolute;
}
.img-hvr-content-style-2 .dlab-info-has-text,
.img-hvr-content-style-4 .dlab-info-has-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
}
.dlab-divider.margin-0 {
    margin-top: 0;
    margin-bottom: 0;
}
.img-hvr-content-style-3 .dlab-info-has-text {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: left;
}
.no-hover .overlay-bx {
    opacity: 1;
    visibility: visible;
}
.no-hover[class*="dlab-img-overlay"]:after,
.no-hover[class*="dlab-img-overlay"]:before {
    opacity: 0.5;
}
.img-content-style-1 .overlay-icon .link-list a i {
    background-color: rgba(0, 0, 0, 0);
}
.img-content-style-3 .link-list {
    list-style: none;
    position: absolute;
    top: 20px;
    right: 20px;
}
.content-box-style .dlab-img-overlay12:before {
    opacity: 0.2;
}
.content-box-style.style1 .box-visible {
    transform: scale(0);
    -o-transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    visibility: hidden;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.content-box-style.style1:hover .box-visible {
    transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    visibility: visible;
}
#masonry {
    width: 100%;
}
.subscribe-form .form-control:focus {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0);
}
.footer-info-bar .icon-bx-wraper.bx-style-1 {
    background: #fff;
}
.footer-info-bar .icon-bx-wraper.bx-style-1 .dlab-tilte,
.footer-info-bar .icon-bx-wraper.bx-style-1 .icon-sm,
.footer-info-bar .icon-bx-wraper.bx-style-1 p {
    color: #000;
}
@media only screen and (max-width: 1024px) {
    .footer-info-bar .icon-content p {
        font-size: 12px;
    }
    .footer-info-bar [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
    .footer-info-bar .icon-bx-wraper {
        padding: 20px;
    }
}
@media only screen and (max-width: 600px) {
    .footer-info-bar [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.mfp-bg {
    z-index: 9999999;
}
.mfp-wrap {
    z-index: 9999999;
}
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-sub-html,
.lg-toolbar {
    background-color: var(--color-primary);
}
.lg-outer .lg-img-wrap,
.lg-outer .lg-item,
.lg-outer .lg-thumb-outer,
.lg-outer .lg-toogle-thumb {
    background-color: var(--color-secondry);
}
#lg-counter,
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-outer .lg-toogle-thumb,
.lg-toolbar .lg-icon {
    color: #fff;
}
.check-km {
    cursor: pointer;
}
.features-box .dlab-info .dlab-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}
.features-box .dlab-info .dlab-title a {
    color: var(--color-primary);
}
.features-box .dlab-info p {
    margin-bottom: 15px;
}
.features-info .title {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 40px;
    padding-right: 30px;
    margin-bottom: 30px;
}
.service-info {
    max-width: 780px;
    margin: auto;
}
.service-info .title {
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
}
.service-info p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}
.call-action {
    padding: 50px 0;
}
.call-action .title {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 5px;
}
.call-action.style1 {
    padding: 30px 0;
}
.call-action.style1 .title {
    font-size: 24px;
}
.about-service2 {
    padding-top: 150px;
    padding-bottom: 150px;
}
.home-slider.style1 .title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 50px;
    max-width: 600px;
    margin: 0 auto 15px;
}
.home-slider.style1 p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 20px;
}
.home-slider.style2 .title {
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 56px;
    max-width: 700px;
    margin: 0 auto 20px;
}
.service-box.style1 {
    background-color: #fff;
    padding: 40px 35px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    margin: 10px 0 40px;
}
.service-box.style1 .title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
    font-weight: 600;
}
.service-box.style1:hover:after {
    width: 100%;
    transform-origin: right;
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    right: auto;
    left: 0;
}
.service-box.style1:after {
    content: "";
    height: 5px;
    background: var(--color-primary);
    width: 0;
    position: absolute;
    bottom: 0;
    right: -1px;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.service-box.style2 {
    padding: 60px;
    align-self: center;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    height: 100%;
}
.service-box.style2 .title span {
    font-weight: 400;
}
.service-box.style2 .title {
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
}
.service-box.style2 p {
    font-size: 16px;
}
.about-industry .img-cover {
    min-height: 500px;
}
.service-box.style3 .icon-bx-wraper {
    padding: 50px 30px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.05);
    z-index: 1;
}
.service-box.style3 .icon-bx-wraper:before {
    content: attr(data-name);
    position: absolute;
    font-size: 100px;
    right: 30px;
    top: 30px;
    line-height: 80px;
    font-weight: 700;
    color: #000;
    opacity: 0.05;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.service-box.style3 .icon-lg i {
    font-size: 70px;
    line-height: 70px;
    color: var(--color-primary);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.service-box.style3 .dlab-tilte {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 30px;
}
.service-box.style3 .icon-lg {
    margin-bottom: 25px;
}
.service-box.style3 .icon-bx-wraper:after {
    content: "";
    height: 100%;
    width: 0;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -webkit-transform-origin: left;
    -o-transform-origin: left;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.service-box.style3 .icon-bx-wraper:hover,
.service-box.style3 .icon-bx-wraper:hover .dlab-tilte,
.service-box.style3 .icon-bx-wraper:hover .icon-lg i,
.service-box.style3 .icon-bx-wraper:hover:before {
    color: #fff;
}
.service-box.style3 .icon-bx-wraper:hover:before {
    opacity: 0.2;
}
.service-box.style3 .icon-bx-wraper:hover:after {
    width: 100%;
    left: 0;
    right: auto;
    transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -webkit-transform-origin: right;
    -o-transform-origin: right;
}
.widget-blog .dlab-post-header .post-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}
.widget-blog .widget-post {
    border-bottom: 1px solid #e9e9e9;
    padding: 0 0 20px;
    margin-bottom: 20px;
}
.widget-post .dlab-post-media {
    width: 125px;
}
.date-style-2 .dlab-info {
    position: unset;
}
.date-style-2 .post-date {
    top: 20px;
    border-radius: 5px;
    width: 65px;
    font-family: Poppins, sans-serif;
}
.date-style-2 .post-date > strong:after {
    content: unset;
}
.date-style-2 .post-date strong {
    font-size: 16px;
    padding: 5px 5px 0;
}
.date-style-2 .post-date span {
    padding: 0 5px 8px;
    text-transform: capitalize;
}
.video-bx.style1 {
    position: relative;
}
.video-bx.style1 .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-bx .play-btn {
    font-size: 70px;
}
.project-box.style1 {
    position: relative;
}
.project-box.style1 .project-info {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 25px;
}
.project-box.style1 .project-info .dlab-tilte {
    margin-bottom: 0;
}
.project-box.style1 .project-info .dlab-tilte a,
.project-box.style1 .project-info-hover .dlab-tilte a {
    color: #fff;
}
.project-box.style1 .project-info-hover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--color-primary);
    padding: 30px;
    color: #fff;
    opacity: 0;
    transition: all 0.5s;
}
.project-box.style1:hover .project-info-hover {
    opacity: 1;
    transition: all 0.5s;
}
.project-box.style1 .project-info-hover .dlab-tilte {
    font-size: 22px;
    line-height: 30px;
    margin: 15px 0;
}
.blog-post-content {
    margin: 0;
}
.blog-post-content [class*="col-"] {
    padding: 0;
}
.blog-post-content .blog-post .dlab-info {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-width: 1px 0 1px 1px;
    padding: 35px;
    transition: all 0.5s;
}
.blog-post-content [class*="col-"]:last-child .blog-post .dlab-info {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-post-content .blog-post:hover .dlab-info {
    background-color: #edf5f8;
    transition: all 0.5s;
}
.blog-post-content .blog-post .dlab-post-text p {
    font-size: 15px;
    line-height: 26px;
}
.blog-post-content .blog-post .dlab-post-text {
    margin-bottom: 20px;
    margin-top: 15px;
}
.blog-post-content .blog-post .dlab-post-meta {
    margin-bottom: 15px;
}
.about-history .title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-history {
    padding-right: 50px;
}
.about-history p {
    font-size: 15px;
    line-height: 26px;
}
.about-history-carousel,
.history-box {
    position: relative;
}
.history-box .dlab-media {
    width: 65%;
}
.history-box .history-info .title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}
.history-box .history-info {
    background-color: var(--color-primary);
    padding: 40px;
    color: #fff;
    width: 55%;
    position: absolute;
    right: 0;
    bottom: 0;
}
.history-box .history-info p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26px;
}
.about-history-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: 0;
}
.counter-fly-box {
    margin: -100px 0 10px;
    z-index: 99;
    position: relative;
    background-color: #fff;
    padding: 30px 30px 10px;
}
.about-bx-2 .ext {
    text-decoration: underline;
    font-weight: 500;
    font-size: 24px;
    color: var(--color-primary);
}
.about-bx-2 .title {
    font-size: 38px;
    line-height: 50px;
}
.counter-style-5 {
    padding: 50px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    z-index: 1;
}
.counter-style-5 .counter {
    font-size: 60px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.counter-style-5 p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}
.counter-style-5:hover {
    transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    border-color: var(--color-primary);
}
.counter-style-5:after {
    content: "";
    height: 0;
    width: 100%;
    background-color: var(--color-primary);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -webkit-transform-origin: top;
    -o-transform-origin: top;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.counter-style-5:hover .dlab-separator {
    background: #fff !important;
}
.counter-style-5:hover:after {
    height: 100%;
    top: auto;
    bottom: 0;
    transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -webkit-transform-origin: bottom;
    -o-transform-origin: bottom;
}
.counter-staus-box .section-head .title {
    font-size: 40px;
    line-height: 55px;
    font-weight: 700;
    color: #fff;
}
.counter-staus-box .play-btn {
    font-size: 18px;
    line-height: 70px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
    display: inline-block;
    margin-top: 30px;
}
.counter-staus-box .play-btn span {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--color-primary);
    display: inline-block;
    border-radius: 70px;
    color: #fff;
    font-size: 22px;
    margin-right: 15px;
    position: relative;
}
.dlab-team1 {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}
.dlab-team1 .dlab-info {
    position: absolute;
    bottom: -55px;
    background: #fff;
    width: 100%;
    padding: 20px 30px;
    text-align: center;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.dlab-team1 .dlab-position {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-primary);
}
.dlab-team1 .dlab-social-icon {
    display: block;
    margin-top: 20px;
}
.dlab-team1 .dlab-title {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}
.dlab-team1 .dlab-info:after {
    content: "";
    width: 15px;
    height: 15px;
    background: #fff;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
}
.dlab-team1:hover .dlab-info {
    bottom: 0;
    background: var(--color-primary);
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.dlab-team1:hover .dlab-position {
    color: #fff;
    opacity: 0.6;
}
.dlab-team1:hover .dlab-title a {
    color: #fff;
}
.dlab-team1:hover .dlab-social-icon li a {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.dlab-team1 .dlab-social-icon li a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 16px;
    line-height: 30px;
    padding: 0;
}
.dlab-team1:hover .dlab-info:after {
    background: var(--color-primary);
}
.testimonial-1 .testimonial-text p {
    font-size: 20px;
    line-height: 40px;
    color: #737984;
}
.testimonial-1 .testimonial-name {
    font-size: 20px;
    color: #fff;
    line-height: 35px;
    margin-bottom: 5px;
}
.testimonial-1 .testimonial-text {
    max-width: 980px;
    margin: auto;
}
.quote-icon {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
}
.blog-post.post-style-1 {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.blog-post.post-style-1 .dlab-post-meta li:after {
    content: none;
}
.blog-post.post-style-1 .dlab-post-meta {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 12px;
    position: relative;
}
.blog-post.post-style-1 .dlab-post-meta:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    bottom: -1px;
    left: 0;
}
.blog-post.post-style-1 .dlab-post-info {
    padding: 30px;
}
.blog-post.post-style-1 .dlab-post-text {
    margin-bottom: 0;
}
.blog-post.post-style-1 .post-title {
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 34px;
    font-size: 20px;
}
.blog-post.post-style-1 .dlab-post-readmore {
    margin-top: 15px;
    margin-bottom: 0;
}
.blog-post.post-style-1 .dlab-post-meta li:last-child:after {
    content: "";
}
.blog-post.post-style-1 .dlab-post-meta li:after {
    content: "|";
    display: inline-block;
    font-weight: 400;
    margin-left: 5px;
    opacity: 0.5;
}
.post-style-2 .dlab-post-info {
    margin-top: 20px;
}
.post-style-2 .dlab-post-title .post-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
}
.post-style-2 .dlab-post-meta {
    margin-bottom: 10px;
}
.contact-no-area .title {
    margin-top: 0;
    font-size: 60px;
    color: #fff;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 40px;
}
.contact-no p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.8;
}
.contact-no .no {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 0;
    color: var(--color-primary);
    font-weight: 500;
    margin-top: 0;
}
.contact-no {
    color: #fff;
    display: flex;
    align-items: center;
}
.contact-no .contact-right .site-button {
    padding: 15px 30px;
}
.contact-no .contact-right {
    padding-left: 40px;
}
.contact-no .contact-left {
    padding-right: 40px;
    border-right: 3px solid;
}
.counter-box h2 {
    font-size: 45px;
    padding: 30px 15px;
}
.contact-img-bx img {
    width: 100%;
    position: absolute;
    right: 0;
    bottom: -80px;
}
.service-media-bx {
    padding: 25px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 6px 6px 35px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.service-media-bx:hover {
    transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
}
.service-media-bx:after {
    content: "";
    height: 4px;
    width: 0;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -webkit-transform-origin: left;
    -o-transform-origin: left;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.service-media-bx:hover:after {
    width: 100%;
    left: 0;
    right: auto;
    transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -webkit-transform-origin: right;
    -o-transform-origin: right;
}
.service-media-bx .dlab-title a {
    color: #000;
}
.service-media-bx p {
    color: #8e8e99;
    line-height: 30px;
    margin-bottom: 15px;
}
.service-media-bx .dlab-title {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 34px;
}
.service-media-bx .dlab-info {
    padding: 35px 0 20px 0;
}
.service-media-bx .site-button {
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 30px;
}
.about-ser-carousel.owl-carousel .owl-stage-outer {
    overflow: inherit;
}
.about-ser-carousel.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0.2;
}
.about-ser-carousel.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
}
.ft-contact {
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
}
.ft-contact .ft-contact-bx {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    position: relative;
    padding: 25px 40px 25px 120px;
    z-index: 1;
}
.ft-contact .ft-contact-bx .title {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}
.ft-contact .ft-contact-bx:last-child:after {
    content: none;
}
.ft-contact .ft-contact-bx:after {
    content: "";
    height: 100%;
    width: 50px;
    position: absolute;
    right: -15px;
    top: 0;
    z-index: -1;
    background-image: url(../images/icon/right.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    opacity: 0.5;
}
.ft-contact .ft-contact-bx p {
    color: #fff;
    line-height: 28px;
    margin-bottom: 0;
    font-size: 16px;
}
.ft-contact .ft-contact-bx img {
    width: 55px;
    height: 55px;
    position: absolute;
    left: 45px;
    top: 36px;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.ft-contact .ft-contact-bx:hover img {
    transform: scale(1.2);
}
.site-footer.style1 .dlab-newsletter:after {
    content: "";
    background: #191f23;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 70px;
    left: 0;
    bottom: 0;
}
.site-footer.style1 .dlab-newsletter {
    overflow-x: hidden;
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.site-footer.style1 .footer-top {
    background: #191f23;
    background-size: cover;
    background-position: center;
    padding: 70px 0 30px 0;
}
.site-footer.style1 .footer-line {
    position: relative;
}
.site-footer.style1 .footer-bottom {
    background-color: #191f23;
    font-size: 14px;
    border-top: 1px solid #303639;
    padding: 0;
}
.site-footer.style1 .footer-bottom ul {
    margin: 0;
}
.site-footer.style1 .footer-bottom a {
    padding: 0 4px;
    color: #999;
}
.site-footer.style1 .footer-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
    color: #fff;
}
.site-footer.style1 .footer-title:after {
    content: "";
    background: var(--color-primary);
    width: 40px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.site-footer.style1 .widget_about p {
    margin-bottom: 20px;
}
.site-footer.style1 .widget_about a {
    color: var(--color-primary);
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}
.site-footer.style1 .list-2 li {
    width: 50%;
    float: left;
    padding: 0 0 12px 0;
    font-size: 16px;
}
.site-footer.style1 .list-2 li:before {
    content: none;
}
.site-footer.style1 .list-2 li a {
    text-decoration: underline;
}
.site-footer.style1 .widget_subscribe p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 28px;
}
.site-footer.style1 .widget.widget_about p {
    font-size: 16px;
    line-height: 28px;
}
.site-footer.style1 .widget_subscribe .input-group .form-control {
    height: 60px;
    border-radius: 4px 0 0 4px;
    border: 0;
    padding: 10px 30px;
}
.site-footer.style1 .widget_subscribe .input-group .input-group-addon .site-button {
    height: 60px;
    border-radius: 0 4px 4px 0;
    font-size: 18px;
    padding: 15px 25px;
}
.site-footer.style1 .widget_subscribe .input-group .input-group-addon {
    padding: 0;
    border: 0;
    background: 0 0;
}
.site-footer.style1 .footer-bottom-in {
    display: flex;
    justify-content: space-between;
}
.site-footer.style1 .footer-bottom-in .footer-bottom-logo a img {
    height: 50px;
}
.site-footer.style1 .footer-bottom-in .footer-bottom-logo a {
    display: inline-block;
    background: var(--color-primary);
    padding: 10px 20px;
}
.site-footer.style1 .footer-bottom-in .dlab-social-icon li:first-child a {
    border-left: 1px solid #303639;
}
.site-footer.style1 .footer-bottom-in .dlab-social-icon li a {
    padding: 0;
    width: 60px;
    height: 70px;
    font-size: 20px;
    color: #3b4044;
    border-right: 1px solid #303639;
    line-height: 70px;
}
.portfolio .check-km i {
    background-color: #fff;
    color: #000;
    cursor: pointer;
}
.portfolio .check-km:hover i {
    background: 0 0;
    border: 2px solid #fff;
    color: #fff;
}
.video-play-icon a {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    text-align: center;
    line-height: 80px;
    color: #fff;
    box-shadow: 0 0 0 10px rgba(238, 49, 49, 0.2);
    display: block;
    font-size: 28px;
    margin: auto;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.video-bx {
    position: relative;
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
}
.video-bx .video-play-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.video-section {
    background-repeat: no-repeat;
    background-position: right bottom;
}
.blog-post.blog-single .dlab-post-meta {
    margin-bottom: 0;
}
.blog-post.blog-single .dlab-post-title .post-title {
    margin-top: 10px;
    margin-bottom: 10px;
}
ol.comment-list li.comment p {
    line-height: 24px;
    font-size: 14px;
}
ol.comment-list li.comment .comment-meta {
    text-transform: capitalize;
    font-size: 14px;
    line-height: 20px;
}
ol.comment-list li.comment .comment-meta a {
    margin-left: 5px;
}
ol.comment-list li.comment .comment-author .fn {
    color: #000;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
}
ol.comment-list li.comment .comment-author {
    margin-bottom: 5px;
}
ol.comment-list li.comment .reply a {
    font-size: 14px;
    font-weight: 600;
}
.comments-area .comment-form p input[type="submit"] {
    cursor: pointer;
}
ol.commentlist li .meta strong {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-right: 5px;
}
ol.commentlist li .description p {
    font-size: 14px;
    line-height: 24px;
}
ol.commentlist li .meta span {
    color: #000;
    font-size: 14px;
}
.shop-service-info p {
    font-size: 14px;
    line-height: 24px;
}
.dlab-info-has.no-hover .dlab-post-meta {
    margin-bottom: 0;
}
.dlab-info-has.no-hover .dlab-post-title .post-title {
    margin-top: 0;
}
.ow-entry-title {
    font-size: 18px;
    text-transform: capitalize;
}
.ow-carousel-entry .ow-entry-text p {
    font-size: 14px;
    line-height: 24px;
}
.box-about-list .icon-bx-wraper {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 30px 30px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.box-about-list .img-cover {
    height: 100%;
}
.box-about-list .icon-bx-wraper p {
    opacity: 0.8;
    font-size: 15px;
    line-height: 26px;
}
.box-about-list .icon-bx-wraper .dlab-tilte {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
}
.box-about-list .icon-bx-wraper:hover {
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.box-about-list .icon-bx-wraper:hover .dlab-tilte,
.box-about-list .icon-bx-wraper:hover .text-white,
.box-about-list .icon-bx-wraper:hover p {
    color: #000 !important;
}
.ext-sidebar-menu ul.menu li a {
    background: #fff;
    display: block;
    border-radius: 4px;
    padding: 15px 25px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 5px 12px 20px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.ext-sidebar-menu ul.menu li {
    display: block;
    padding: 0 !important;
    border: 0;
}
.ext-sidebar-menu ul.menu li:before {
    content: none;
}
.ext-sidebar-menu ul.menu li.active a,
.ext-sidebar-menu ul.menu li:hover a,
.ext-sidebar-menu.sidebar-widget ul.menu li.current-menu-item a,
.ext-sidebar-menu.sidebar-widget ul.menu li:hover a {
    background: var(--color-primary);
    color: #fff;
}
.download-file {
    background: var(--color-primary);
    color: #fff;
    padding: 25px 25px 20px 20px;
    border-radius: 4px;
}
.download-file ul li a {
    background: #000;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    padding: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.download-file ul li a .text {
    display: inline;
    position: relative;
    margin-right: 3px;
}
.download-file .title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
.widget_getintuch-pro-details .pro-details strong {
    font-weight: 600;
    color: #000;
    font-size: 15px;
}
.widget_getintuch-pro-details {
    background-color: #f5f5f5;
    padding: 30px 30px 0;
}
.widget_getintuch-pro-details .pro-details {
    padding-left: 55px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    color: #000;
    font-size: 15px;
}
.widget_getintuch-pro-details .pro-details i {
    background-color: var(--color-primary);
    height: 40px;
    width: 40px;
    color: #fff;
    border-radius: 50px;
    line-height: 40px;
    font-size: 16px;
    top: 0;
}
.gallery-filters .check-km i {
    font-size: 20px;
    color: #fff;
}
.overlay-icon .check-km i.icon-bx-xs {
    background-color: #fff;
    color: var(--color-hover);
}
.testimonial-1 .testimonial-name {
    color: #737984 !important;
}
.testimonial-1.text-white .testimonial-name,
.testimonial-1.text-white .testimonial-text p {
    color: rgba(255, 255, 255, 0.8) !important;
}
.dlab-box ul li .check-km i {
    color: var(--color-primary);
}
.code-box {
    box-shadow: none;
    margin: 0 0 25px;
    padding: 20px;
    color: #fff;
    background-color: #191f23;
    white-space: pre;
    text-shadow: 0 1px 0 #000;
    border-radius: 5px;
    border-bottom: 1px solid #555;
    max-height: 700px;
}
.code-box.active {
    user-select: all;
}
.footer-box,
.header-box {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 20px 40px 0 40px;
    margin-bottom: 50px;
    background: rgba(0, 0, 0, 0.01);
}
.footer-box .title,
.header-box .title {
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.header-box p {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    opacity: 0.9;
}
#copyButton.btn {
    position: absolute;
    right: 30px;
    top: 15px;
    background: #eee;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 4px 10px;
}
#copyButton.btn.active {
    background: #449cff;
    color: #fff;
}
.project-list {
    margin-bottom: 50px;
}
.project-owbx {
    padding: 20px 20px 15px 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    position: relative;
    margin: 20px 0;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.project-owbx .title {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 28px;
}
.project-owbx i {
    font-size: 50px;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 50px;
    display: inline-block;
}
.active.current .project-owbx {
    background: var(--color-primary);
    box-shadow: 0 0 40px -20px var(--color-primary);
}
.active.current .project-owbx .title,
.active.current .project-owbx i {
    color: #fff;
}
.active.current .project-owbx:after {
    content: "";
    background: var(--color-primary);
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -18px;
    transform: rotate(45deg) translate(-50%);
    left: 50%;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.roboto-condensed h1,
.roboto-condensed h2,
.roboto-condensed h3,
.roboto-condensed h4,
.roboto-condensed h5,
.roboto-condensed h6 {
    font-family: "Roboto Condensed", sans-serif;
}
.box-header.header-transparent .main-bar {
    border: 0;
}
.box-header.site-header .main-bar .container {
    background: #fff;
}
.box-header.header-transparent .extra-nav .site-button-link,
.box-header.header-transparent .header-nav .nav > li > a,
.box-header.header-transparent .navbar-toggler {
    color: #000;
}
.box-header.header-transparent .top-bar {
    padding: 12px 0;
}
.box-header .dlab-topbar-right .site-button-link {
    color: #fff;
    font-size: 14px;
}
.box-header.header-transparent .top-bar {
    border-bottom: 0;
}
.box-header.header-transparent .top-bar.text-black .dlab-topbar-left li a,
.box-header.header-transparent .top-bar.text-black .topbar-social li a.site-button-link {
    color: #000;
}
.box-header.header-transparent .top-bar .dlab-topbar-left li a:hover,
.box-header.header-transparent .top-bar .topbar-social li a.site-button-link:hover {
    color: var(--color-primary);
}
.box-header .extra-nav {
    padding: 0;
    border: 0;
}
.box-header .dlab-topbar-left ul li a {
    font-size: 14px;
}
.box-header .dlab-topbar-right .site-button-link i {
    margin: 0;
}
@media only screen and (min-width: 991px) {
    .box-header .header-nav .nav > li > a {
        padding: 22px 10px 22px 10px;
    }
}
.box-header .header-nav .nav > li > a {
    border: 0;
    font-family: "Roboto Condensed", sans-serif;
}
.box-header .extra-nav .site-button {
    height: 68px;
    display: flex;
    align-items: center;
    margin-right: -16px;
    padding: 0 30px;
    margin-left: 30px;
    position: relative;
    font-family: "Roboto Condensed", sans-serif;
}
.box-header .extra-nav .site-button:after {
    content: "";
    width: 40px;
    height: 100%;
    position: absolute;
    left: -12px;
    background: var(--color-primary);
    transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    top: 0;
    transition: all 0.8s linear;
    -moz-transition: all 0.8s linear;
    -webkit-transition: all 0.8s linear;
    -ms-transition: all 0.8s linear;
    -o-transition: all 0.8s linear;
}
.box-header.header-transparent .is-fixed .main-bar {
    background-color: transparent;
    box-shadow: none;
}
.box-header .extra-nav .site-button:hover:after {
    background: var(--color-hover);
    transition: all 0.8s linear;
}
.box-header.site-header .is-fixed .main-bar .container {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
.about-year {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.const-about .section-head.style2,
.exhibition-bx .section-head {
    margin-bottom: 30px;
}
.about-year span {
    font-size: 85px;
    color: #000;
    font-weight: 600;
    position: relative;
    z-index: 1;
    font-family: "Roboto Condensed", sans-serif;
    border: 5px solid;
    width: 120px;
    height: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-year p {
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    margin-left: 20px;
    color: #000;
    text-transform: uppercase;
}
.list-details li {
    color: #000;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.list-details li:first-child {
    border-top: 0;
}
.list-details {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 430px;
}
.project-slider:after {
    content: "";
    background: #ebebeb;
    height: 100%;
    width: calc(50% - 80px);
    position: absolute;
    top: 0;
    left: 0;
}
.project-slider .about-content {
    max-width: 600px;
    padding-left: 45px;
}
.portbox3 {
    border-radius: 6px;
    margin-bottom: 10px;
}
.portbox1 .portinner,
.portbox3 .overlay-bx {
    transform: scale(0.2);
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
}
.portbox1 .overlay-bx,
.portbox3 .overlay-bx {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.portbox1:hover .portinner,
.portbox3:hover .overlay-bx {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.portbox3 .portinner {
    max-width: 250px;
    width: 250px;
    min-width: 250px;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
.portbox3 .portinner .port-up {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
}
.portbox3 .portinner .port-down {
    background: var(--color-primary);
    position: absolute;
    top: 50px;
    height: 100%;
    width: calc(100% + 20px);
    vertical-align: bottom;
    display: flex;
    align-items: end;
    text-align: center;
    flex-direction: row;
    border-radius: 6px;
    z-index: -1;
    left: -10px;
}
.portbox3 .portinner .port-up span {
    text-transform: uppercase;
    font-weight: 600;
    color: #5e5e5e;
    font-family: Montserrat;
    font-size: 14px;
}
.portbox3 .portinner .port-up .port-title {
    margin-bottom: 0;
}
.portbox3 .portinner .port-down a {
    width: 100%;
    color: #000;
    font-weight: 400;
    font-family: Montserrat;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    padding: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.portbox3 .portinner .port-down a.btn-link:hover i {
    text-decoration: none;
}
.filters2 ul {
    display: flex;
    margin: 0 -10px;
}
.filters2 ul li {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 25%;
    width: 25%;
    margin: 0;
    border: 0;
    padding: 0 10px;
}
.filters2 ul li a i {
    margin-right: 10px;
    color: var(--color-primary);
    font-size: 40px;
    line-height: 40px;
}
.filters2 ul li a {
    width: 100%;
    margin: 0;
    display: flex;
    padding: 12px 10px;
    font-size: 22px;
    color: #000;
    border-bottom: 3px solid #eee;
    align-items: center;
    justify-content: center;
    font-family: "Roboto Condensed", sans-serif;
    position: relative;
}
.filters2 ul li a:after {
    content: "";
    height: 3px;
    background: var(--color-primary);
    width: 0;
    position: absolute;
    bottom: -3px;
    right: -1px;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.filters2 ul li.active a:after,
.filters2 ul li.active a:hover:after {
    width: 100%;
    transform-origin: right;
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    right: auto;
    left: 0;
}
.project-info-box {
    position: relative;
}
.project-info-box .project-content {
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    padding: 40px 50px;
    width: 500px;
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    opacity: 0;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.active .project-info-box .project-content {
    opacity: 1;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.project-carousel-1 .owl-nav {
    display: flex;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.project-carousel-1 .owl-next,
.project-carousel-1 .owl-prev {
    padding: 0;
    background: 0 0;
    font-family: Oswald, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    letter-spacing: 5px;
    margin: 0 15px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.project-carousel-1 .owl-next i,
.project-carousel-1 .owl-prev i {
    font-size: 22px;
}
.section-head.style2 .title {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 10px;
}
.section-head.style2 p {
    padding-top: 0;
    font-size: 15px;
    line-height: 26px;
}
.sr-iconbox .dlab-tilte {
    font-weight: 600;
    margin-bottom: 10px;
}
.sr-iconbox.style2 {
    padding: 20px;
    transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
}
.sr-iconbox.style2:hover {
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
.img-ho1 {
    position: relative;
    z-index: 1;
}
.img-ho1:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: 20px solid;
    z-index: -1;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    -webkit-transition: all 0.8s;
}
.img-ho1:hover:after {
    right: -15px;
    top: -15px;
}
.img-ho1 img {
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    -webkit-transition: all 0.8s;
}
.img-ho1:hover img {
    transform: translate(-15px, 15px);
    -moz-transform: translate(-15px, 15px);
    -ms-transform: translate(-15px, 15px);
    -webkit-transform: translate(-15px, 15px);
    -o-transform: translate(-15px, 15px);
}
.service-box-3 .dlab-info {
    position: absolute;
    bottom: -25px;
    width: calc(100% - 40px);
    left: 20px;
    z-index: 1;
}
.service-box-3 .title {
    background-color: var(--color-primary);
    margin-top: 0;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    padding: 12px 50px 12px 30px;
    position: relative;
    font-weight: 500;
    margin-bottom: 0;
}
.service-box-3 .title a {
    color: #fff;
}
.service-box-3 .title:after {
    content: "\f105";
    width: 40px;
    height: 40px;
    background: #fff;
    position: absolute;
    right: 6px;
    color: #000;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    line-height: 40px;
    font-family: FontAwesome;
}
.service-box.style4 .title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 32px;
}
.service-box.style4 {
    background: #fff;
    padding: 30px 50px 40px 50px;
    border-radius: 4px;
    text-align: center;
}
.service-box.style4 .no {
    background-color: #eee;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    color: #000;
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.service-box.style4:hover .no {
    background-color: var(--color-primary);
    color: #fff;
}
.our-team .social-list li {
    display: inline-block;
    font-size: 16px;
    margin: 0 2px;
}
.our-team .social-list {
    padding: 0;
    margin: 10px 0 0;
}
.our-team .team-title-bx {
    margin-top: 20px;
}
.our-team .title {
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 35px;
}
.exhibition-carousel:after {
    content: "";
    position: absolute;
    width: calc(100% - 70px);
    height: 100%;
    right: 0;
    top: 0;
    background-color: #f8991d;
    z-index: -1;
}
.exhibition-carousel {
    padding: 20px 50px 20px 0;
    position: relative;
    z-index: 1;
}
.exhibition-carousel .owl-dots {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.exhibition-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 20px;
    margin: 10px 0;
}
.exhibition-carousel .owl-dot.active {
    background: var(--color-primary);
}
.exhibition-bx .title {
    font-size: 50px;
    line-height: 58px;
}
.portbox1 {
    transition: all 0.5s;
    transform: scale(1);
}
.portbox1 > img {
    transform: scale(1.05);
    transition: all 0.5s;
}
.portbox1 .overlay-bx {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.portbox1 .portinner {
    transform: scale(0.2);
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
}
.portbox1.style1 .overlay-bx .port-title {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 15px;
}
.portbox1.style1 .portinner span {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 5px;
    font-weight: 500;
}
.portbox1 .overlay-bx span {
    display: block;
    margin-bottom: 10px;
}
.portbox1 .overlay-bx .port-title a {
    color: #fff;
}
.portbox1:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.2);
}
.portbox1:hover > img {
    transform: scale(1);
}
.portbox1:hover .portinner {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.latest-project-info {
    padding: 100px 130px;
}
.latest-project-info h2 {
    font-size: 50px;
    line-height: 60px;
}
.latest-project-info p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}
.sr-iconbox1 {
    padding: 50px 30px;
    background: #fff;
    text-align: center;
    border-radius: 4px;
}
.sr-iconbox1 .dlab-tilte {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 32px;
}
.sr-iconbox1 p {
    color: #000;
    font-size: 15px;
    opacity: 0.7;
}
.sr-iconbox1 .icon-lg {
    position: relative;
    z-index: 1;
}
.sr-iconbox1 .icon-lg:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #f28237;
    position: absolute;
    left: 0;
    z-index: -1;
    border-radius: 10px 10px 10px 10px;
    transform: scale(1.3) rotate(15deg);
    opacity: 0.05;
}
@media only screen and (max-width: 1024px) {
    .service-box.style2 {
        padding: 30px;
    }
    .service-box.style2 .title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 15px;
    }
    .team-box-type .team-p-info li {
        font-size: 14px;
    }
    .team-box-type .team-mamber-img {
        width: 40%;
    }
    .team-box-type p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 5px;
    }
    .team-box-type .team-info-box ul {
        margin: 10px 0;
    }
    .team-box-type .team-info-box h4.dlab-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .team-box-type .team-info-box {
        padding: 10px 15px;
    }
    .about-progress .max-w700,
    .box-about-list .max-w700 {
        padding: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .our-story h2.title {
        font-size: 36px;
        line-height: 46px;
    }
    .our-story h4.title {
        font-size: 20px;
        line-height: 30px;
    }
    .call-action .title,
    .call-action p,
    .call-action.style1 .title {
        text-align: center;
    }
    .call-action .site-button,
    .call-action.style1 .site-button {
        margin: 10px auto 0;
    }
    .team-box-type .team-info-box {
        padding: 10px 30px;
    }
    .team-box-type .team-info-box h4.dlab-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .about-progress .max-w700,
    .box-about-list .max-w700 {
        padding: 40px 0;
    }
    .our-story-thum {
        display: none;
    }
    .inquiry-form.contact-project {
        height: auto;
        margin-bottom: 20px;
    }
    .chosesus-content {
        padding-top: 50px;
    }
    .choses-info-content [class*="col-"] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .inquiry-form.inner {
        padding: 30px;
    }
    .dz_error-405 .text-center {
        text-align: left !important;
    }
    .dz_error-404-area {
        display: table-cell !important;
    }
    .dlab-bnr-inr h1 {
        margin-bottom: 10px;
    }
    .dlab-bnr-inr.dlab-bnr-inr-sm .dlab-bnr-inr-entry {
        padding-top: 160px;
    }
}
@media only screen and (max-width: 767px) {
    .service-info .title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    .team-info-box,
    .team-mamber-img {
        display: table-cell;
    }
    .team-box-type .team-info-box h4.dlab-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .team-box-type .team-info-box {
        padding: 15px 20px;
    }
    .dlab-bnr-inr.dlab-bnr-inr-sm .dlab-bnr-inr-entry {
        height: 250px;
        padding-top: 65px;
    }
    .pricingtable-wrapper.style2 .pricingtable-bx {
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .about-progress .max-w700,
    .box-about-list .max-w700 {
        padding: 30px;
    }
    .dz_error-404 .dz_error {
        margin: 0;
    }
    .dlab-tabs.vertical .tab-pane {
        padding-left: 20px;
    }
}
@media only screen and (max-width: 360px) {
    .service-box.style2 .title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .site-footer.style1 .footer-bottom-in .footer-bottom-logo a img {
        height: 30px;
    }
    .site-footer.style1 .footer-bottom-in .dlab-social-icon li a {
        width: 40px;
        height: 50px;
        font-size: 15px;
        line-height: 50px;
    }
    .site-footer.style1 .footer-top {
        padding: 50px 0 25px 0;
    }
    .site-footer.style1 .footer-title {
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    .site-footer.style1 .widget_subscribe .input-group .form-control {
        height: 50px;
        padding: 10px 20px;
    }
    .site-footer.style1 .widget_subscribe .input-group .input-group-addon .site-button {
        height: 50px;
        font-size: 14px;
        padding: 12px 20px;
    }
    .our-story h2.title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    .our-story > span {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .call-action .title,
    .call-action.style1 .title {
        font-size: 20px;
        line-height: 30px;
    }
    .call-action p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .section-head .title {
        font-size: 28px;
        line-height: 38px;
    }
    .section-head p {
        line-height: 26px;
    }
    .testimonial-8 .testimonial-text {
        padding: 20px;
    }
    .dlab-tabs .tab-content p,
    .testimonial-8 .testimonial-text p {
        font-size: 14px;
        line-height: 26px;
    }
    .testimonial-8 .testimonial-pic {
        margin-right: 10px;
        width: 70px;
        height: 70px;
    }
    .testimonial-8 .testimonial-name {
        padding-top: 10px;
    }
    .home-slider.style1 .title {
        font-size: 24px;
        line-height: 34px;
        margin: 0 auto 10px;
    }
    .home-slider.style1 p,
    .pricingtable-wrapper.style2 p {
        font-size: 14px;
    }
    .dlab-bnr-inr.dlab-bnr-inr-md.home-banner1 {
        height: 450px;
    }
    .team-box-type .team-mamber-img {
        width: 100%;
        display: unset;
    }
    .video-infobx h2.title {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 34px;
    }
    .dlab-bnr-inr {
        height: 180px;
    }
    .box-about-list h2 {
        font-size: 24px;
        line-height: 38px;
    }
    .box-about-list .icon-bx-wraper {
        padding: 20px;
    }
    .box-about-list .icon-bx-wraper h4.dlab-tilte {
        font-size: 18px;
        line-height: 28px;
    }
    .about-progress .max-w700 {
        padding: 30px 0 10px;
    }
    .chosesus-content h3 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 30px;
    }
    .about-8-service .section-head .title-box {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    .service-main-title .title {
        font-size: 22px;
    }
    .dz_error-405 .dz_error {
        font-size: 100px;
        line-height: 100px;
    }
    .dz_error-405 .text-center {
        margin-bottom: 15px;
    }
    .dz_error-405 .error-content,
    .inner-text p,
    .inner-text ul li,
    .testimonial-1 .testimonial-text p,
    blockquote {
        font-size: 16px;
        line-height: 28px;
    }
    .testimonial-1 .testimonial-name {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .testimonial-10 .testimonial-pic {
        height: 100px;
        width: 100px;
    }
    .testimonial-10 {
        padding-left: 120px;
    }
    .dlab-tabs .nav-tabs > li > a .title-head {
        display: none;
    }
    .dlab-tabs.vertical .nav-tabs {
        width: 60px;
    }
    .dlab-tabs.vertical .tab-content {
        margin-left: 59px;
    }
    .dlab-tabs.vertical.right .tab-content {
        margin-right: 59px;
    }
    .sort-title {
        margin-bottom: 25px;
    }
    .add-box h2,
    .item-add.add-style-2 h2,
    .item-add.add-style-3 h2 {
        font-size: 24px;
        line-height: 34px;
    }
    .item-add .add-box h5,
    .item-add.add-style-2 h5,
    .item-add.add-style-3 h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }
}
.frame-box {
    background-image: url(../images/background/bg12.jpg);
    background-attachment: unset !important;
}
.area-frame {
    margin-bottom: 100px;
}
.frame-box .site-footer,
.frame-box h1,
.frame-box h2,
.frame-box h3,
.frame-box h4,
.frame-box h5,
.frame-box h6 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
}
.frame-box p {
    font-family: Poppins, sans-serif;
}
.frame-box .area-frame .container {
    background: #fff;
    position: relative;
    padding: 30px;
}
.frame-box .area-frame .container:after {
    content: "";
    background-image: url(../images/background/border-bg-top.png), url(../images/background/border-bg-bottom.png), url(../images/background/border-bg-left.png), url(../images/background/border-bg-right.png);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-position: top, bottom, left, right;
    height: calc(100% + 44px);
    position: absolute;
    width: calc(100% + 44px);
    left: -22px;
    top: -22px;
    z-index: -1;
    display: block;
}
.frame-box .page-wraper {
    background: rgba(0, 0, 0, 0);
}
.frame-box .page-content {
    padding-bottom: 0;
}
.frame-box .icon-bx-xs {
    background: #fff;
}
.frame-box .site-header.center .container > .logo-header {
    position: absolute;
    transform: translate(-50%);
    -moz-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    position: absolute;
    left: 50%;
    text-align: center;
    top: 25px;
    z-index: 1;
}
.frame-box .site-header.center .logo-header a {
    display: block;
}
.frame-box .header-nav .nav > li:hover > a {
    background-color: var(--color-primary);
    color: #fff !important;
}
.frame-box .header-nav .nav > li.active > a,
.frame-box .header-nav .nav > li > a:hover {
    background-color: var(--color-secondry);
}
.frame-box .header-nav .nav > li > a {
    color: #fff;
    font-size: 15px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    background: var(--color-primary);
    margin: 0 2px;
    border-radius: 4px;
    font-family: "Roboto Condensed", sans-serif;
}
.frame-box .main-bar {
    width: 100%;
    position: relative;
    padding: 65px 0;
    background-color: rgba(0, 0, 0, 0);
}
.frame-box .top-bar {
    position: relative;
    background: #fff;
    font-size: 15px;
    padding: 8px 0 2px 0;
}
.frame-box .top-bar:after {
    content: "";
    background-image: url(../images/background/border-bg-bottom.png);
    position: absolute;
    bottom: -22px;
    width: 100%;
    height: 22px;
    left: 0;
}
.frame-box .topbar-social ul {
    display: inline-block;
}
.frame-box .topbar-social li a {
    color: #fff;
}
.frame-box .is-fixed .main-bar {
    position: fixed;
    top: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 10px 0;
}
.frame-box .site-header.center .is-fixed .container > .logo-header {
    background: var(--color-primary);
    padding: 8px 15px 8px;
    top: 0;
    height: 90px;
    width: 125px;
    border-radius: 0 0 15px 15px;
}
.frame-box .header-nav .nav > li.active > a:after,
.frame-box .header-nav .nav > li:hover > a:after {
    content: none;
}
.frame-box .header-nav .logo-header,
.frame-box .is-fixed .logo-header .logo1,
.frame-box .logo-header .logo2 {
    display: none;
}
.frame-box .site-header .main-bar .container {
    position: static;
}
.frame-box .is-fixed .logo-header .logo2,
.frame-box .logo-footer > a {
    display: block;
}
.frame-box .site-header.center .logo-header img {
    height: auto;
    position: relative;
    width: 100%;
    z-index: 2;
}
.frame-box .site-header.center .is-fixed .container > .logo-header img {
    height: auto;
    width: 100%;
}
.frame-box .logo-header {
    width: 150px;
    height: 150px;
}
.frame-box .slide-content-box .slider-title {
    font-size: 50px;
    color: #fff;
    line-height: 64px;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.frame-box .slide-content-box p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #fff;
    margin: 0 auto;
    line-height: 30px;
}
.frame-box .slide-content-area {
    max-width: 650px;
    padding-left: 100px;
}
.frame-box .slide-content-box {
    position: relative;
    top: 50%;
    text-align: left;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all 1s ease 0.5s;
    -webkit-transition: all 1s ease 0.5s;
    -o-transition: all 1s ease 0.5s;
    -moz-transition: all 1s ease 0.5s;
}
.frame-box .owl-slider.owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-primary);
}
.frame-box .owl-slider.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: 0 0;
    border: 3px solid #fff;
    margin: 5px 5px;
}
.frame-box .owl-slider.owl-theme .owl-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}
.frame-box .owl-slider {
    overflow: hidden;
    border-radius: 6px;
}
.frame-box .about-box {
    padding: 10px;
    border: 2px dashed;
    border-radius: 14px;
    background: #fff;
}
.frame-box .about-bx strong {
    font-weight: 700;
    text-transform: uppercase;
}
.frame-box .project-bx {
    background-image: url(../images/pattern/pt1.jpg);
    padding: 10px;
    border-radius: 10px;
    height: 100%;
}
.frame-box .project-bx .media {
    overflow: hidden;
    border-radius: 8px;
}
.frame-box .project-bx .info .title {
    font-weight: 600;
    margin: 0;
}
.frame-box .project-bx .info {
    padding: 10px 20px 5px 15px;
}
.frame-box .project-bx .info .title a {
    color: var(--color-primary);
}
.frame-box .owl-project .owl-stage {
    display: flex;
    flex-wrap: wrap;
}
.frame-box .owl-project .owl-stage .item {
    height: 100%;
}
.frame-box .service-list li:after {
    content: "\f00c";
    font-family: FontAwesome;
    background-color: var(--color-primary);
    width: 45px;
    height: 45px;
    color: #fff;
    position: absolute;
    text-align: center;
    line-height: 45px;
    border-radius: 45px;
    left: 0;
    top: 15px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.frame-box .service-list li:hover:after {
    background-color: var(--color-hover);
}
.frame-box .service-list li {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    padding-left: 60px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 78px;
    display: flex;
    align-items: center;
}
.frame-box .testimonial-text p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    color: #6c6979;
    line-height: 40px;
}
.frame-box .item .testimonial-1 .testimonial-position {
    color: var(--color-primary);
    font-family: "Roboto Condensed", sans-serif;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 300;
}
.frame-box .testimonial-1 .testimonial-name {
    font-family: "Roboto Condensed", sans-serif;
    color: #000;
    font-size: 21px;
    margin-top: 5px;
}
.frame-box .client-carousel .owl-nav .owl-prev {
    left: 70px;
}
.frame-box .client-carousel .owl-nav .owl-next {
    right: 70px;
}
.frame-box .gallery {
    margin: 0;
    padding: 0;
    list-style: none;
}
.frame-box .gallery .dlab-box {
    overflow: hidden;
    border-radius: 8px;
}
.frame-box .gallery.video-gallery .dlab-box .overlay-bx {
    visibility: visible;
    opacity: 1;
}
.frame-box .gallery.video-gallery .dlab-box .overlay-bx i {
    background: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 35px;
    padding: 0 0 0 4px;
}
.frame-box .gallery-bx > div:last-child {
    padding-left: 30px;
}
.frame-box .gallery-bx > div:first-child {
    padding-right: 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.frame-box .ft-contact {
    background-color: transparent;
    display: block;
}
.frame-box .footer-top {
    background: #282828;
    background-size: cover;
    background-position: center;
    padding: 80px 0 30px;
    position: relative;
}
.frame-box .footer-top:after {
    content: "";
    background-image: url(../images/background/border-bg-dark-top.png);
    position: absolute;
    top: -22px;
    width: 100%;
    height: 22px;
    left: 0;
}
.frame-box .footer-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #fff;
    padding-bottom: 15px;
    position: relative;
}
.frame-box .footer-title:after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
}
.frame-box .widget_getintuch i {
    position: absolute;
    left: 0;
    top: 5px;
    text-align: center;
    font-size: 18px;
    width: 40px;
    height: 40px;
    background: #363636;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    line-height: 38px;
    color: #fff;
}
.frame-box .ft-social li {
    display: inline-block;
}
.frame-box .ft-contact li {
    color: #fff;
    padding: 5px 0;
}
.frame-box .footer-bottom {
    background-color: #282828;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.frame-box footer .footer-bottom,
.frame-box footer li,
.frame-box footer p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}
.frame-box footer a,
.frame-box footer a:visited,
.frame-box footer ul span {
    color: #aaa;
}
.frame-box .ft-social .site-button {
    color: #fff;
}
.frame-box .widget_getintuch li {
    margin-bottom: 20px;
    position: relative;
    line-height: 28px;
    padding-left: 55px;
}
.header-white-transparent {
    background-color: rgba(255, 255, 255, 0.3);
}
.cargo-banner {
    height: 100vh;
    text-align: left;
}
.cargo-banner .title {
    font-size: 55px;
    font-weight: 600;
    line-height: 70px;
    margin-bottom: 30px;
}
.cargo-banner .dlab-bnr-inr-entry {
    display: table-cell;
    vertical-align: bottom;
}
.banner-form {
    border-bottom: 5px solid rgba(255, 255, 255, 0.3);
}
.banner-form .bootstrap-select .dropdown-toggle,
.banner-form .form-control,
.banner-form .site-button {
    border-radius: 4px;
    height: 55px;
    padding: 14px 20px;
    font-size: 15px;
}
.banner-form .bootstrap-select.btn-group .dropdown-toggle .caret {
    font-size: 15px;
    top: 22px;
    right: 20px;
}
.cargo-banner .bottom-link {
    padding: 25px 0 60px 0;
}
.cargo-banner .bottom-link h4 {
    margin-bottom: 0;
    font-weight: 500;
}
.service-box.style5 {
    background-color: #fff;
}
.service-box.style5 .icon-content {
    padding: 20px 30px;
    display: flex;
    align-items: center;
}
.service-box.style5 .dlab-tilte {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 0;
}
.service-box.style5 .icon-content .link-btn {
    background-color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    max-width: 50px;
    min-width: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    margin-left: auto;
}
.service-box.style6 .icon-bx {
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}
.service-box.style6 .icon-bx:after {
    height: 100%;
    content: "";
    width: 100%;
    right: -10px;
    bottom: 0;
    position: absolute;
    z-index: -1;
    transform: skew(19deg);
}
.service-box.style6 .icon-bx.bg-primary:after {
    background-color: var(--color-primary);
}
.service-box.style6 .icon-bx.icon-bx-sm {
    width: 60px;
    height: 60px;
    line-height: 65px;
    text-align: center;
}
.service-box.style6 .dlab-tilte {
    margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
    .cargo-banner .title {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 30px;
    }
    .cargo-banner .bottom-link {
        padding: 30px 0;
    }
    .service-box.style5 .icon-content {
        padding: 30px;
    }
    .service-box.style5 h2.dlab-tilte {
        font-size: 24px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 991px) {
    .cargo-banner .title {
        font-size: 40px;
        line-height: 50px;
    }
    .banner-form .bootstrap-select .dropdown-toggle,
    .banner-form .form-control,
    .banner-form .site-button {
        height: 50px;
        padding: 10px 15px;
        font-size: 16px;
    }
    .banner-form {
        padding-bottom: 10px;
    }
    .cargo-banner .bottom-link {
        padding: 20px 0;
    }
    .cargo-banner .dlab-bnr-inr-entry {
        padding-bottom: 0;
    }
    .filters2 ul li a i {
        font-size: 30px;
        line-height: 30px;
    }
    .filters2 ul li a {
        font-size: 18px;
    }
    .filters2 ul {
        display: flex;
        flex-wrap: wrap;
    }
    .filters2 ul li {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;
        min-width: 50%;
    }
}
@media only screen and (max-width: 767px) {
    .portbox3:hover .overlay-bx {
        padding: 20px;
    }
    .portbox3 .portinner .port-up h3.port-title {
        font-size: 18px;
        line-height: 28px;
    }
    .portbox3 .portinner .port-up span {
        font-size: 12px;
    }
}
@media only screen and (max-width: 591px) {
    .cargo-banner .title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .cargo-banner .bottom-link h4 {
        font-size: 16px;
    }
    .cargo-banner .bottom-link {
        padding: 15px 0;
    }
    .cargo-banner .banner-form .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .cargo-banner .banner-form [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
    .form-group {
        margin-bottom: 10px;
    }
    .service-box.style5 h2.dlab-tilte {
        font-size: 22px;
        line-height: 32px;
    }
    .service-box.style5 .icon-content {
        padding: 25px;
    }
}
.header-curve.ext-header .middle-bar.bg-dark .service-list ul li .title {
    color: #fff;
}
.header-curve.ext-header .extra-nav:after,
.header-curve.ext-header .extra-nav:before,
.header-curve.ext-header .logo-header:after,
.header-curve.ext-header .logo-header:before,
.social-curve:after,
.social-curve:before {
    background-color: var(--color-primary);
}
.header-curve.ext-header .logo-header:before {
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    right: -140px;
    width: 100%;
}
.header-curve.ext-header .middle-bar {
    padding: 0;
    border-bottom: 0;
}
.header-curve.ext-header .middle-bar .logo-header {
    padding: 20px 0;
}
.header-curve.ext-header .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
}
.header-curve.ext-header .extra-nav {
    position: relative;
    width: 20%;
    top: 1px;
}
.header-curve.ext-header .extra-nav:before,
.social-curve:before {
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
}
.header-curve.ext-header .extra-nav:after,
.header-curve.ext-header .extra-nav:before,
.social-curve:after,
.social-curve:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    z-index: -1;
}
.header-curve.ext-header .extra-nav:before {
    width: 100%;
    left: -25px;
}
.header-curve.ext-header .extra-nav:after {
    width: 100%;
    right: -50px;
}
.header-curve.ext-header .extra-nav .site-button-link {
    color: #fff;
    font-size: 14px;
}
.header-curve.ext-header .header-nav .nav > li.active > a,
.header-curve.ext-header .header-nav .nav > li.current-menu-item > a {
    background-color: transparent;
}
.social-curve {
    position: relative;
    padding: 20px 30px;
    width: 100%;
    margin: 0 0 -15px;
}
.social-curve:before {
    width: 100%;
    left: -50%;
    z-index: 0;
}
.social-curve .social-icon li a {
    color: #fff !important;
    font-size: 18px;
}
.social-curve .social-icon {
    z-index: 99;
    position: relative;
}
.social-curve .social-icon .title {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.header-curve.ext-header.style2 .logo-header:after,
.header-curve.ext-header.style2 .logo-header:before {
    content: unset;
}
.header-curve.ext-header.style2 .extra-nav {
    height: 65px;
    top: 0;
    transform: unset;
}
.header-curve.ext-header.style2 .extra-nav:before {
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
}
.header-curve.ext-header.style2.white .header-nav .nav > li.active > a {
    color: var(--color-primary) !important;
}
.slider-tabs .slider-box {
    position: relative;
}
.slider-tabs .slider-box .slider-content p {
    color: #fff;
    font-size: 18px;
    font-family: Teko, sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 30px;
    margin-bottom: 35px;
    max-width: 700px;
}
.slider-box .slider-content {
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    width: 1170px;
    transform: translate(-50%, -50%);
}
.slider-tabs .slider-box .slider-content .title {
    font-size: 70px;
    font-family: Teko, sans-serif;
    line-height: 70px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}
.slider-tabs .slide-tabs {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 10px;
}
.slider-tabs .dlab-thum-bx img {
    height: 100vh;
    object-fit: cover;
}
.slider-tabs .tab-box .content-box .title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.slider-tabs .tab-box .content-box p {
    color: #000;
    margin-bottom: 0;
    opacity: 0.85;
    font-weight: 400;
    font-size: 14px;
}
.slider-tabs .tab-box .icon-box i {
    font-size: 35px;
    line-height: 35px;
    color: #000;
}
.slider-tabs .tab-box {
    position: relative;
    padding: 15px 15px 15px 80px;
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    cursor: pointer;
}
.slider-tabs .tab-box .icon-box {
    position: absolute;
    left: 20px;
    top: 25px;
}
.slider-tabs .owl-item.current.active .tab-box {
    background: var(--color-primary);
    color: #000;
}
.slider-tabs .owl-item.current.active .tab-box .content-box .title,
.slider-tabs .owl-item.current.active .tab-box .content-box p,
.slider-tabs .owl-item.current.active .tab-box .icon-box i {
    color: #fff;
}
.service-box-4 .service-images {
    position: relative;
    padding: 20px 20px 0;
}
.service-box-4 .service-images img {
    width: 220px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px 0;
    border-radius: 500px;
    border-width: 10px;
    border-style: solid;
    border-color: #fff;
    border-image: initial;
    transition: all 0.5s ease 0s;
}
.service-box-4:hover .service-images img {
    border-width: 10px;
    border-style: solid;
    border-color: var(--color-primary);
    border-image: initial;
}
.service-box-4 .service-images i {
    font-size: 40px;
    width: 70px;
    height: 70px;
    border-radius: 40px;
    position: absolute;
    bottom: 10px;
    line-height: 70px;
    right: 10px;
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.service-box-4 .service-content .title {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 5px;
}
.section-head.style1 .title {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    font-family: poppins;
    color: #000;
}
.about-info1 p,
.section-head.style1 p {
    color: #768492;
    line-height: 28px;
    font-size: 16px;
}
.latest-project-info.style1 {
    padding: 70px 70px 10px;
}
.latest-project-info.style1 .list-check li p {
    font-size: 16px;
}
.latest-project-info.style1 .list-check li:before {
    top: 20px;
}
.video-bx.radius-no {
    border-radius: 0;
}
.dlab-services-box {
    padding: 50px;
}
.service-year {
    font-size: 130px;
    line-height: 140px;
    font-weight: 600;
    margin-bottom: 0;
}
.service-year small {
    font-size: 22px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: 600;
}
.request-form {
    margin-top: -178px;
}
.request-form form {
    background-color: #fff;
    padding: 30px 30px 20px;
    box-shadow: 0 0 41px 5px rgba(0, 0, 0, 0.1);
}
.request-form .request-form-header {
    background-color: var(--color-primary);
    padding: 20px 50px 20px 100px;
    position: relative;
}
.request-form .request-form-header i {
    position: absolute;
    left: 30px;
    font-size: 45px;
    top: 14px;
    color: #fff;
}
.request-form .request-form-header p {
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
}
.request-form .request-form-header h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
    line-height: 30px;
}
.request-form label {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    color: #606060;
    top: 5px;
    left: 0;
    transition: all 0.5s;
    font-family: Poppins, sans-serif;
    text-transform: capitalize;
}
.request-form .form-control {
    background-color: transparent;
    border-width: 0;
    border-bottom-color: #771cb8;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    position: relative;
    padding: 15px 0;
}
.request-form .input-group:after {
    width: 100%;
    height: 2px;
    content: "";
    border-radius: 0;
    box-shadow: none;
    bottom: 0;
    background: var(--color-primary);
    display: block;
}
.request-form .focused label {
    font-size: 12px;
    top: -10px;
    left: 0;
    color: #707070;
}
.dlab-box.project-bx.dlab-team2 .dlab-info.bg-dark {
    background-color: #1f0404;
}
.dlab-box.project-bx.dlab-team2 .dlab-info.bg-dark .dlab-title a {
    color: #fff;
}
.header-sidenav .full-sidenav {
    position: fixed;
    right: -300px;
    width: 300px;
    top: 0;
    z-index: 999988;
    background: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    left: auto;
}
.header-sidenav .full-sidenav .mCSB_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}
.header-sidenav .full-sidenav.active {
    right: 0;
}
.header-sidenav .full-sidenav .nav {
    margin-bottom: auto;
}
.header-sidenav .header-nav.full-sidenav .nav > li > a {
    color: #000;
}
.header-sidenav .header-nav.full-sidenav .nav > li > a:after {
    content: none;
}
.header-sidenav .header-nav.full-sidenav .logo-header,
.header-sidenav .header-nav.full-sidenav .nav,
.header-sidenav .header-nav.full-sidenav .social-menu {
    float: none;
    width: 100%;
}
.header-sidenav .header-nav.full-sidenav .logo-header {
    height: auto;
    padding: 50px 40px 30px 40px;
}
.header-sidenav.header-nav.full-sidenav .logo-header a {
    width: 170px;
    display: block;
}
.header-sidenav .header-nav.full-sidenav .nav > li:hover > .mega-menu,
.header-sidenav .header-nav.full-sidenav .nav > li:hover > .sub-menu,
.header-sidenav .header-nav.full-sidenav .nav > li > .mega-menu,
.header-sidenav .header-nav.full-sidenav .nav > li > .sub-menu {
    opacity: 1;
    visibility: visible;
    position: unset;
}
.header-sidenav .header-nav.full-sidenav .nav > li > .mega-menu,
.header-sidenav .header-nav.full-sidenav .nav > li > .sub-menu {
    box-shadow: none;
    -webkit-transition: unset;
    -moz-transition: unset;
    -ms-transition: unset;
    -o-transition: unset;
    transition: unset;
}
.header-sidenav .header-nav .nav > li .sub-menu {
    width: 100%;
    padding: 0;
}
.header-sidenav .header-nav .nav > li .sub-menu li a {
    color: #8799a3;
    padding: 10px 40px;
}
.header-sidenav .header-nav .nav > li > a {
    padding: 12px 40px;
    width: 100%;
    font-size: 18px;
}
.header-sidenav .social-menu {
    padding: 40px;
}
.header-sidenav .social-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 15px;
}
.header-sidenav .social-menu .copyright-head {
    margin-bottom: 0;
    color: #ccc;
}
.header-sidenav .social-menu ul li {
    display: inline-block;
}
.header-sidenav .social-menu ul li a {
    color: #bbc7cd;
    font-size: 18px;
    padding-right: 15px;
}
.header-sidenav .social-menu ul li a:hover {
    color: #8799a3;
}
.header-sidenav .header-nav.full-sidenav .mCustomScrollBox {
    width: 100%;
}
.header-sidenav .menu-close i {
    color: #fff;
    font-size: 24px;
    position: absolute;
    right: 320px;
    top: 20px;
}
.header-sidenav .menu-close {
    position: fixed;
    height: 100vh;
    width: 0;
    background: #3a3a3a;
    top: 0;
    right: 0;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    filter: blur(300px);
    cursor: pointer;
    overflow: hidden;
    z-index: 9999;
}
.header-sidenav .menu-close.active {
    width: 100%;
    opacity: 0.8;
    filter: blur(0);
}
.header-sidenav .header-transparent .is-fixed .main-bar {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
}
.header-sidenav .header-full .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
.header-sidenav .site-header ul,
.site-header ol {
    margin-bottom: 0;
    list-style: none;
}
.header-sidenav .extra-nav ul li {
    list-style: none;
}
.header-sidenav .extra-nav,
.header-sidenav .is-fixed .extra-nav {
    background-color: var(--color-primary);
    margin: 0;
    padding: 0;
}
.header-sidenav .extra-nav .extra-cell {
    margin: 0;
}
.header-sidenav .menu-icon {
    padding: 0;
    width: 70px;
    height: 71px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-sidenav .menu-icon-in {
    width: 30px;
    height: 22px;
    position: relative;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: inline-block;
}
.header-sidenav .menu-icon-in span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    background-color: #fff;
    border-radius: 10px;
}
.header-sidenav .menu-icon-in span:nth-child(1) {
    top: 0;
    width: 60%;
}
.header-sidenav .menu-icon-in span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.header-sidenav .menu-icon-in span:nth-child(3) {
    bottom: 0;
    width: 85%;
}
.header-sidenav .menu-icon:hover .menu-icon-in span:nth-child(1),
.header-sidenav .menu-icon:hover .menu-icon-in span:nth-child(2),
.header-sidenav .menu-icon:hover .menu-icon-in span:nth-child(3) {
    width: 100%;
}
.header-sidenav.header-transparent .main-bar {
    background-color: transparent;
    border: 0;
}
.header-sidenav.header-transparent .is-fixed .main-bar {
    background-color: rgba(0, 0, 0, 0.9);
}
.header-sidenav .header-nav.full-sidenav .nav > li > a.scroll.active {
    color: var(--color-primary);
}
.dlab-team3 {
    background: #fff;
    padding: 10px 10px;
    border-radius: 4px;
}
.dlab-team3 .dlab-info {
    text-align: center;
    padding: 20px 0;
}
.dlab-team3 .dlab-info .dlab-title {
    font-size: 18px;
    margin-bottom: 5px;
}
.dlab-team3 .dlab-info .dlab-position {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
    opacity: 0.3;
    margin-bottom: 10px;
}
.dlab-team3 .dlab-info .dlab-social-icon li a {
    width: 30px;
    height: 30px;
    background: #000;
    font-size: 12px;
    line-height: 30px;
    padding: 0;
    border: 0;
    border-radius: 40px;
    color: #fff;
}
.dlab-team11 .dlab-media {
    width: 240px;
    height: 240px;
    margin: auto;
    border-radius: 240px;
    overflow: hidden;
    padding: 10px;
    border: 2px dashed;
}
.dlab-team11 .dlab-info {
    background: var(--color-primary);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
}
.dlab-team11 .dlab-media img {
    border-radius: 100%;
}
.dlab-team11 .dlab-title {
    margin: 0;
}
.dlab-team11 .dlab-title a {
    color: #fff;
}
.dlab-team11 .dlab-position {
    color: #fff;
    text-transform: capitalize;
}
.dlab-team11-area.dots-theme.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: 0 0;
    border: 3px solid #bcbcbc;
    margin: 5px 5px;
}
.dlab-team11-area.dots-theme.owl-theme .owl-dots .owl-dot.active span {
    border: 3px solid var(--color-primary);
}
.testimonial-1.testimonial-box {
    background: #fff;
    text-align: left;
    padding: 20px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}
.testimonial-1.testimonial-box .testimonial-detail {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 30px 4px 30px;
    margin: 20px -30px 0 -30px;
    position: relative;
}
.testimonial-1.testimonial-box .review li {
    display: inline-block;
    color: #ffc000;
}
.testimonial-1.testimonial-box .testimonial-text {
    padding: 0;
}
.testimonial-1.testimonial-box .testimonial-text p {
    font-size: 16px;
    line-height: 28px;
}
.testimonial-1.testimonial-box .review {
    top: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    right: 30px;
}
.testimonial-1.testimonial-box .testimonial-name {
    font-size: 22px;
    color: #000 !important;
    margin-bottom: 5px;
}
.hex-box .hex {
    fill: transparent;
    stroke: var(--color-primary);
    stroke-width: 3;
}
.hex-box .icon-box {
    position: relative;
}
.hex-box .icon-box i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    height: 70px;
}
.btn.youtube.outline {
    color: #ce201f;
}
.h100 {
    height: 100%;
}
.header-nav .nav > li.homedemo .mega-menu {
    display: flex;
    flex-wrap: wrap;
    overflow-y: scroll;
    border-radius: 0;
}
.header-nav .nav > li.homedemo .mega-menu > li {
    flex: 0 0 20%;
    max-width: 25%;
}
.header-nav .nav > li.homedemo .mega-menu > li:after {
    content: none;
}
.header-nav .nav > li.homedemo .mega-menu > li > a {
    border: 0;
    padding-bottom: 0;
}
.header-nav .nav > li.homedemo .mega-menu > li > a img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.17);
    margin-bottom: 15px;
    transition: all 0.5s;
    width: 100%;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.header-nav .nav > li.homedemo .mega-menu > li:hover > a img {
    transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}
.header-nav .nav > li.homedemo .mega-menu > li > a span {
    display: block;
    text-transform: capitalize;
    font-size: 16px;
}
.header-nav .nav > li.homedemo .mega-menu > li:nth-child(2n) {
    background: rgba(0, 0, 0, 0.04);
}
.header-nav .dlab-social-icon {
    display: none;
}
@media only screen and (max-width: 1200px) {
    .frame-box .header-nav .nav > li > a {
        font-size: 14px;
        padding: 10px 16px;
        margin: 0 1px;
    }
    .header-curve.ext-header .logo-header:before {
        right: -50px;
    }
    .header-curve.ext-header .service-list ul li i {
        left: 7px;
        font-size: 30px;
        line-height: 38px;
    }
    .header-curve.ext-header .service-list ul li {
        padding: 0 0 0 45px;
        margin-left: 10px;
    }
    .header-curve.ext-header .service-list ul li .title {
        font-size: 16px;
    }
    .header-curve.ext-header .extra-nav:before {
        left: -5px;
    }
    .header-curve.ext-header .extra-nav .extra-cell {
        float: right;
    }
    .service-box-4 .service-images img {
        width: 100%;
    }
    .request-form .request-form-header {
        padding: 20px 30px 20px 80px;
    }
    .request-form .request-form-header h2 {
        font-size: 20px;
        line-height: 26px;
    }
    .request-form .request-form-header i {
        font-size: 36px;
    }
    .request-form {
        margin-top: -174px;
    }
    .list-check.list-2.rounded.border[class*="list-"] li {
        padding: 10px 20px 10px 45px;
    }
}
@media only screen and (max-width: 991px) {
    .header-curve.ext-header .extra-nav:after,
    .header-curve.ext-header .extra-nav:before {
        content: none;
    }
    .header-sidenav .header-nav.full-sidenav .nav > li > a {
        padding: 8px 0;
        border: 0;
    }
    .header-sidenav .header-nav.full-sidenav .logo-header a {
        text-align: left;
    }
    .header-sidenav .header-nav.full-sidenav .logo-header {
        padding: 30px 40px 30px 28px;
    }
    .header-sidenav .social-menu {
        padding: 10px 30px 20px 30px;
    }
    .header-nav .dlab-social-icon.ind-social ul {
        margin-bottom: 5px;
    }
    .header-nav .dlab-social-icon.ind-social li a {
        color: #111;
    }
    .header-nav .dlab-social-icon.ind-social p {
        color: #111;
    }
    .header-nav .dlab-social-icon {
        display: block;
        margin: 0;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .header-nav .dlab-social-icon li {
        color: #000;
        font-size: 16px;
    }
    .ft-contact .ft-contact-bx {
        padding: 20px 20px 20px 75px;
    }
    .ft-contact .ft-contact-bx img {
        width: 35px;
        height: 35px;
        left: 25px;
    }
    .ft-contact .ft-contact-bx p {
        line-height: 26px;
        font-size: 14px;
    }
    .ft-contact .ft-contact-bx .title {
        margin: 0 0 5px 0;
        font-size: 18px;
        line-height: 24px;
    }
    .project-list {
        margin-bottom: 0;
    }
    .about-year span {
        font-size: 70px;
        width: 110px;
        height: 120px;
    }
    .section-head.style2 .title {
        font-size: 30px;
    }
    .about-year {
        margin-bottom: 15px;
    }
    .const-about .section-head {
        margin-bottom: 30px;
    }
    .project-info-box .project-content {
        padding: 15px 20px 10px;
        width: 350px;
    }
    .project-info-box .list-details li {
        padding: 8px 0;
        font-size: 14px;
    }
    .latest-project-info {
        padding: 50px;
    }
    .social-curve:before {
        left: -40%;
    }
    .header-curve.ext-header .extra-nav:after {
        right: -100px;
    }
    .header-curve.ext-header .extra-nav {
        width: 30%;
    }
    .header-curve.ext-header .navbar-toggler {
        z-index: 99;
        position: relative;
    }
    .frame-box .slide-content-area {
        max-width: 500px;
        padding-left: 50px;
    }
    .frame-box .slide-content-box .slider-title {
        font-size: 36px;
        line-height: 46px;
    }
    .frame-box .slide-content-box p {
        font-size: 18px;
        line-height: 28px;
    }
    .frame-box .site-header.center .logo-header img {
        height: 100px;
        width: 100px;
    }
    .frame-box .site-header.center .navbar-toggler {
        margin: 16px 0 18px 15px;
    }
    .frame-box .main-bar {
        padding: 55px 0;
    }
    .frame-box .site-header.center .navbar-nav > li {
        display: block;
        float: left;
        width: 100%;
    }
    .frame-box .header-nav .nav > li > a {
        background-color: #fff;
        color: #000;
        display: block;
        padding: 8px 0;
        border-radius: 0;
        font-size: 18px;
        font-family: Roboto;
        font-weight: 500;
    }
    .frame-box .header-nav .nav > li:hover > a {
        border-radius: 0;
        background-color: transparent;
        color: #000 !important;
    }
    .frame-box .header-nav .nav > li.active > a,
    .frame-box .header-nav .nav > li > a:hover {
        background-color: transparent;
        color: #000 !important;
        border-radius: 0;
    }
    .frame-box .mo-left .header-nav .logo-header img {
        height: auto;
        width: 150px;
    }
    .frame-box .mo-left .header-nav .logo-header {
        display: block;
        float: none;
        height: 90px;
        max-width: 100%;
        padding: 20px 15px 20px;
        width: 100%;
        position: unset;
        left: 0;
        transform: unset;
    }
    .frame-box .site-header.center .is-fixed .container > .logo-header {
        z-index: 0;
    }
    .header-transparent.box-header .navbar-toggler span {
        background-color: #000;
    }
    .header-transparent.box-header .navbar-toggler {
        margin: 26px 0 18px 35px;
    }
    .box-header .header-nav .nav > li > a {
        font-family: Roboto;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .request-form {
        margin-top: 0;
    }
    .latest-project-info.style1 {
        padding: 50px 50px 0;
    }
    .header-nav .nav > li.homedemo .mega-menu {
        margin: 0;
        padding: 10px 0;
    }
    .header-nav .nav > li.homedemo .mega-menu > li > a {
        display: block;
        padding: 5px 0 5px 15px;
        position: relative;
    }
    .header-nav .nav > li.homedemo .mega-menu > li > a:after {
        content: "\f105";
        font-family: FontAwesome;
        width: auto;
        height: auto;
        background: 0 0;
        top: 3px;
        color: #000;
        font-size: 18px;
        position: absolute;
        left: 0;
        font-weight: 700;
    }
    .header-nav .nav > li.homedemo .mega-menu,
    .header-nav .nav > li.homedemo .mega-menu > li > a img {
        display: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header-nav .nav > li.homedemo.open .mega-menu {
        display: block;
    }
    .header-nav .nav > li.homedemo .mega-menu > li {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .header-nav .nav > li.homedemo .mega-menu > li > a span {
        display: block;
        text-transform: capitalize;
        font-size: 16px;
        font-weight: 400;
        color: #505050;
    }
    .header-nav .nav > li.homedemo .mega-menu > li:nth-child(2n) {
        background: 0 0;
    }
    .frame-box .top-bar {
        padding: 8px 0 8px 0;
    }
}
@media only screen and (max-width: 767px) {
    .header-sidenav .menu-icon-in span {
        height: 2px;
    }
    .header-sidenav .menu-icon-in {
        width: 20px;
        height: 16px;
    }
    .header-sidenav .menu-icon {
        width: 50px;
        height: 50px;
    }
    .contact-no-area .title {
        font-size: 36px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    .counter-style-5 {
        padding: 30px 15px;
    }
    .counter-style-5 .counter {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 5px;
    }
    .counter-staus-box .section-head .title {
        font-size: 36px;
        line-height: 46px;
    }
    .counter-style-5 p {
        font-size: 14px;
    }
    .counter-style-5 .icon-xl i {
        font-size: 50px;
        line-height: 50px;
    }
    .counter-staus-box .play-btn {
        margin-bottom: 20px;
    }
    .service-media-bx .dlab-info {
        padding: 25px 0 10px 0;
    }
    .service-media-bx {
        padding: 15px;
    }
    .ft-contact .ft-contact-bx:after {
        content: unset;
    }
    .ft-contact .ft-contact-bx {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 25px 20px 5px 75px;
    }
    .ft-contact {
        padding-bottom: 20px;
    }
    .project-slider .about-content {
        padding-top: 30px;
    }
    .project-slider:after {
        content: unset;
    }
    .project-info-box .project-media img {
        height: 300px;
        object-fit: cover;
    }
    .project-carousel-1 .owl-nav {
        right: 0;
        bottom: 10px;
    }
    .project-info-box .project-content {
        width: 300px;
    }
    .project-carousel-1 .owl-next,
    .project-carousel-1 .owl-prev {
        font-size: 14px;
        letter-spacing: 1px;
        margin: 0 10px;
    }
    .social-curve:before {
        left: -30%;
    }
    .header-curve.ext-header .extra-nav {
        width: 35%;
        padding: 11px 0;
    }
    .frame-box .slide-content-area {
        max-width: 100%;
        padding-left: 35px;
        padding-right: 100px;
    }
    .frame-box .slide-content-box .slider-title {
        font-size: 30px;
        line-height: 40px;
    }
    .frame-box .slide-content-box p {
        font-size: 16px;
        line-height: 26px;
    }
    .frame-box .area-frame .container {
        padding: 15px;
        border-radius: 10px;
    }
    .frame-box .area-frame .container:after,
    .frame-box .top-bar:after {
        content: unset;
    }
    .frame-box .main-bar {
        padding: 25px 0;
    }
    .frame-box .dlab-topbar-right {
        display: none;
    }
    .section-head.style1 .title {
        font-size: 36px;
        line-height: 46px;
    }
    .header-transparent.box-header .is-fixed .navbar-toggler,
    .header-transparent.box-header .navbar-toggler {
        margin: 17px 0 15px 20px;
    }
    .box-header .extra-nav .site-button,
    .box-header .is-fixed .extra-nav .site-button {
        height: 50px;
    }
    .box-header.site-header .extra-nav,
    .box-header.site-header .is-fixed .extra-nav {
        padding: 0;
    }
    .dlab-services-box {
        padding: 30px;
    }
    .service-year {
        font-size: 100px;
        line-height: 120px;
    }
    .latest-project-info.style1 {
        padding: 30px 30px 0;
    }
    .list-check.list-2.rounded.border[class*="list-"] li {
        width: 100%;
    }
}
@media only screen and (max-width: 591px) {
    .site-filters .button-sm {
        font-size: 12px;
        padding: 5px 15px;
    }
    .contact-no-area .title {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .contact-no .no {
        font-size: 20px;
        line-height: 30px;
    }
    .contact-no .contact-right .site-button {
        padding: 12px 24px;
        font-size: 12px;
    }
    .contact-no .contact-left {
        padding-right: 15px;
    }
    .contact-no .contact-right {
        padding-left: 15px;
    }
    .counter-staus-box .section-head .title {
        font-size: 28px;
        line-height: 40px;
    }
    .service-media-bx .dlab-title {
        font-size: 20px;
        line-height: 30px;
    }
    .service-media-bx .dlab-info {
        padding: 25px 0 15px 0;
    }
    .service-media-bx {
        padding: 10px;
    }
    .ft-contact {
        margin: 0 0;
    }
    .service-box.style1 {
        padding: 30px;
        margin: 10px 20px 25px;
    }
    .service-box.style1 .title {
        font-size: 18px;
        line-height: 28px;
    }
    .project-owbx {
        padding: 20px 15px 15px;
        margin: 20px 0 30px;
    }
    .project-slider .about-content {
        padding-left: 0;
    }
    .project-info-box .project-media img {
        height: 350px;
    }
    .service-box.style4 {
        padding: 30px;
    }
    .row.sp15,
    .sp15 {
        margin-left: 0;
        margin-right: 0;
    }
    .latest-project-info {
        padding: 30px;
    }
    .latest-project-info h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .social-curve {
        padding: 15px 0;
    }
    .social-curve:before {
        left: -10%;
    }
    .social-curve .social-icon .title {
        font-size: 16px;
    }
    .social-curve .social-icon li a {
        font-size: 16px;
        padding: 2px;
    }
    .box-header .extra-nav .site-button,
    .frame-box .slide-content-area,
    .header-curve.ext-header .extra-nav {
        display: none;
    }
    .header-curve.ext-header .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .frame-box .area-frame .container {
        padding: 15px;
    }
    .frame-box .service-list li:after {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    .frame-box .service-list li {
        font-size: 16px;
        line-height: 26px;
        padding-left: 50px;
    }
    .frame-box .testimonial-text p {
        font-size: 16px;
        line-height: 28px;
    }
    .frame-box .container > .logo-header,
    .frame-box .site-header.center .container > .logo-header img {
        height: 60px;
        width: 100px;
    }
    .frame-box .main-bar {
        padding: 20px 0 20px;
    }
    .frame-box .area-frame {
        margin-bottom: 0;
    }
    .frame-box .section-full:last-child {
        margin-bottom: 0;
    }
    .section-head.style1 .title {
        font-size: 30px;
        line-height: 40px;
    }
    .section-head.style1 p {
        font-size: 14px;
    }
    .box-header.header-transparent .main-bar {
        padding: 0 15px;
    }
    .request-form .form-group {
        margin-bottom: 15px;
    }
}
.dlab-team4 {
    text-align: center;
}
.dlab-team4 .dlab-media {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.dlab-team4 .dlab-media:after,
.dlab-team4 .dlab-media:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid #e6e5e5;
    position: absolute;
    top: 0;
    left: 0;
}

.dlab-team15 .dlab-media:after,
.dlab-team15 .dlab-media:before {
    border: 4px solid #e6e5e5 !important;
}

.dlab-team22 .dlab-media:after,
.dlab-team22 .dlab-media:before {
    border: 6px solid #e6e5e5 !important;
}

.dlab-team4 .dlab-media:after {
    border-color: var(--color-primary) #e6e5e5 #e6e5e5 var(--color-primary);
    z-index: 1;
    transform: rotate(-10deg);
    transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -webkit-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
}
.dlab-team4:hover .dlab-media:after {
    transform: rotate(350deg);
}
.dlab-team4 img {
    width: 100%;
    height: auto;
}
.dlab-team4 .dlab-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    padding-bottom: 15px;
    margin: 26px 0 10px 0;
    position: relative;
}
.dlab-team4 .dlab-title:after {
    content: "";
    width: 30px;
    height: 2px;
    background: #222;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.dlab-team4 .dlab-position {
    display: block;
    font-size: 16px;
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}
.dlab-team4 .dlab-social-icon li a.site-button.gray-light. .dlab-team5 .dlab-social-icon li a {
    background-color: #e0e0e0;
    color: #999;
    line-height: 30px;
    margin: 0 1px;
}
.dlab-team4 .dlab-social-icon li a.site-button:hover,
.dlab-team5 .dlab-social-icon li a.site-button:hover {
    background: var(--color-primary);
    color: #fff;
}
.dlab-team5 {
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.dlab-team5 .dlab-border-left:after,
.dlab-team5 .dlab-border-left:before,
.dlab-team5 .dlab-border-right:after,
.dlab-team5 .dlab-border-right:before {
    content: "";
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    position: absolute;
    z-index: -1;
}
.dlab-team5 .dlab-border-left:after {
    left: 0;
    top: 0;
}
.dlab-team5 .dlab-border-left:before {
    bottom: 0;
    left: 0;
}
.dlab-team5 .dlab-border-right:before {
    right: 0;
    bottom: 0;
}
.dlab-team5 .dlab-border-right:after {
    top: 0;
    right: 0;
}
.dlab-team5 .dlab-media {
    margin: 5px;
    position: relative;
    border: 3px solid #fff;
    transition: all 0.5s ease 0s;
}
.dlab-team5:hover .dlab-media {
    border-color: #33343e;
}
.dlab-team5 .dlab-media:after {
    content: "";
    width: 100%;
    height: 0;
    background: #33343e;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform-origin: 0 0 0;
    transition: all 0.5s ease 0s;
}
.dlab-team5:hover .dlab-media:after {
    height: 100%;
    opacity: 0.85;
}
.dlab-team5 img {
    width: 100%;
    height: auto;
}
.dlab-team5 .dlab-info {
    width: 100%;
    position: absolute;
    top: -50%;
    left: 0;
    transition: all 0.5s ease 0.2s;
}
.dlab-team5:hover .dlab-info {
    top: 50%;
    transform: translateY(-50%);
}
.dlab-team5 .dlab-title a {
    color: #fff;
}
.dlab-team5 .dlab-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.dlab-team5 .dlab-position {
    font-size: 14px;
    color: #fff;
    line-height: 26px;
    text-transform: capitalize;
    display: block;
    margin-bottom: 10px;
}
.dlab-team6 {
    background: #000;
    text-align: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}
.dlab-team6 img {
    width: 100%;
    height: auto;
    transition: all 0.55s ease 0s;
}
.dlab-team6:hover img {
    opacity: 0.5;
}
.dlab-team6 .dlab-info {
    padding: 5px 10px 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: 0 0;
    transition: all 0.55s ease 0s;
}
.dlab-team6:hover .dlab-info {
    opacity: 1;
}
.dlab-team6 .dlab-info:after,
.dlab-team6 .dlab-info:before {
    content: "";
    width: 400px;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    top: 0;
    left: 10px;
    transform: translateX(100%);
    transition: all 0.55s ease 0s;
}
.dlab-team6 .dlab-info:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 10px;
    transform: translateX(-100%);
}
.dlab-team6:hover .dlab-info:after,
.dlab-team6:hover .dlab-info:before {
    transform: translate(0, 0);
    transition-delay: 0.15s;
}
.dlab-team6 .dlab-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px;
    line-height: 26px;
}
.dlab-team6 .dlab-title:after,
.dlab-team6 .dlab-title:before {
    content: "";
    width: 2px;
    height: 300px;
    background: var(--color-primary);
    position: absolute;
    top: 10px;
    right: 0;
    transform: translateY(100%);
    transition: all 0.55s ease 0s;
}
.dlab-team6 .dlab-title:after {
    top: auto;
    right: auto;
    bottom: 10px;
    left: 0;
    transform: translateY(-100%);
}
.dlab-team6:hover .dlab-title:after,
.dlab-team6:hover .dlab-title:before {
    transform: translate(0, 0);
}
.dlab-team6 .dlab-position {
    display: block;
    padding: 5px 10px;
    background: var(--color-primary);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-transform: capitalize;
}
.team-carousel .owl-item.active.center .dlab-team7 {
    background-color: #fff;
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    transform: scale(1.05);
}
.dlab-team7 {
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin: 30px 0;
    transition: all 0.5s;
}
.dlab-team7 .dlab-media {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}
.dlab-team7 .dlab-title {
    line-height: 24px;
    margin-bottom: 5px;
}
.dlab-team7 .dlab-position {
    display: block;
    margin-bottom: 10px;
}
.dlab-team8 .dlab-title {
    margin-bottom: 5px;
    margin-top: 15px;
}
.dlab-team8 .dlab-info {
    text-align: center;
}
.dlab-team8 .dlab-media {
    position: relative;
}
.dlab-team8:hover .dlab-media .dlab-social-icon {
    opacity: 1;
    transition: all 0.5s;
}
.dlab-team8 .dlab-media .dlab-social-icon {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    margin: 0;
    opacity: 1;
    transition: all 0.5s;
}
.dlab-team8 .dlab-media .dlab-social-icon li {
    width: 50%;
    position: relative;
}
.dlab-team8 .dlab-media .dlab-social-icon li a {
    border-radius: 0;
    width: 100%;
    height: 100%;
    font-size: 24px;
    padding: 30px;
    position: relative;
    transition: all 0.5s;
}
.dlab-team8 .dlab-media .dlab-social-icon li a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dlab-team8 .dlab-media .dlab-social-icon li:nth-child(1) a {
    top: -100%;
}
.dlab-team8:hover .dlab-media .dlab-social-icon li:nth-child(1) a {
    top: 0;
    transition: all 0.5s;
}
.dlab-team8 .dlab-media .dlab-social-icon li:nth-child(4) a {
    bottom: -100%;
}
.dlab-team8:hover .dlab-media .dlab-social-icon li:nth-child(4) a {
    bottom: 0;
    transition: all 0.5s;
}
.dlab-team8 .dlab-media .dlab-social-icon li:nth-child(2) a {
    right: -100%;
}
.dlab-team8:hover .dlab-media .dlab-social-icon li:nth-child(2) a {
    right: 0;
    transition: all 0.5s;
}
.dlab-team8 .dlab-media .dlab-social-icon li:nth-child(3) a {
    left: -100%;
}
.dlab-team8:hover .dlab-media .dlab-social-icon li:nth-child(3) a {
    left: 0;
    transition: all 0.5s;
}
.dlab-team9 .dlab-title a {
    color: #fff;
    display: block;
    padding: 25px 10px;
}
.dlab-team9 .dlab-media.dlab-media-right .dlab-info-has {
    background-color: var(--color-primary);
    border-radius: 20px 0 0 20px;
    top: 50px;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.dlab-team9 .dlab-social-icon li a {
    vertical-align: middle;
    padding: 7px 5px;
    height: auto;
    width: auto;
    font-size: 16px;
}
.dlab-team9 .dlab-info {
    position: unset;
}
.dlab-team9 .dlab-title {
    background-color: var(--color-primary);
    font-weight: 500;
    bottom: 0;
    position: absolute;
    color: #fff;
    display: block;
    left: 0;
    font-size: 14px;
    letter-spacing: 3px;
    height: 100%;
    transition: all 0.8s;
    writing-mode: tb-rl;
    top: 0;
    margin: 0;
    transform-origin: left;
    text-align: right;
    line-height: 24px;
    text-transform: uppercase;
    opacity: 0.8;
    -ms-opacity: 0.8;
}
.testimonial-11 {
    display: flex;
    align-items: center;
    padding: 0 100px 30px;
}
.testimonial-11 .testimonial-pic {
    width: 250px;
    height: auto;
    border: 0;
    min-width: 250px;
    margin-right: 30px;
    border-radius: 10px;
    overflow: hidden;
}
.testimonial-11 .testimonial-text {
    padding: 0 0 15px;
}
.testimonial-11 .testimonial-name {
    font-size: 20px;
    line-height: 30px;
}
.testimonial-11 .testimonial-text p {
    line-height: 32px;
    font-size: 18px;
    font-style: italic;
}
.owl-btn-white .owl-nav .owl-next,
.owl-btn-white .owl-nav .owl-prev {
    color: #fff;
    opacity: 0.8;
}
.testimonial-10 .testimonial-text,
.testimonial-9 .testimonial-text {
    margin-bottom: 10px;
}
.testimonial-10 .testimonial-text p,
.testimonial-9 .testimonial-text p {
    font-size: 16px;
}
.testimonial-10 .testimonial-name,
.testimonial-9 .testimonial-name {
    font-size: 18px;
    text-transform: capitalize;
}
.testimonial-10 .testimonial-position,
.testimonial-9 .testimonial-position {
    text-transform: capitalize;
    font-size: 14px;
    color: var(--color-primary);
}
.testimonial-11.testimonial-box {
    background-color: #fff;
    box-shadow: 5px 5px 30px 0 rgba(0, 0, 0, 0.1);
    margin: 30px 100px;
    padding: 40px;
}
.testimonial-11.testimonial-box .testimonial-pic {
    border-radius: 0;
}
.testimonial-11.testimonial-box .quote-left:before,
.testimonial-11.testimonial-box .quote-right:after {
    font-size: 50px;
    color: rgba(0, 0, 0, 0.1);
}
.testimonial-11.testimonial-box .testimonial-detail {
    padding: 50px 85px;
}
.testimonial-11.testimonial-box .quote-left:before {
    left: 20px;
    top: 0;
}
.testimonial-11.testimonial-box .quote-right:after {
    top: auto;
    right: 50px;
    bottom: 50px;
}
.testimonial-11.testimonial-box .testimonial-text p {
    line-height: 28px;
    font-size: 16px;
}
.owl-btn-2.radius-no .owl-nav .owl-next,
.owl-btn-2.radius-no .owl-nav .owl-prev {
    border-radius: 0;
}
.owl-btn-2.owl-btn-md .owl-nav .owl-next,
.owl-btn-2.owl-btn-md .owl-nav .owl-prev {
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 24px;
}
.testimonial-box-carousel .owl-nav .owl-prev {
    left: 140px;
}
.testimonial-box-carousel .owl-nav .owl-next {
    right: 140px;
}
.testimonial-12 {
    display: flex;
}
.testimonial-12 .testimonial-pic {
    padding: 0;
    width: 200px;
    min-width: 200px;
    height: 200px;
    border: 0;
    margin: 30px -80px 30px 0;
}
.testimonial-12 .testimonial-text {
    padding: 0;
}
.testimonial-12 .testimonial-detail {
    background-color: var(--color-primary);
    padding: 50px 30px 50px 110px;
}
.testimonial-12 h4.testimonial-name {
    font-size: 22px;
}
.testimonial-12 .testimonial-position {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.testimonial-num-count {
    width: 750px;
    margin: auto;
}
.owl-num-count .owl-dots {
    text-align: right;
    counter-reset: li;
}
.owl-num-count .owl-dots {
    text-align: right;
    counter-reset: li;
    justify-content: flex-end;
    display: flex;
}
.owl-num-count .owl-dots .owl-dot {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    font-size: 18px;
}
.owl-num-count .owl-dots .owl-dot span {
    margin: 0;
    width: 0;
    border-radius: 0;
    height: 2px;
    transition: all 0.5s;
    margin-left: 5px;
}
.owl-num-count .owl-dots .owl-dot.active:before {
    color: #000;
}
.owl-num-count .owl-dots .active.owl-dot span {
    width: 40px;
    background-color: #000;
}
.owl-num-count .owl-dots .owl-dot:before {
    content: counter(li, decimal);
    counter-increment: li;
    font-weight: 500;
    color: #a0a0a0;
}
.testimonial-13 {
    border: 1px solid rgba(0, 0, 0, 0.09);
    box-shadow: 5px 25px 35px -35px #736d6d;
    margin: 40px 15px 20px;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.5s;
}
.testimonial-13 .testimonial-detail {
    padding: 25px 0 20px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.testimonial-13 .testimonial-pic {
    width: 70px;
    height: 70px;
    border: 0;
    float: left;
    margin-right: 15px;
}
.testimonial-13 .testimonial-text {
    padding: 85px 25px 25px;
}
.testimonial-13 .quote-left:before {
    font-size: 50px;
    color: var(--color-primary);
    top: -75px;
}
.testimonial-13-area.owl-theme .owl-dots {
    margin-top: 0;
}
.owl-item.active.center .testimonial-13 .testimonial-text {
    background-color: transparent;
    color: #6f6f6f;
}
.owl-item.active.center .testimonial-13 {
    margin-top: 0;
    transition: all 0.5s;
}
.testimonial-14 {
    border: 10px solid;
    padding: 40px 0 25px 0;
    margin: 30px 30px 10px;
    text-align: center;
    position: relative;
}
.testimonial-14 .testimonial-detail {
    padding: 7px 0;
    margin: 0 -30px 20px;
    border: 7px solid #fff;
    background: var(--color-secondry);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}
.testimonial-14 .testimonial-detail:before {
    content: "";
    border-top: 15px solid;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -37px;
    left: 0;
}
.testimonial-14 .testimonial-detail:after {
    content: "";
    border-top: 15px solid;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -37px;
    right: 0;
}
.testimonial-14.quote-left:before {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: #fff;
    margin: 0 auto;
    font-size: 70px;
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
}
.bg-gray .testimonial-14.quote-left:before {
    background: #f7f9fb;
}
.testimonial-14 .testimonial-detail {
    border-color: #f7f9fb;
}
.testimonial-15 {
    margin: 0 0 20px;
    position: relative;
}
.testimonial-15 .testimonial-pic {
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    float: left;
    margin-right: 15px;
}
.testimonial-15:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: -2px;
    background: #fff;
    top: 0;
    opacity: 0.2;
}
.testimonial-15 .testimonial-text {
    padding: 40px 30px 20px 0;
}
.testimonial-15 .testimonial-text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
}
.testimonial-15 .testimonial-name {
    margin-top: 10px;
}
.testimonial-15 .testimonial-detail {
    padding: 0;
}
.testimonial-15 .quote-left:before,
.testimonial-15 .quote-right:after {
    font-size: 24px;
    line-height: 24px;
    color: var(--color-primary);
}
.testimonial-15 .quote-right:before {
    top: 0;
}
.testimonial-15 .quote-right:after {
    top: auto;
    bottom: 0;
    right: 30px;
}
.testimonial-15 .testimonial-position {
    color: var(--color-primary);
}
.testimonial-15.text-white .quote-left:before,
.testimonial-15.text-white .quote-right:after,
.testimonial-15.text-white .testimonial-position {
    color: rgba(255, 255, 255, 0.8);
}
.section-full.bg-black .testimonial-15 .quote-left:before,
.section-full.bg-black .testimonial-15 .quote-right:after,
.section-full.bg-secondry .testimonial-15 .quote-left:before,
.section-full.bg-secondry .testimonial-15 .quote-right:after {
    color: var(--color-primary);
}
.portfolio-style1 {
    position: relative;
    overflow: hidden;
}
.portfolio-style1 .portfolio-info .title {
    font-size: 26px;
}
.portfolio-style1 .portfolio-info {
    position: absolute;
    left: 0;
    bottom: -100%;
    padding: 30px 200px 30px 30px;
    transition: all 0.8s;
    z-index: 99;
}
.portfolio-style1 .portfolio-info .title a,
.portfolio-style1 .portfolio-info p {
    color: #fff;
}
.portfolio-style1 .portfolio-info p {
    margin-bottom: 0;
}
.project-carousel .owl-item.active.center .portfolio-style1 .portfolio-info {
    transition: all 0.8s;
    bottom: 0;
}
.project-carousel .owl-item.active.center .portfolio-style1 .dlab-img-overlay1:before {
    opacity: 0.5;
}
.call-action.style2 h2.title {
    font-size: 36px;
    line-height: 46px;
    font-family: poppins;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.call-action.style2 {
    padding: 0;
}
.call-action.style2 h3 {
    font-size: 26px;
    font-weight: 600;
    font-family: poppins;
    line-height: 36px;
    margin-bottom: 15px;
}
.call-action.style2 i.call-icon {
    font-size: 100px;
    margin-bottom: 50px;
    position: relative;
}
.call-action.style2 i.call-icon:after {
    content: "\f10b";
    font-size: 45%;
    color: var(--color-primary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.service-box-5 .dlab-info {
    margin-top: 20px;
}
.service-box-5 .icon-bx {
    float: left;
    margin-right: 20px;
}
.service-box-5 .dlab-info .title {
    font-size: 20px;
    margin-bottom: 5px;
}
.service-box-5 .dlab-info p {
    line-height: 26px;
}
.site-footer.style2 .footer-top {
    background-color: #fff;
    position: relative;
}
.site-footer.style2 .recent-posts-entry .widget-post {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.site-footer.style2 .recent-posts-entry .post-title {
    line-height: 30px;
    font-size: 18px;
    font-weight: 600;
}
.site-footer.style2 .footer-title,
.site-footer.style2 .recent-posts-entry .post-date strong,
.site-footer.style2 .recent-posts-entry .post-title a,
.site-footer.style2 .widget .list-2 li a,
.site-footer.style2 .widget_getintuch li {
    color: #000;
}
.site-footer.style2 .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
}
.site-footer.style2 .subscribe-form input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 0;
}
.site-footer.style2 .subscribe-form .input-group-btn {
    padding-left: 0;
}
.site-footer.style2 .widget {
    padding: 0 5px;
    z-index: 1;
    position: relative;
}
.site-footer.style2 .footer-top:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 33.33%;
    background-color: #f1f1f1;
    z-index: 0;
}
.site-footer.style2 .widget .list-2 li {
    padding: 8px 8px 8px 20px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
.site-footer.style2 .widget p {
    font-size: 16px;
    line-height: 28px;
    color: #747477;
}
.site-footer.style2 .widget.widget_about {
    padding: 0 50px 0 5px;
}
.site-footer.style2 .widget.widget_getintuch li i {
    color: var(--color-primary);
    top: 0;
}
.site-footer.style2 .footer-logo {
    margin-bottom: 30px;
    width: 200px;
}
.site-footer.style2 .widget.widget_getintuch {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0 0;
    margin-top: 20px;
}
.site-footer.style2 .widget.widget_getintuch li {
    font-size: 15px;
    line-height: 24px;
    text-transform: capitalize;
    color: #747477;
}
.site-footer.style2 .site-button-link i {
    margin-left: 0;
}
@media only screen and (max-width: 1024px) {
    .site-footer.style2 .footer-top {
        padding: 60px 0 0;
    }
    .site-footer.style2 .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .site-footer.style2 .widget.widget_about {
        padding: 0 5px;
    }
    .testimonial-box-carousel .owl-nav .owl-next {
        right: 60px;
    }
    .testimonial-box-carousel .owl-nav .owl-prev {
        left: 60px;
    }
    .testimonial-11.testimonial-box {
        padding: 30px;
    }
    .testimonial-11.testimonial-box .quote-left:before,
    .testimonial-11.testimonial-box .quote-right:after {
        font-size: 36px;
    }
    .testimonial-11.testimonial-box .testimonial-detail {
        padding: 50px;
    }
    .testimonial-11 .testimonial-pic {
        margin-right: 15px;
    }
    .testimonial-num-count {
        width: 100%;
        padding: 0 50px;
    }
    .header-nav .nav > li .sub-menu.right {
        right: 0;
        left: auto;
    }
    .portfolio-style1 .portfolio-info {
        padding: 30px;
    }
    .dlab-quik-search span {
        right: 30px;
    }
    .dlab-quik-search.On form {
        max-width: 100%;
        padding: 0 30px;
    }
    .box-header .extra-nav .site-button {
        height: 65px;
    }
}
@media only screen and (max-width: 991px) {
    .site-footer.style2 .footer-top:after {
        content: unset;
    }
    .testimonial-11 {
        padding: 0 60px 30px;
    }
    .testimonial-11 .testimonial-text p {
        line-height: 30px;
        font-size: 16px;
    }
    .testimonial-11 .testimonial-pic {
        width: 150px;
        min-width: 150px;
        margin-right: 20px;
    }
    .testimonial-11.testimonial-box {
        margin: 20px 40px;
    }
    .testimonial-box-carousel .owl-nav .owl-next {
        right: 0;
    }
    .testimonial-box-carousel .owl-nav .owl-prev {
        left: 0;
    }
    .testimonial-12 .testimonial-pic {
        width: 150px;
        min-width: 150px;
        height: 150px;
        margin: 25px -80px 25px 0;
    }
    .testimonial-12 .testimonial-detail {
        padding: 25px 25px 25px 100px;
    }
    .dlab-team4 {
        padding: 0 50px;
    }
    .dlab-team6 .dlab-position {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 5px;
    }
    .dlab-team6 .dlab-title {
        font-size: 16px;
        line-height: 22px;
    }
    .header-nav .nav > li:active > a,
    .header-nav .nav > li:focus > a,
    .header-nav .nav > li:hover > a {
        color: #313444 !important;
    }
    .frame-box .gallery-bx > div:last-child {
        padding-left: 15px;
    }
    .frame-box .gallery-bx > div:first-child {
        padding-right: 15px;
        border-right: 0;
    }
    .frame-box .section-head {
        margin-bottom: 30px;
    }
    .frame-box .content-inner,
    .frame-box .content-inner-1 {
        padding-top: 60px;
    }
    .frame-box .client-carousel .owl-nav .owl-prev {
        left: 0;
    }
    .frame-box .client-carousel .owl-nav .owl-next {
        right: 0;
    }
    .portfolio-style1 .portfolio-info p {
        font-size: 14px;
        line-height: 24px;
    }
    .portfolio-style1 .portfolio-info {
        padding: 30px 250px 30px 30px;
    }
    .site-footer.footer-full .p-tb60 {
        padding-bottom: 30px;
    }
    .footer-box .title,
    .header-box .title {
        font-size: 30px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        line-height: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .site-footer.style2 .widget {
        margin-bottom: 30px;
    }
    .site-footer.style2 .footer-top {
        padding: 40px 0 0;
    }
    .site-footer.style2 .widget.widget_about {
        margin-bottom: 40px;
    }
    .site-footer.style2 .widget .subscribe-form {
        margin-top: 15px;
    }
    .testimonial-11 .testimonial-pic {
        width: 100px;
        min-width: 100px;
        margin-right: 15px;
    }
    .testimonial-11 .testimonial-text p,
    .testimonial-11.testimonial-box .testimonial-text p,
    .testimonial-15 .testimonial-text p {
        line-height: 26px;
        font-size: 14px;
    }
    .testimonial-11 {
        padding: 0 50px 10px;
    }
    .testimonial-11 .testimonial-name {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .testimonial-11.testimonial-box .quote-left:before,
    .testimonial-11.testimonial-box .quote-right:after {
        font-size: 30px;
    }
    .testimonial-11.testimonial-box .quote-left:before {
        left: 0;
    }
    .testimonial-11.testimonial-box .quote-right:after {
        right: 0;
    }
    .testimonial-11.testimonial-box .testimonial-detail {
        padding: 45px 10px 0 0;
    }
    .testimonial-11.testimonial-box {
        padding: 20px;
    }
    .testimonial-11.testimonial-box {
        margin: 15px 25px;
    }
    .owl-btn-2.owl-btn-md .owl-nav .owl-next,
    .owl-btn-2.owl-btn-md .owl-nav .owl-prev {
        height: 45px;
        width: 45px;
        line-height: 45px;
        font-size: 20px;
    }
    .testimonial-box-carousel .owl-nav .owl-next {
        right: -10px;
    }
    .testimonial-box-carousel .owl-nav .owl-prev {
        left: -10px;
    }
    .testimonial-12 .testimonial-detail {
        padding: 70px 30px 30px;
        text-align: center;
    }
    .testimonial-12 {
        display: block;
    }
    .testimonial-12 .testimonial-pic {
        width: 100px;
        min-width: 100px;
        height: 100px;
        margin: 0 auto -50px;
        display: block;
    }
    .dlab-team7 .dlab-title {
        line-height: 24px;
        font-size: 18px;
    }
    .dlab-team4 {
        padding: 0 10px;
    }
    .frame-box .content-inner,
    .frame-box .content-inner-1 {
        padding-top: 30px;
    }
    .frame-box .testimonial-text p {
        font-size: 18px;
        line-height: 30px;
    }
    .frame-box .service-list {
        margin-bottom: 0;
    }
    .box-header .extra-nav .site-button {
        height: 50px;
    }
    .banner-form .bootstrap-select.btn-group .dropdown-toggle .caret {
        top: 19px;
    }
    .cargo-banner .title {
        font-size: 36px;
        line-height: 46px;
    }
    .portfolio-style1 .portfolio-info {
        padding: 30px;
    }
    .call-action.style2 i.call-icon {
        font-size: 70px;
        margin-bottom: 20px;
    }
    .call-action.style2 h2.title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .call-action.style2 h3 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    .contact-action {
        padding: 50px 0 20px;
    }
    .contact-action.style2 {
        padding-bottom: 50px;
    }
    .footer-box .title,
    .header-box .title {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 591px) {
    .site-footer.style2 .recent-posts-entry .post-title {
        line-height: 28px;
        font-size: 16px;
    }
    .site-footer.style2 .recent-posts-entry .widget-post {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .site-footer.style2 .widget .list-2 li {
        padding: 5px 5px 5px 20px;
        font-size: 14px;
    }
    .site-footer.style2 .footer-logo {
        margin-bottom: 20px;
        width: 180px;
    }
    .testimonial-11 {
        display: block;
    }
    .testimonial-num-count {
        padding: 0;
    }
    .testimonial-14 .testimonial-detail {
        margin: 0 -30px 0;
    }
    .testimonial-14 .testimonial-text {
        padding: 15px 15px 0;
    }
    .dlab-team4 {
        padding: 0 30px;
    }
    .service-box-2 .dlab-info {
        padding: 20px 10px 10px;
    }
    .frame-box .footer-title {
        margin-bottom: 20px;
    }
    .contact-action {
        padding: 30px 0 0;
    }
    .testimonial-10 .testimonial-pic {
        position: relative;
    }
    .testimonial-10 {
        padding-left: 0;
        text-align: center;
    }
    .site-footer .widget .m-b30 {
        margin-bottom: 15px;
    }
    .banner-form .bootstrap-select .dropdown-toggle,
    .banner-form .form-control,
    .banner-form .site-button {
        height: 45px;
        font-size: 15px;
    }
    .banner-form .bootstrap-select.btn-group .dropdown-toggle .caret {
        top: 17px;
    }
    .cargo-banner .title {
        font-size: 26px;
        line-height: 36px;
    }
    .portfolio-style1 .portfolio-info {
        padding: 20px;
    }
    .portfolio-style1 .portfolio-info .title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .site-footer.footer-full .p-tb60 {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .testimonial-11 {
        padding: 0 10px 10px;
        text-align: center;
    }
    .testimonial-11-area .owl-nav {
        display: none;
    }
    .contact-action.style2 {
        padding-bottom: 30px;
    }
    .pricingtable-style2-area {
        margin-top: 0;
    }
    .content-inner {
        padding-bottom: 0;
        padding-top: 30px;
    }
    .inquiry-form .form-control {
        font-size: 14px;
    }
    .inquiry-form .form-group {
        margin-bottom: 15px;
    }
    .counter-style-5 p {
        font-size: 12px;
    }
    .counter-style-5 {
        padding: 30px 10px;
    }
    .footer-box .title,
    .header-box .title {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 34px;
    }
    .footer-box,
    .header-box {
        padding: 20px 20px 0 20px;
    }
}
.dlab-social-icon.border,
.dlab-tabs.bg-tabs.vertical.border,
.dlab-tabs.bg-tabs.vertical.right.border,
.dlab-tabs.border,
.dlab-tabs.border-top,
.dlab-tabs.border-tp.border.bg-tabs,
.dlab-tabs.border.bg-tabs,
.dlab-tabs.vertical.border,
.dlab-tabs.vertical.right.border {
    border: 0 !important;
}
.inquiry-form .input-group-addon textarea {
    border-bottom: 0;
}
.portfolio-ic .check-km i.icon-bx-xs {
    color: #000 !important;
}
.portfolio-ic .check-km i.icon-bx-xs:hover {
    background: 0 0 !important;
    border: 2px solid #fff;
    color: #fff !important;
}
.navstyle2 .header-nav .nav > li.active > a:after,
.navstyle2 .header-nav .nav > li:hover > a:after {
    background-color: transparent;
}
.white.btnhover13:hover::after,
.white.btnhover14:hover::after,
.white.btnhover15:hover::after {
    background-color: #f4f4f4;
}
.footer-top.bg-primary .subscribe-form .form-control::placeholder {
    color: #fff;
}
[type="button"]:focus {
    outline: 0;
}
.inquiry-form .bootstrap-select {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.inquiry-form .bootstrap-select .dropdown-toggle {
    border-width: 0 0 1px 0 !important;
    border-radius: 0;
    font-size: 16px;
    color: #777;
    border-color: #e1e6eb !important;
    padding-left: 12px;
}
.inquiry-form .bootstrap-select.btn-group .dropdown-menu {
    border: 0;
    box-shadow: -5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.inquiry-form .bootstrap-select div.dropdown-menu ul li a {
    padding: 8px 15px;
    font-size: 14px;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
@media only screen and (max-width: 991px) {
    .header-nav .nav > li .mega-menu,
    .header-nav .nav > li .sub-menu,
    .header-nav .nav > li ul {
        background: 0 0 !important;
    }
    .dlab-bnr-inr-entry {
        display: table-cell;
        vertical-align: middle;
    }
    .frame-box .mo-left .header-nav .logo-header:after {
        content: none;
    }
}
@media only screen and (max-width: 767px) {
    .dlab-topbar-left ul li:after {
        right: 0;
    }
    .frame-box .footer-top {
        padding: 40px 0 15px;
        margin-top: 10px;
    }
    .frame-box .ft-contact {
        padding-bottom: 0;
    }
    .frame-project-area .m-t40,
    .frame-sr-list-area .m-t40 {
        margin-top: 20px;
    }
    .gallery-bx .m-t20 {
        margin-top: 10px;
    }
    .site-footer.map-footer .p-tb60 {
        padding: 35px 10px;
    }
    .site-filters {
        margin-bottom: 15px;
    }
    .service-box-4-area.m-b30 {
        margin-bottom: 0;
    }
    .portbox3 .portinner {
        max-width: 80%;
        width: 80%;
        min-width: 80%;
    }
    .area-frame {
        margin-bottom: 50px;
    }
    .frame-box .site-header.center .container > .logo-header {
        top: 5px;
    }
    .section-content.box-sort-in.m-t80 {
        margin-top: 0;
    }
    .section-content.box-sort-in.p-t50.p-t10 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .section-content.box-sort-in.p-tb50 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .dlab-accordion.faq-1.m-b30,
    .pricing-table-title {
        margin-bottom: 0;
    }
    .pricing-table-box-area .section-content.p-tb30 {
        padding-top: 0;
    }
    .dz_error-405 .widget {
        margin-bottom: 10px;
    }
    .section-full.p-b80 {
        padding-bottom: 50px;
    }
    .alert-box-area .dlab-divider,
    .tabs-box-area .dlab-divider,
    .team-box-area .dlab-divider {
        margin: 0;
    }
    .pricing-table-box-area .pricingtable-row.m-b30,
    .pricing-table-col-gap .pricingtable-wrapper {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 591px) {
    .service-box.style3 .icon-bx-wraper {
        padding: 35px 30px;
    }
    .about-industry .img-cover {
        min-height: 300px;
    }
    .counter-staus-box .play-btn {
        margin-top: 0;
    }
    .frame-box .site-header.center .container > .logo-header {
        top: 15px;
    }
    form .g-recaptcha {
        margin-bottom: -25px;
    }
    .shop-cart .dropdown-menu.cart-list {
        top: 50px;
    }
    .shop-account h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 25px;
    }
    .blog-md.blog-post .dlab-pfost-media,
    .blog-md.blog-post .dlab-post-info {
        margin-bottom: 0;
    }
    .pagination-bx {
        margin-bottom: 10px;
    }
    .pagination-bx.m-b30 {
        margin-bottom: 30px;
    }
    .alignleft,
    .alignright {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    blockquote {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

body,

body {
    background-color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6f6f6f;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
.bg-pb,
.dlab-bnr-inr.bg-pb {
    background-position: bottom;
    background-size: cover;
}

.dlab-img-overlay1,
.dlab-img-overlay11,
.dlab-img-overlay12,
.dlab-img-overlay2,
.dlab-img-overlay3,
.dlab-img-overlay4,
.dlab-img-overlay5,
.dlab-img-overlay6,
.dlab-img-overlay7,
.dlab-img-overlay8,
.dlab-img-overlay9 {
    position: relative;
}
.dlab-img-overlay11:after,
.dlab-img-overlay11:before,
.dlab-img-overlay12:after,
.dlab-img-overlay12:before,
.dlab-img-overlay1:after,
.dlab-img-overlay1:before,
.dlab-img-overlay2:after,
.dlab-img-overlay2:before,
.dlab-img-overlay3:after,
.dlab-img-overlay3:before,
.dlab-img-overlay4:after,
.dlab-img-overlay4:before,
.dlab-img-overlay5:after,
.dlab-img-overlay5:before,
.dlab-img-overlay6:after,
.dlab-img-overlay6:before,
.dlab-img-overlay7:after,
.dlab-img-overlay7:before,
.dlab-img-overlay8:after,
.dlab-img-overlay8:before,
.dlab-img-overlay9:after,
.dlab-img-overlay9:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0.4;
    z-index: 1;
    -webkit-transition: all 0.8s linear;
    -moz-transition: all 0.8s linear;
    -ms-transition: all 0.8s linear;
    -o-transition: all 0.8s linear;
    transition: all 0.8s linear;
}
.dlab-img-overlay1:before {
    width: 100%;
    height: 100%;
    opacity: 0;
}
.dlab-box:hover .dlab-img-overlay1:before,
.dlab-img-overlay1:hover:before {
    opacity: 0.5;
}
.dlab-img-overlay2:before {
    width: 100%;
    height: 100%;
    opacity: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.15) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.15) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.15) 100%);
}
.dlab-img-overlay2.on:before {
    opacity: 1;
}
.dlab-box:hover .dlab-img-overlay2:before,
.dlab-img-overlay2:hover:before {
    opacity: 0.9;
}
.dlab-img-overlay3:before {
    left: 50%;
    top: 50%;
}
.dlab-box:hover .dlab-img-overlay3:before,
.dlab-img-overlay3:hover:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.dlab-img-overlay4:before {
    left: 50%;
    top: 0;
    height: 100%;
}
.dlab-box:hover .dlab-img-overlay4:before,
.dlab-img-overlay4:hover:before {
    width: 100%;
    left: 0;
}
.dlab-img-overlay5:before {
    left: 0;
    top: 50%;
    width: 100%;
}
.dlab-box:hover .dlab-img-overlay5:before,
.dlab-img-overlay5:hover:before {
    height: 100%;
    top: 0;
}
.dlab-img-overlay6:before {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
}
.dlab-box:hover .dlab-img-overlay6:before,
.dlab-img-overlay6:hover:before {
    height: 100%;
}
.dlab-img-overlay7:after,
.dlab-img-overlay7:before {
    height: 100%;
}
.dlab-img-overlay7:after {
    left: auto;
    right: 0;
}
.dlab-box:hover .dlab-img-overlay7:after,
.dlab-box:hover .dlab-img-overlay7:before,
.dlab-img-overlay7:hover:after,
.dlab-img-overlay7:hover:before {
    width: 50%;
}
.dlab-img-overlay8:after,
.dlab-img-overlay8:before {
    height: 100%;
}
.dlab-img-overlay8:after {
    left: auto;
    right: 0;
}
.dlab-box:hover .dlab-img-overlay8:after,
.dlab-box:hover .dlab-img-overlay8:before,
.dlab-img-overlay8:hover:after,
.dlab-img-overlay8:hover:before {
    width: 100%;
    opacity: 0.3;
}
.dlab-img-overlay9:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}
.dlab-box:hover .dlab-img-overlay9:after,
.dlab-box:hover .dlab-img-overlay9:before,
.dlab-img-overlay9:hover:after,
.dlab-img-overlay9:hover:before {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}
.dlab-img-overlay10:after,
.dlab-img-overlay10:before {
    width: 100%;
    height: 100%;
    opacity: 0;
}
.dlab-box:hover .dlab-img-overlay10:before,
.dlab-img-overlay10:hover:before {
    opacity: 0.5;
}
.dlab-box:hover .dlab-img-overlay10:after,
.dlab-img-overlay10:hover:after {
    width: 90%;
    height: 80%;
    left: 5%;
    top: 10%;
    opacity: 0.5;
    background: 0 0;
    border: 1px dashed #fff;
}
.dlab-box:hover .dlab-img-overlay11:after,
.dlab-img-overlay11:hover:after {
    height: 95%;
    opacity: 1;
    right: 7.5%;
    top: 2.5%;
    -moz-transform: skewY(0);
    -webkit-transform: skewY(0);
    -o-transform: skewY(0);
    -ms-transform: skewY(0);
    transform: skewY(0);
    width: 85%;
}
.dlab-box:hover .dlab-img-overlay11:before,
.dlab-img-overlay11:hover:before {
    height: 85%;
    left: 2.5%;
    opacity: 1;
    top: 7.5%;
    -moz-transform: skewY(0);
    -webkit-transform: skewY(0);
    -o-transform: skewY(0);
    -ms-transform: skewY(0);
    transform: skewY(0);
    width: 95%;
}
.dlab-img-overlay11:after {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    bottom: 5%;
    height: 80%;
    left: auto;
    right: 5%;
    top: auto;
    -moz-transform: skewY(70deg);
    -webkit-transform: skewY(70deg);
    -o-transform: skewY(70deg);
    -ms-transform: skewY(70deg);
    transform: skewY(70deg);
    width: 90%;
}
.dlab-img-overlay11:before {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    bottom: auto;
    height: 90%;
    left: 5%;
    right: auto;
    top: 5%;
    -moz-transform: skewX(-70deg);
    -webkit-transform: skewX(-70deg);
    -o-transform: skewX(-70deg);
    -ms-transform: skewX(-70deg);
    transform: skewX(-70deg);
    width: 80%;
}
.dlab-img-overlay11 {
    background-color: #000 !important;
}
.dlab-img-overlay11:hover img {
    opacity: 0.7 !important;
}
.dlab-box:hover .dlab-img-overlay12:after,
.dlab-img-overlay12:hover:after {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
    -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
    -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
}
.dlab-img-overlay12:after {
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -moz-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -o-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -moz-transform-origin: 50% 50% 0;
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    -o-transform-origin: 50% 50% 0;
    width: 100%;
    height: 100%;
}
.dlab-box:hover .dlab-img-overlay12.left:after,
.dlab-img-overlay12.left:hover:after {
    transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
    -moz-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
    -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
    -o-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
}
.dlab-img-overlay12.left:after {
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 0, 1);
    -moz-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 0, 1);
    -o-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 0, 1);
    -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(1, 0, 1);
    -moz-transform-origin: 50% 50% 0;
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    -o-transform-origin: 50% 50% 0;
}
.dlab-img-overlay12:before {
    width: 100%;
    height: 100%;
    opacity: 0;
}
.dlab-box:hover .dlab-img-overlay12:before,
.dlab-img-overlay12:hover:before {
    opacity: 0.4;
}
.dlab-img-effect {
    position: relative;
    overflow: hidden;
    display: block;
}
.dlab-img-effect img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.dlab-img-effect.opacity img:hover {
    opacity: 0.8;
    -moz-opacity: 0.8;
    -webkit-opacity: 0.8;
}













:root {
    --color-primary: #f28237;
    --color-secondry: #7b4600;
    --color-hover: #571418;
}
#myNavbar li.active a,
.about-us .dlab-tabs .nav-tabs li.active a,
.active.current .project-owbx,
.active.current .project-owbx:after,
.bg-primary,
.blog-post.post-style-1 .dlab-post-meta:after,
.box-header .extra-nav .site-button:after,
.comments-area .comment-form p input[type="submit"],
.counter-staus-box .play-btn span,
.counter-style-5:after,
.date-style-2 .post-date,
.date-style-3 .post-date,
.date-style-3.skew-date .post-date,
.date-style-3.skew-date .post-date:before,
.date-style-4 .post-date strong,
.dlab-accordion.primary .acod-head a,
.dlab-box-bg.active .icon-box-btn .site-button,
.dlab-project-left:after,
.dlab-separator.style-skew[class*="style-"]:after,
.dlab-separator.style-skew[class*="style-"]:before,
.dlab-team11 .dlab-info,
.dlab-team1:hover .dlab-info,
.dlab-team1:hover .dlab-info:after,
.dlab-team4 .dlab-social-icon li a.site-button:hover,
.dlab-team5 .dlab-border-left:after,
.dlab-team5 .dlab-border-left:before,
.dlab-team5 .dlab-border-right:after,
.dlab-team5 .dlab-border-right:before,
.dlab-team5 .dlab-social-icon li a.site-button:hover,
.dlab-team6 .dlab-info:after,
.dlab-team6 .dlab-info:before,
.dlab-team6 .dlab-position,
.dlab-team6 .dlab-title:after,
.dlab-team6 .dlab-title:before,
.dlab-team9 .dlab-media.dlab-media-right .dlab-info-has,
.dlab-team9 .dlab-title,
.dlab-tilte-inner.skew-title:after,
.download-file,
.exhibition-carousel:after,
.ext-sidebar-menu ul.menu li.active a,
.ext-sidebar-menu ul.menu li:hover a,
.ext-sidebar-menu.sidebar-widget ul.menu li.current-menu-item a,
.ext-sidebar-menu.sidebar-widget ul.menu li:hover a,
.filters2 ul li a:after,
.footer-line:after,
.frame-box .footer-title:after,
.frame-box .header-nav .nav > li > a,
.frame-box .service-list li:after,
.frame-box .site-header.center .is-fixed .container > .logo-header,
.ft-contact,
.header-curve.ext-header .extra-nav:after,
.header-curve.ext-header .extra-nav:before,
.header-curve.ext-header .logo-header:after,
.header-curve.ext-header .logo-header:before,
.header-nav .nav > li .mega-menu > li > ul li > a:after,
.header-nav .nav > li .sub-menu li > a:after,
.header-nav .nav > li.active > a:after,
.header-nav .nav > li > a:after,
.header-sidenav .extra-nav,
.header-sidenav .is-fixed .extra-nav,
.header-style-4.style-1 .header-nav .nav > li.active a:before,
.header-style-4.style-1 .header-nav .nav > li:hover > a:before,
.icon-bx-ho [class*="icon-bx-"]:after,
.icon-bx-wraper.hover:hover,
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-sub-html,
.lg-toolbar,
.list-num-count > li:before,
.meet-ask-row:after,
.navstyle3 .header-nav .nav > li .sub-menu,
.navstyle3 .header-nav .nav > li > .mega-menu,
.overlay-primary-dark:after,
.overlay-primary-light:after,
.overlay-primary-middle:after,
.owl-btn-1.primary .owl-next,
.owl-btn-1.primary .owl-prev,
.owl-btn-2.primary .owl-next,
.owl-btn-2.primary .owl-prev,
.owl-dots-primary-big.owl-theme .owl-dots .owl-dot span,
.owl-dots-primary-full.owl-theme .owl-dots .owl-dot span,
.owl-item.active.center .testimonial-text,
.owl-slider-banner .owl-theme .owl-dots .owl-dot.active span,
.owl-slider-banner .owl-theme .owl-dots .owl-dot:hover span,
.owl-theme.dots-style-2 .owl-dots .owl-dot.active span,
.owl-theme.dots-style-3 .owl-dots .owl-dot.active span,
.owl-theme.dots-style-3 .owl-dots .owl-dot:hover span,
.pagination-bx.primary .pagination > li > a,
.pagination-bx.primary .pagination > li > span,
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover,
.portbox3 .portinner .port-down,
.portfolio-ic .dlab-img-overlay1:before,
.portfolio-sep,
.product-item-size .btn.active,
.request-form .input-group:after,
.request-form .request-form-header,
.searchform input[type="submit"],
.service-box-3 .title,
.service-box.style1:after,
.service-box.style3 .icon-bx-wraper:after,
.service-box.style4:hover .no,
.service-box.style5 .icon-content .link-btn,
.service-carousel .owl-next,
.service-carousel .owl-prev,
.service-media-bx:after,
.side-bar .widget_tag_cloud a:hover,
.sidenav ul li a:hover,
.site-button,
.site-filters .active > [class*="site-button"],
.site-footer.style1 .footer-bottom-in .footer-bottom-logo a,
.site-footer.style1 .footer-title:after,
.skew-angle:after,
.social-curve:after,
.social-curve:before,
.tabs-site-button .nav-tabs li a.active,
.tabs-site-button .nav-tabs li a.active:focus,
.tabs-site-button .nav-tabs li a.active:hover,
.testimonial-1 .quote-left:before,
.testimonial-12 .testimonial-detail,
.testimonial-2 .quote-left:before,
.testimonial-text.bg-primary,
.ui-widget-header,
.widget-title:after,
.widget_calendar table tbody td#today,
.widget_getintuch-pro-details .pro-details i,
[class*="list-"].list-box > li:before,
button.scroltop {
    background-color: #f28237;
}
.active > .site-button,
.bg-primary-dark,
.box-header .extra-nav .site-button:hover:after,
.btnhover13::after,
.btnhover14::after,
.btnhover15::after,
.comment-form .form-submit input:active,
.comment-form .form-submit input:focus,
.comment-form .form-submit input:hover,
.comments-area .comment-form p input[type="submit"]:active,
.comments-area .comment-form p input[type="submit"]:focus,
.comments-area .comment-form p input[type="submit"]:hover,
.owl-btn-1.primary .owl-next:hover,
.owl-btn-1.primary .owl-prev:hover,
.owl-btn-2.primary .owl-next:hover,
.owl-btn-2.primary .owl-prev:hover,
.pagination-bx.primary .pagination > li.active > a,
.pagination-bx.primary .pagination > li.active > span,
.pagination-bx.primary .pagination > li > a:hover,
.pagination-bx.primary .pagination > li > span:hover,
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover,
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover,
.searchform input[type="submit"]:active,
.searchform input[type="submit"]:focus,
.searchform input[type="submit"]:hover,
.sidenav .closebtn:focus,
.sidenav .closebtn:hover,
.site-button:active,
.site-button:focus,
.site-button:hover {
    background-color: #571418;
}
.about-us .dlab-tabs .nav-tabs li.active {
    border-right: 4px solid #571418;
}
.dlab-info-has.bg-primary,
.dlab-info-has.bg-secondry:hover,
.tp-bannertimer.tp-bottom {
    background-color: rgba(26, 188, 156, 0.9);
}
.about-8-service .icon-bx-wraper:hover a,
.acod-head a,
.acod-head a.collapsed:hover,
.acod-head a:after,
.acod-head a:hover,
.breadcrumb-row ul li a,
.call-action.style2 i.call-icon:after,
.comments-area p:before,
.contact-no .no,
.dlab-box-bg .icon-box-btn .site-button,
.dlab-post-meta i,
.dlab-post-meta ul li,
.dlab-post-meta.text-primary i,
.dlab-post-meta.text-primary ul li,
.dlab-post-meta.text-primary ul li a,
.dlab-tabs .nav-tabs > li > a i,
.filters2 ul li a i,
.frame-box .project-bx .info .title a,
.header-nav .nav > li .mega-menu > li ul a:hover,
.header-nav .nav > li .sub-menu li:hover > a,
.header-nav .nav > li.active > a,
.header-nav .nav > li.current-menu-item > a .header-nav .nav > li .sub-menu li a:hover,
.header-nav .nav > li:hover > a,
.header-nav .nav > li > a.nav-link.active,
.item-info-in ul li a:hover,
.list-2 li:hover:before,
.nav-dark.header-nav .nav > li .mega-menu > li ul a:hover,
.nav-dark.header-nav .nav > li .sub-menu li:hover > a,
.navstyle1 .main-bar.bg-primary .header-nav .nav > li.active > a,
.navstyle1 .main-bar.bg-primary .header-nav .nav > li:hover > a,
.overlay-icon .check-km i.icon-bx-xs,
.primary li:before,
.project-owbx i,
.section-full.bg-black .testimonial-15 .quote-left:before,
.section-full.bg-black .testimonial-15 .quote-right:after,
.section-full.bg-secondry .testimonial-15 .quote-left:before,
.section-full.bg-secondry .testimonial-15 .quote-right:after,
.service-box-4 .service-images i,
.service-list ul li i,
.site-button-link:hover,
.site-button.outline,
.site-filters.style1 li.active a,
.site-filters.style1.white li.active a,
.site-footer.style2 .widget.widget_getintuch li i,
.testimonial-1 .testimonial-position,
.testimonial-10 .testimonial-position,
.testimonial-13 .quote-left:before,
.testimonial-14 .testimonial-detail:after,
.testimonial-14.quote-left:before,
.testimonial-15 .quote-left:before,
.testimonial-15 .quote-right:after,
.testimonial-15 .testimonial-position,
.testimonial-2 .testimonial-position,
.testimonial-3 .quote-left:before,
.testimonial-3 .testimonial-position,
.testimonial-4 .testimonial-name:after,
.testimonial-9 .testimonial-position,
.text-primary,
.widget_rss ul .rss-date,
[class*="list-"].list-box.reverse > li:before,
[class*="list-"].style2.list-box > li:after,
a,
blockquote:before,
button.scroltop,
footer a:active,
footer a:focus,
footer a:hover,
footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a,
footer p a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
ol.comment-list li.comment .reply a {
    color: #f28237;
}
@media only screen and (max-width: 991px) {
    .nav-dark.header-nav .nav > li > a:active,
    .nav-dark.header-nav .nav > li > a:focus,
    .nav-dark.header-nav .nav > li > a:hover {
        color: #f28237;
    }
}
.counter-style-5:hover,
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover,
.navbar-toggle,
.navstyle3 .header-nav .nav > li .sub-menu,
.navstyle3 .header-nav .nav > li > .mega-menu,
.owl-slider-banner .owl-theme .owl-dots .owl-dot.active,
.owl-slider-banner .owl-theme .owl-dots .owl-dot:hover,
.owl-theme.dots-style-3 .owl-dots .owl-dot.active,
.owl-theme.dots-style-3 .owl-dots .owl-dot:hover,
.side-bar .widget_tag_cloud a:hover,
.site-button.outline,
.site-filters .site-button.outline,
.testimonial-4 .testimonial-pic,
.testimonial-4 [class*="quote-"],
.testimonial-4:after,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.widget_gallery li:hover,
blockquote,
button.scroltop,
button.scroltop.style3:after,
input[type="checkbox"] + label:hover:before,
input[type="checkbox"]:checked + label:before,
input[type="radio"] + label:hover:before {
    border-color: #f28237;
}
.owl-item.active.center .testimonial-8 .testimonial-text:after {
    border-top: 25px solid #f28237;
}
.dlab-tabs.border-top .nav-tabs > li.active > a {
    border-top-color: #f28237;
}
.comments-area .comment-form p input[type="submit"]:active,
.comments-area .comment-form p input[type="submit"]:focus,
.comments-area .comment-form p input[type="submit"]:hover {
    border-color: #571418;
}
.dlab-team4 .dlab-media:after {
    border-color: #f28237 #e6e5e5 #e6e5e5 #f28237 !important;
}
.bg-secondry,
.frame-box .header-nav .nav > li.active > a,
.frame-box .header-nav .nav > li > a:hover,
.lg-outer .lg-img-wrap,
.lg-outer .lg-item,
.lg-outer .lg-thumb-outer,
.lg-outer .lg-toogle-thumb,
.testimonial-14 .testimonial-detail {
    background-color: #7b4600;
}
.text-secondry {
    color: #2d3239;
}
a.text-primary:hover,
button.scroltop.white {
    color: #571418 !important;
}
.overlay-icon .check-km i.icon-bx-xs,
.site-footer .footer-bottom a:hover,
.text-primary,
footer .widget_services ul li a:hover {
    color: #f28237 !important;
}
.bg-primary,
.pagination-bx.gray .pagination > li.active > a,
.pagination-bx.gray .pagination > li > a:hover {
    background-color: #f28237 !important;
}
a.bg-primary:focus,
a.bg-primary:hover {
    background-color: #571418 !important;
}
.about-year span,
.dlab-team11 .dlab-media,
.dlab-team11-area.dots-theme.owl-theme .owl-dots .owl-dot.active span,
.frame-box .about-box,
.img-ho1:after,
.service-box-4:hover .service-images img,
.testimonial-14 {
    border-color: #f28237 !important;
}
.testimonial-14 .testimonial-detail:after,
.testimonial-14 .testimonial-detail:before {
    border-top-color: #f28237 !important;
}
.contact-no .contact-left {
    border-right-color: #f28237 !important;
}
button.scroltop {
    box-shadow: -4px 4px 24px -10px #f28237 !important;
}
.navstyle2 .header-nav .nav > li.active > a:after,
.navstyle2 .header-nav .nav > li:hover > a:after {
    box-shadow: inset 0 0 0 2px #f28237;
}


.megamenu{
    width: 100%;
    background: #0a3041;
    z-index: 99999999999;
    position: absolute;
    top: 12%;
    min-height: 400px;
}

.megasubli{z-index: 99999999 !important;}
.megasubli a{z-index: 99999999 !important;}

.dropdown-lists-mega{width: 290px !important;}

.activitiesarea{background: #f28237;padding: 20px;color: white;width: 100%;margin-bottom: 30px;}
.activitiesarea p{color: white;}
.activitybox{
    -webkit-box-shadow: 0 0 7px 0px grey;
    -moz-box-shadow: 0 0 7px 0px grey;
    box-shadow: 0 0 7px 0px grey;
    margin-bottom: 30px;
    border-radius: 2px;
}
.actcontent{padding: 90px 10px 10px 20px;}

.owl-carousel .hero-bg-2 img {
  display: block;
  width: 100%;
  height: auto;
}

.slide-progress {
  width: 0;
  max-width: 100%;
  height: 4px;
  background: #f28237;
}

.homedetail{z-index: 99999999999999 !important;position: absolute;

}

.center{}
.img-responsive{width: 100% !important;}
.bx-wrapper .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item{display: block !important;}





