@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --theme: #FF8907;  
    --black: #000;
    --gray: #353535;
    --gray-200:#F8F8F8;
    --gray-100:#FBFBFB;
    --white: #ffffff;
    --rounded-6: 0.375rem;
    --rounded-10: 0.625rem;
    --rounded-16: 1rem;
    --rounded-20: 1.25rem;
    --rounded-30: 1.875rem;
    --rounded-50: 3rem;
    --transition: all .4s linear;
    --fontmontserrat: "Montserrat", sans-serif;
    --font-sm: 0.75rem;
    --font-md: 0.875rem;
    --font-lg: 1rem;
    --font-xl: 1.125rem;
    --font-2xl: 1.25rem;
    --font-3xl: 1.375rem;
    --font-4xl: 1.5rem;
    --font-5xl: 2rem;
    --font-6xl: 2.5rem;
    --font-xxl: 3rem;
}


/*--------------------------------------*/

/*Element Base
/*--------------------------------------*/
body {
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-style: 400;
    background: #fff;
    color: var(--gray);
    overflow-x: hidden;

}
.icon{
    width:4rem;
}
/*--------------------------------------*/

/*Typography
/*--------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.813rem;
    color: var(--white);
}

h2 {
    font-size: 2.375rem;
}

h2 strong{
    color:var(--theme);
      font-weight: 700;
}
h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.375rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--gray);
}

h6 {
    font-size: 1rem;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;

}

.font-sm {
    font-size: var(--font-sm);
}

.font-md {
    font-size: var(--font-md);
}

.font-lg {
    font-size: var(--font-lg);
}

.font-xl {
    font-size: var(--font-xl);
}

.font-2xl {
    font-size: var(--font-2xl);
}

.font-3xl {
    font-size: var(--font-3xl);
}

.font-4xl {
    font-size: var(--font-4xl);
}

.font-5xl {
    font-size: var(--font-5xl);
}

.font-6xl {
    font-size: var(--font-6xl);
}

.font-xxl {
    font-size: var(--font-xxl);
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0 !important;
}

ul li a {
    text-decoration: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary);
    font-weight: 600;
}

a:hover {
    color: var(--theme);
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}
.pb-70 {
    padding-bottom: 70px!important;
}
.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-80 {
    margin-bottom: 80px;
}


.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.w-16 {
    width: 16px !important;
}

.h-16 {
    height: 16px !important;
}

.top--50 {
    top: -50px;
}

.bg-dark{
    background: var(--gray);
}

.bg-theme {
    background: var(--theme);
}

.bg-gray-200 {
    background:var(--gray-200)
}
.bg-gray-100 {
    background:var(--gray-100)
}
.text-blue {
    color: var(--blue);
}
.text-theme{
    color: var(--theme);
}
.border.border-color {
    border-color: var(--warning) !important;
}
.list-styled {
  list-style: disc;
  padding-left: 1.5rem;
}
#scrollTop {
    z-index: 99;
    cursor: pointer;
    border: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    background: var(--theme);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    display: none;
    transition: 0.6s all ease-in-out;
    -moz-transition: 0.6s all ease-in-out;
    -ms-transition: 0.6s all ease-in-out;
    -webkit-transition: 0.6s all ease-in-out;
    border-radius: 50%;
}

#scrollTop i {
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTop:hover {
    background-color: var(--black);
}
main li {
    line-height: 2;
}
/*--------------------------------------*/

/*Buttton
/*--------------------------------------*/
.btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    padding: .65rem 2rem;
    border-radius:30px;
    border: none;
    display: inline-flex;
    align-items: center;
        transition: all .4s;
    font-size: 1rem;
    line-height: 1.5;

}

.btn.btn-primary {
    background: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);


}

.btn.btn-primary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn.btn-white {
    background: var(--white);
    color: var(--theme);
}

.btn.btn-white:hover {
    background: var(--black);
    color: var(--white);
}

.btn.btn-sm {
    font-weight: 600;
    padding: .5rem 1.25rem;
    font-size: .9rem;
}

.btn.btn-secondary {
    background: var(--blue);
    border: 1px solid var(--blue);
}

.btn.btn-secondary:hover {
    background: transparent;
    color: var(--blue);
}

.btn.btn-outline-white {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--theme);
}

.btn-rounded {
    border-radius: 4rem;
    padding: .5rem .5rem .5rem 1.25rem;
    box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .2);
}

.btn-rounded i {
    background-color: #fff;
    color: var(--warning);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-close {
    position: absolute;
    z-index: 1;
    opacity: 1;
    color: #fff;
    right: 1rem;
    top: 1rem;
    padding: .75rem !important;
    background: url(../images/close-icon.svg) no-repeat center;
    background-color: var(--warning);
    border-radius: 50%;
}

.btn img {
    transition: all .4s;
}

.btn.btn-outline-primary {
    border: 1px solid var(--theme);
    color: var(--theme) !important;
}

.btn.btn-outline-primary:hover {
    background-color: var(--theme);
    color: var(--white) !important;
}

.btn-close:hover {
    opacity: .8;
}

.form-select,
.form-control {
    padding: .65rem 2rem;
    border-radius: 0;
}

.input-group>.form-control{
    border-radius: .45rem;
}

.sepration {
    padding-top: 80px;
}

.sepration-y {
    padding: 70px 0;
}

.z-index-9 {
    z-index: 9;
}

.text-justify {
    text-align: justify;
}

.img-fluid {
    object-fit: cover;
}

.modal-content {
    border-radius: var(--rounded-20);
    box-shadow: 0px 0px 20px 1px rgba(255, 255, 255, .3);
    overflow: hidden;
    border: 4px solid var(--white);
}

.rounded-0 {
    border-radius: 0;
}

.rounded-6 {
    border-radius: var(--rounded-6);
}

.rounded-10 {
    border-radius: var(--rounded-10);
}

.rounded-16 {
    border-radius: var(--rounded-16);
}

/*.rounded-20 {
    border-radius: var(--rounded-20);
}
*/
.rounded-50 {
    border-radius: var(--rounded-50);
}

.bg-theme {
    background: var(--theme);
}

.height-auto {
    height: auto !important;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

.max-width-900 {
    max-width: 900px;
}


/*--------------------------------------*/

/*Header
/*--------------------------------------*/
header .header-top{
    font-size: .825rem;
    font-weight: 400;
    opacity: 1;
    transition: all .4s linear;
}
header .btn-wrap {
    right: 1rem;
    top: 0;
}

header .btn.btn-primary {
    background-color: var(--theme);
    font-size: 12px;
    font-weight: 400;
    border-color: var(--theme);
}

header .btn.btn-primary:hover {
    color: var(--theme);
    border-color: var(--theme);
}

.navbar-brand img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: all .4s linear;
}

.navbar-toggler-icon {
    width: 2em;
}
.navbar-toggler-icon svg{
    width: 100%;
}
.fixed-top.sticky .navbar-toggler  svg path{
    fill:#000!important;
}
.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 105;
}

.navbar-brand {
    height: 112px;
    width: auto;
    transition: all .4s linear;
}
.navbar-brand .logo{
    height: 112px;
}
.navbar-brand .scroll{
    display: none;
    opacity: 0;
}
.navbar {
    padding: 1.5rem 0;
    justify-content: center;
    background: transparent;
    transition: all .4s linear;
}



.navbar .nav-link {
    font-size: 1rem;
    opacity: 1;
    font-weight: 600;
    padding: .35rem 1.25rem !important;
    transition: all .5s;
    margin: 0 .25rem;
    position: relative;
    color: var(--white);
    font-family: var(--fontmontserrat);
    border-radius: 2rem;

}

.nav-item.dropdown:hover > .nav-link,
.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--white);
    background: var(--theme);
}

.navbar-nav .nav-link.show {
    color: var(--theme);
}
.fixed-top.sticky .header-top{
    display: none;
    opacity: 0;
}
.fixed-top.sticky .header-top {
    opacity: 0;
}
.fixed-top.sticky .navbar-brand .logo,
.fixed-top.sticky .navbar-brand{
    height: 70px;
}
.fixed-top.sticky .navbar-brand .noScroll{
    display: none;
    opacity: 0;
}
.fixed-top.sticky .navbar-brand .scroll{
    display: block;
    opacity: 1;
}

.fixed-top.sticky .navbar {
    padding: 1rem 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -ms-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
}

.fixed-top.sticky .navbar .nav-link {
    color: var(--black);
}
.nav-item.dropdown:hover > .nav-link,
.fixed-top.sticky .navbar .nav-link.active, .fixed-top.sticky .navbar .nav-link:hover{
    color: var(--white);
}
.offcanvas {
    background:#2b2b2b;
    height: 100vh;
}

.dropdown-toggle::after {
    background: url(../images/arrow-down.svg) no-repeat;
    width: 10px;
    height: 8px;
    background-position: center;
    background-size: 14px;
    position: relative;
    top: 3px;
    border: 0;
    left: 2px;
    display: none;
}

.dropdown-menu {
    padding: 0rem 0rem;
    border: 0;
    font-size: .875rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, .1);
    border-radius:.5rem;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
    margin: 0;
    margin-left: .25rem;
    width: 15rem;
}
   
.dropdown-item{
 white-space:unset;
}

.dropdown-menu li {
    border-bottom: 1px solid #f2f2f2;
}
.dropdown-menu li:hover:first-child .dropdown-item{
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}
.dropdown-menu li:hover:last-child .dropdown-item{
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
}
.dropdown-menu li:last-child {
    border: 0;
}

.dropdown-menu li .dropdown-item {
    padding: .65rem 1rem;
}

.dropdown-menu li .dropdown-item:hover {
    background: var(--theme);
    color: var(--white);
}


.dropdown-menu {
  -webkit-transition: all .5s, background, 2s .5s linear;
  transition: all .5s, background 2s .5s linear;
  overflow: hidden;
}
.dropdown:hover .dropdown-menu {
  overflow: visible; 
}



.dropdown-menu {display: block; visibility: hidden;opacity:0;transform: translateY(50px);transition:.5s ease all;}
.dropdown:hover .dropdown-menu{display: block;visibility: visible;opacity:1;transform: translateY(0px);transition:.5s ease all;}


.navbar-toggler {
    border: 0;
    padding: 0;
    margin-left: 1rem;
}
.navbar-toggler:focus {
    box-shadow: none;
    padding: 0;
}
.navbar-toggler-icon {
    background: url(../images/toggler-icon.svg) no-repeat center;
}

header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0px;
}

/*--------------------------------------*/

/*Hero Banner Section
/*--------------------------------------*/

.hero-slider {
    margin-bottom: 2rem; 
 
}

.hero-slider .img-banner {
    height: 100%;
    object-fit: cover;
    object-position:  top right;
     height: 90vh;
}


.hero-slider .caption {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .4);

}

.hero-slider .icon{
    width: 4rem!important;
    height: 4rem;
    border-radius: 50%;
    object-fit:contain;
    background-color: #fff;
    margin-right: .5rem;
    border: .25rem solid #FFF;
   
}


.hero-slider .caption .caption-widget {   
    max-width: 650px;
    color: var(--white);
    margin-top: 5rem;
}

.hero-slider .caption h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
}
.hero-slider .caption p{
    font-size: 1.25rem;
    font-weight: 600;
}
.hero-slider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.hero-slider .owl-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    width: 84%;
    margin: 0 8%;
    display: flex;
    justify-content: space-between;
}

.hero-slider .owl-nav button.owl-prev span,
.hero-slider .owl-nav button.owl-next span {
    display: none;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
    background-color: var(--theme);
    display: inline-block;
    width: 3.25rem;
    height: 3.25rem;
    line-height: 1;
    border-radius: 3rem;
    margin-left: .75rem;
    font-size: 2rem;
    transition: all .4s;
}

.hero-slider .owl-nav button.owl-prev {
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next {
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
       transform: rotate(180deg);
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
    background: var(--primary);
    opacity: .7;
}

.hero-slider .owl-nav button.owl-prev:hover {
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-nav button.owl-next:hover {
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .owl-dots {
    position: absolute;
    z-index: 99;
    width: 100%;
    bottom:34px;
    text-align: center;

}

.hero-slider .owl-dots .owl-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 1rem;
    background-color: #fff;
    margin: 0 .15rem;
}

.hero-slider .owl-dots .owl-dot.active {
    background-color: var(--theme);
}

.hero-banner .caption .caption-widget h1 {
    font-size: 3rem;
}
.hero-slider video{
    filter: blur(4px)
}
.hero-slider .hero-carousel{
    position: absolute;
    width: 100%;
    height: 90vh;
    left: 0;
    top: 0;
    background:rgb(0, 0, 0, .6);
    display: flex;
    align-items: center;


}
.hero-slider .hero-carousel .caption{
   position: relative;
   background: transparent;
}

.inner-banner{
    height: 370px;
    background-image: -moz-linear-gradient( -4deg, rgb(189,105,12) 0%, rgb(96,83,53) 36%, rgb(2,60,93) 99%);
    background-image: -webkit-linear-gradient( -4deg, rgb(189,105,12) 0%, rgb(96,83,53) 36%, rgb(2,60,93) 99%);
    background-image: -ms-linear-gradient( -4deg, rgb(189,105,12) 0%, rgb(96,83,53) 36%, rgb(2,60,93) 99%);
}

.hero-slider.inner-banner .caption{
    height: inherit;
}
.hero-slider.inner-banner .caption .caption-widget {
        margin-top: 13rem;
        max-width: 100%;
        text-align: right;
}
.hero-slider.inner-banner .caption .caption-widget h1{
    font-size: 3rem;
}
.hero-slider.inner-banner .caption p{
    font-size: 1rem;
}
/*--------------------------------------*/

/*Certified Icons Section
/*--------------------------------------*/
.certified-icons-section h6{
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/*--------------------------------------*/

/*Services Section
/*--------------------------------------*/
.service-block{
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    padding:4rem;
    margin: 1rem .75rem;
    background: var(--white);
    border-radius: 10px;
}
.service-block h4{
    color: var(--gray);
    padding: 0 2rem;
}
.service-block .img-fluid{
    max-width: 80px;
    height: 80px;
    margin: auto;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}
.gray-scale{
     filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
}
.service-block p{
    display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.service-slider .owl-nav,
.service-slider .owl-nav.disabled{
    display: block;
    position: absolute;
    top:-5rem;
    right:15%;
}
.service-slider .owl-nav button span{
    display: none;
}
.service-slider .owl-nav button.owl-next,
.service-slider .owl-nav button.owl-prev{
    background: url(../images/arrow.svg) no-repeat;
    width: 3rem;
    height: 3rem;
    margin: .5rem;
    transition: all .4s;
}
.service-slider .owl-nav button.owl-next{
    transform: rotate(-180deg);
}
.service-slider .owl-nav button:hover{
    opacity: .5;
}

.client-slider .img-fluid{
    height: auto;
    max-width: 100px;
    margin: auto;
}

.what-we-do-section{
   /* background: #072e43 url(../images/earth-bg.png) no-repeat;*/
    background: #274375;
    background-size: 50%;
    background-attachment: fixed;
    background-position: center;
}
.what-we-do-section h2,
.what-we-do-section h4{
    color: #fff;
}
.what-we-do-section .img-fluid{
    border: 0px solid var(--white);
    border-left:6px solid #3458a2;
    border-right:6px solid #3458a2;
     border-top:6px solid #3458a2;
    border-bottom:6px solid #3458a2;
    
}

.testimonial-section{
    background: #F6F2ED;
}
.testimonial-block{
    margin: 2rem .75rem;
    padding: 2rem 2rem 3rem;
    min-height: 28rem;

    display: flex;
    align-items: center;
    justify-content: center;
     
}
.testimonial-block .avatar{
    width: 4rem!important;
    min-width: 4rem;
    height: 4rem;
    border-radius: 50%;
}
.testimonial-block .info::after,
.testimonial-block .info::before{
    background: url(../images/open-comma.png) no-repeat;
    display: inline-block;
    content: '';
    width:1.5rem;
    height: 1.25rem;
    margin-right: .5rem;
    position: relative;
}
.testimonial-block p{
    padding:0 10px;
    min-height: 8rem;
}
.testimonial-block .info{
    line-height: 1.75;
}
.testimonial-block name{
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--theme);
}
.testimonial-block .postname{
    color: #808080;
    font-size: 0.875rem;
    font-weight: 600;
}
.rating{
    color:#FFC107;
}
.testimonial-block .info::after{
    transform: rotate(180deg);
    margin-left: .5rem;
    top:.5rem
}
.service-slider .owl-dots,
.testimonial-slider .owl-dots{
    text-align: center;
    margin-top:30px
}
.service-slider .owl-dots,
.what-we-slider .owl-dots{
    margin-top: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    padding-top: 20px;
}
.service-slider .owl-dots .owl-dot,
.what-we-slider .owl-dots .owl-dot,
.testimonial-slider .owl-dots .owl-dot{
    width: .74rem;
    height: .75rem;
    background: #ccc;
    border-radius: 1rem;
    margin: .25rem;
}
.service-slider .owl-dots .owl-dot.active,
.what-we-slider .owl-dots .owl-dot.active,
.testimonial-slider .owl-dots .owl-dot.active{
    background: var(--theme);
    width: 1rem;
    height: 1rem;
    position: relative;
    top:.15rem
}

.card.service-card{
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 30px -10px rgba(51, 51, 51, 0.1);
    box-shadow: 0 18px 40px -10px rgba(51, 51, 51, 0.1);
    position: relative;
    margin-bottom: 30px;
    margin: 1.25rem 1.5rem 3rem;
    border: 0;
	cursor:pointer;
	transition:all .4s;
}
.card.service-card:hover{
	 box-shadow: 0 18px 40px 20px rgba(51, 51, 51, 0.1);
}
	
.card.service-card .card-body{
    min-height: 12rem;
}
.card.service-card .card-title {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 2px;
    color: #333 !important;
     font-size: 1.15rem;
}
.card.service-card .sub-title{
    color:var(--theme);
    margin-bottom: 2px;
    font-weight: 500;
     font-size: .85rem;
    
}
.card.service-card .card-text{
    font-size: .85rem;
}

.work-process-section .work-process-block{
    border:1px solid #D9D9D9;
    padding: 2.5rem 2.75rem;
}
.work-process-section .work-process-block .count{
    height: 3.75rem;
    min-width: 3.75rem;
    color: var(--white);
    background-color: var(--theme);
    border-radius:50%;
    font-size: 1.75rem;
    font-weight: 700;

  
}
.work-process-section .work-process-block p{
    margin-bottom: 0;
}
/*--------------------------------------*/

/*Footer
/*--------------------------------------*/


footer {
    background: #EF8006 url(../images/footer-img.png) no-repeat;   
    background-image: -moz-linear-gradient( -4deg, rgb(189,105,12) 0%, rgb(96,83,53) 36%, rgb(2,60,93) 99%);
    background-image: -webkit-linear-gradient(-4deg, rgb(189, 105, 12) 0%, rgb(96, 83, 53) 36%, rgb(2, 60, 93) 99%);
    background-image: -ms-linear-gradient( -4deg, rgb(189,105,12) 0%, rgb(96,83,53) 36%, rgb(2,60,93) 99%);
    background-size: cover;
    font-size: 1rem;
    color: var(--white);
}

footer p {
    font-size: 1rem;
    line-height: 1.4;
}

footer h4 {
    color: #fff;
    font-size: 1.25rem;
}

footer ul {
    margin-top: 1rem;
}

footer li {
  margin-bottom: 1rem;
}

footer a {
    color: var(--white);
    font-weight: 400;
}

footer a:hover {
    color: var(--primary);
}

footer .footer-last {
    background: #bf6a0c;
    font-size: .85rem;
}
.send-btn{
    color: var(--theme);
}
.send-btn:hover{
    color: #353535;
}


/*--------------------------------------*/

/*Inner Pages
/*--------------------------------------*/
.nav-tabs .nav-link{
    font-weight: 600;
    color: #000;
    border-radius:  2rem!important;
    border: 1px solid transparent;
    font-size: var(--font-md);
    padding: .45rem 1.25rem;
}
.nav-tabs .nav-item{
    margin: 0 .15rem;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active{

    color:var(--theme);
        border: 1px solid var(--theme);
   
}
.noContent,
.workGridContainer,
.workGridContainer1,
.workGridContainer2 {  
  display: none; 
}
.btn.btn-loadmore{
    min-width: 300px;
   justify-content: center;
}
.brand-logo{
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    padding:2rem 4rem;
}
.product-block{
    cursor: pointer;
}
.product-block .img-widget{
    background: #fff;
    border: 2px solid var(--gray-200);
    box-shadow: inset 0px 0px 40px rgba(0, 0, 0, 0.03);
    padding: 2rem 1rem;

}
.product-block .img-widget .caption{
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background: rgb(0, 0, 0, .6);
    padding: 2rem 0;
    opacity: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -ms-transition: all .4s;
}
.product-block:hover .img-widget .caption{
    opacity: 1;
}
.product-block:hover .btn.btn-outline-primary{
    background: var(--theme);
    color: var(--white)!important;
}
.product-block .img-fluid{
    max-width: 350px;
    height: 200px;
    margin: auto;
    display: block;
    object-fit: contain;
}
.h4{
    font-size: 1.5rem;
    font-weight: 700;
}
.accordion-item{
    margin-bottom: .25rem;
}
.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button{
    border-radius: 0;
    border: 0;
        box-shadow: none;
}
.accordion-button h5{
    font-size: 1rem;
}
.accordion-button:not(.collapsed){
    border-radius: 0;
    background-color: var(--theme);
    color: var(--theme);
    
}
.accordion-button:not(.collapsed) h5{
    color: var(--white);
}
.accordion-button{
     font-weight: 700;
     padding: .65rem 1.25rem;
     background: #f2f2f2;
  
}
.accordion-button:focus{
    box-shadow: none;
    outline: none;
}
.accordion-body{
   padding: 0rem 0rem .75rem;  
}
.accordion-item{
    border: 0;
}
/*--------------------------------------*/

/*Responsive
/*--------------------------------------*/
@media all and (max-width: 1680px) {
    .service-block{
        padding: 3rem;
    }
    .service-block h4 {   
        padding: 0 0rem;
    }
}
@media all and (max-width: 1199px) {
    h2 {
        font-size: 2.25rem;
    }
    .navbar-brand,
    .navbar-brand .logo{
        height: 80px;
    }
    .fixed-top.sticky .navbar-brand .logo, 
    .fixed-top.sticky .navbar-brand {
        height: 40px;
    }
    .navbar-brand .logo{
        margin-top:-.35rem
    }
    .navbar .nav-link {
        font-size: .875rem;
        padding: .32rem .75rem!important
    }

    .fixed-top.sticky .navbar-brand img {
        height: 45px;
    }

    .navbar-toggler {
        top: 50%;
    }
   
    .hero-slider img {
        height: 750px;
    }
    .hero-slider .caption .caption-widget{
        margin-top: 4rem;
    }
    .hero-slider .caption h1 {
        font-size: 2.25rem;    
    }
    .hero-slider .caption p {
        font-size: 1.25rem;
    }

    .service-block {   
        padding: 2.5rem;
        margin: 1rem .5rem;    
    }
 
}

@media all and (max-width: 991px) {
    .sepration-y{
        padding: 50px 0;
    }
    h2 {
        font-size: 2rem;
    }
    h4 {
    font-size: 1.25rem;
    }
    .navbar-brand, .navbar-brand .logo {
        height: 60px;
    }
    
    .navbar {
        padding: 1rem 1rem 1rem .5rem;
    }
    
    .navbar .nav-link {
        margin: 0;
        color: #fff;
        padding: .75rem 1.5rem !important;
        font-size: 1rem;
        border-radius: var(--rounded-6);
    }
    .fixed-top.sticky .navbar .nav-link{
        color: #fff;
    }
    .dropdown-menu{
        min-width: 100%;
        margin: 0;
    }
    .navbar-nav .nav-link.show {
        color: var(--warning);
    }

    .fixed-top.sticky .navbar {
        padding: .5rem 1rem .5rem .5rem;
    }

    .navbar-brand {
        height: 60px;
    }

    .hero-slider img {
        height: 600px;
    }
     .service-block {
        padding: 4rem;
        margin: 1rem;
    }
    .service-block h4 {   
        padding: 0 2rem;
    }  
    .service-slider .owl-nav, .service-slider .owl-nav.disabled{
        display: none;
    }
    .service-slider .owl-dots {
        margin-top: 0;
        position: absolute;
        text-align: center;
        width: 100%;
        padding-top: 20px;
    }
    .inner-banner {
        height: 320px;
    }
    .nav-tabs .nav-item {
        margin: 0 0rem;
    }
    .nav-tabs .nav-link{
        padding: .45rem 1rem;
    }
    .hero-slider.inner-banner .caption .caption-widget {
        text-align: center;
        margin-top: 9rem;
    }
    .hero-slider.inner-banner .caption .caption-widget h1 {
        font-size: 2.5rem;
    }
   .dropdown-menu{
        display:  none;
    }
}

@media all and (max-width: 767px) {
    h2 {
        font-size: 1.75rem;
    }
    h4 {
        font-size: 1rem;
    }
    .hero-slider .caption .caption-widget{
        text-align: center;
    }
    .hero-slider .caption h1 {
        font-size: 2rem;
    }
    .hero-slider .caption p {
        font-size: 1.05rem;
    }
    .service-slider .owl-nav, .service-slider .owl-nav.disabled{
        display: none;
    }
    h3 {
    font-size: 1.5rem;
    }
}

@media (max-width: 567px) {
        h6 {
    font-size: .875rem;
    line-height: 1.5;
}
     .hero-slider.inner-banner .caption .caption-widget h1 {
        font-size:1.75rem;
    }
    .hero-slider .img-banner.center-pos {
        object-position:center ;
    }

}

@media (max-width: 480px) {
    .client-slider .img-fluid {
        max-width: 64px;
    }
}

.border-top-right{
    border-top-right-radius: 4rem;
}
.border-top-left{
    border-top-left-radius: 4rem;
}

.img-wrap{
    min-height: 500px;
}
.img-wrap2{
    min-height: 600px;
}

.img-wrap3{
    max-height: 400px;
}

.field-validation-error{
    font-size:12px;
    color:#ff0000;
}