@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #ff9e32;
  --primary-dark: #e27a06;
  --secondary: #1261ac;
  --secondary-dark: #062848;
  --body-font-color: #626262;
  --black: #000;
  --white: #fff;
  --gray: #777;
  --light: #f5f5f5;
  --bg-light: #f5f5f5;
  --eee: #eee;
  --ccc: #ccc;
  --aaa: #aaa;
  --c333: #333;
  --c555: #555;
  --c777: #777;
  --c999: #999;
  --bg-footer: #1261ac;
  --bg-copyright: #062848;
  --border-rad-0: 0;
  --border-rad-5: 5px;
  --border-rad-8: 8px;
  --border-rad-10: 10px;
  --border-rad-50p: 50%;
}

body,html{
}
body{
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: var(--body-font-color);
  position: relative;
  height: 100%;
  overflow-x: hidden;
  background: var(--bg-light)
}

h1,h2,h3,h4, h5, h6{
  font-family: 'Roboto Condensed';
  font-weight: 400;
  margin-bottom: 20px
}
h1 span,h2 span,h3 span,h4 span, h5 span, h6 span{
  font-family: 'Roboto Condensed';
  font-weight: 300
}
h1{
  font-size:40px;
  font-weight: 500; 
}
h2{
  font-size:36px;
  font-weight: 500; 
}
h3{
  font-size:30px;
}
h4{
  font-size:24px;
}
h5{
  font-size:20px;
}
h6{
  font-size:18px;
}

textarea{
  resize: none
}

a{
  color: var(--primary);
  text-decoration: none;
  transition: ease-in-out 0.2s
}
a:hover{
  color: var(--primary-dark);
}

.img-thumbnail,.btn, .form-control{
  border-radius: var(--border-rad-5);
}
.form-group{
  margin-bottom: 20px;
}
.form-control{
  font-size: 16px;
  padding: 10px 16px;
  height: auto;
  min-height: 46px
}
.form-control:focus{
  box-shadow: none;
  border-color: var(--primary)
}
.border-rad-0{
  border-radius: var(--border-rad-0);
}
.border-rad-5{
  border-radius: var(--border-rad-5);
}
.border-rad-10{
  border-radius: var(--border-rad-10);
}
.border-rad-50p{
  border-radius: var(--border-rad-50p);
}
.btn{
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 15px 20px!important;
  line-height: 1;
  transition: ease-in-out 0.2s;
  min-height: 46px;
}
.btn.btn-sm{
  font-size: 14px;
  padding: 10px 20px!important;
  min-height: 30px;
}
.btn-primary{
  background: var(--primary);
  border-color:var(--primary);
  color: var(--white);
}
.btn-primary:hover,.btn-primary:active,.btn-primary:focus,.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}
.btn-outline-primary{
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover,.btn-outline-primary:active,.btn-outline-primary:focus{
  background: var(--primary);
  border-color:var(--primary);
  color: #fff;
}
.btn-secondary{
  background: var(--secondary);
  border-color:var(--secondary);
  color: var(--white);
}
.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active{
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white)
}
.btn-light{
  background: var(--light);
  border-color:var(--light);
  color: var(--black);
}
.btn-light:hover,.btn-light:focus,.btn-light:active{
  background: var(--black);
  border-color: var(--black);
  color: var(--white)
}
.btn-dark{
  background: var(--c555);
  border-color:var(--c555);
  color: #ddd;
}
.btn-dark:hover,.btn-dark:focus,.btn-dark:active{
  background: var(--black);
  border-color: var(--black);
  color: var(--white)
}
.text-primary{
  color: var(--primary)!important;
}
.text-secondary{
  color: var(--secondary)!important;
}
.text-gray{
  color: var(--gray);
}
.bg-primary{
  background: var(--primary)!important;
  color: #fff
}
.bg-secondary, .bg-dark{
  background: var(--secondary)!important;
  color: #fff
}
.bg-secondary-dark{
  background: var(--secondary-dark)!important;
  color: #fff
}
.bg-light{
  background: var(--bg-light)!important;
}
.lead{
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px
}
.lead-lg{
  font-size: 22px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 25px
}
.owl-carousel:not(.owl_home_main){
  padding: 0 35px
}
.owl-carousel:not(.owl_home_main) .owl-stage{
  padding-bottom: 30px
}

.owl-theme .owl-nav{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
  margin: 0
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
  width: 32px;
  height: 32px;
  font-size: 14px;
  background: var(--c777);
  opacity: 0.8;
  color: #fff;
  z-index: 100;
  border-radius: var(--border-rad-50p);
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover{
  background: var(--primary);
  opacity: 1
}
.owl-prev{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%)
}
.owl-next{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}
.owl-prev i,.owl-next i{
  padding-top: 1px
}
.owl-theme .owl-dots {
  position: absolute;
  margin: 0;
  z-index: 6;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.owl-theme .owl-dots .owl-dot span{
  width: 14px ;
  height: 14px;
  border-radius: var(--border-rad-50p);
  margin: 5px;
  background: var(--c999)
}
.owl-theme .owl-dots .owl-dot.active span{
  background: var(--black)
}

.owl-carousel.owl_whatwedo .owl-prev{
  left: 50px
}
.owl-carousel.owl_whatwedo .owl-next{
  right: 50px
}
.owl-carousel.owl_whatwedo.owl-theme .owl-dots{
  bottom: 10px
}


/*header*/
header{
  background: var(--secondary-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 15px
}
header a.header-link{
  color: var(--white)
}
header a.header-link:hover,header a.header-link:active,header a.header-link:focus{
  color: var(--primary);
  text-decoration: none
}
header .header-link i{
  width: 30px;
  height: 30px;
  border-radius: var(--border-rad-50p);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--c555);
  transition: ease-in-out 0.2s;
  margin-right: 2px;
}
header .header-link:hover i{
  background: var(--primary);
  color: var(--white);
}

header .icon{
  width: 30px;
  height: 30px;
  border-radius: var(--border-rad-50p);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--c555);
  transition: ease-in-out 0.2s
}
header .icon+.icon{
  margin-left: 5px
}
header .icon:hover{
  background: var(--primary);
  color: var(--fff);
}
header .icon i{
  font-size: 18px;
}
header .btn{
  margin-left: 10px;
  padding: 8px 20px
}
header .dropdown-item{
  font-size: 14px;
  padding: 8px 15px
}

.navbar{
  padding:0;
  transition: ease-in-out 0.1s;
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0px 10px 20px #3333
}
.navbar-brand{
}
.navbar-brand img{
  max-width: 160px
}
.navbar-expand-lg .navbar-nav .nav-item{
  margin-left: 30px
}
.navbar-expand-lg .navbar-nav .nav-link{
  color: var(--secondary);
  padding:12px 0;
  line-height:1;
  text-transform: uppercase;
  font-weight: 500;
  position: relative
}
.navbar-expand-lg .navbar-nav .nav-link.phone{
  font-weight: 600;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,.navbar-expand-lg .navbar-nav .nav-link:focus,.navbar-expand-lg .navbar-nav .active .nav-link{
  color: var(--primary);
}

.navbar-expand-lg .navbar-nav .nav-link:before{
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  border-bottom: 2px solid var(--primary);
  transition: ease-in-out 0.2s
}
.navbar-expand-lg .navbar-nav .nav-link.btn:before{
  display: none
}
/*.navbar-expand-lg .navbar-nav .nav-link.btn:hover{background: var(--white); color: #000!important}*/
.navbar-expand-lg .navbar-nav .nav-link:hover:before{
  width: 100%;
}

.navbar .dropdown-menu{
  padding:5px 0;
  min-width: 200px
}
.navbar .dropdown-item{
  font-size: 16px;
  padding: 10px 20px;
  transition: ease-in-out 0.2s
}
.navbar .dropdown-item+.dropdown-item{
  border-top: 1px solid #eee
}
.navbar .dropdown-item.active, .navbar .dropdown-item:active, .navbar .dropdown-item:hover, .navbar .dropdown-item:focus{
  color: var(--primary);
  background-color: var(--light);
}
.dropdown-item.active, .dropdown-item:hover, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--c777);
}

/*menu*/
.navbar-toggler {
  font-size: 24px;
  padding: 10px;
  border: 0;
}
.navbar-toggler:focus{
  box-shadow: none
}
.navbar-toggler i{
  color: var(--primary)
}
.navbar-toggler.collapsed .la-times, .navbar-toggler .la-bars{
  display: none
}
.navbar-toggler.collapsed .la-bars, .navbar-toggler .la-times{
  display: block
}

/* banner */
.owl_home_main .item{
  position: relative;
  z-index: 0
}
.owl_home_main .item:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1
}
.owl_home_main .content{
  position: absolute;
  left: 50px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5
}
.owl_home_main {
  color: var(--white);
  margin: 0 auto;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  font-size: 40px
}
.owl_home_main.owl-theme .owl-dots{
  bottom: 0
}
.owl_home_main.owl-theme .owl-nav{
  left:20px;
  right: 20px
}

section{
  padding: 100px 0
}
section.sec-inner-padding{
  padding: 50px 0
}

section.page-title{
  padding-bottom: 0;
  padding-top: 50px
}

/* footer */
footer{
  background: var(--bg-footer);
  color: var(--white);
  padding: 70px 0
}

footer h4{
  margin-bottom: 20px;
  font-weight: 400
}
footer ul{
  margin: 0
}
footer a{
  color: #ccc
}
footer a:hover{
  color: #fff;
  text-decoration: none
}

.list-quick-links li{
}
.list-quick-links li a{
  display: block;
  padding: 5px 0;
  position:relative;
  color: #eee;
  transition: ease-in-out 0.1s
}
.list-quick-links li a:hover{
  text-decoration: none;
  color: var(--primary);
  padding-left: 10px
}


/*contact details*/
.table-footer-contact{
  border: 0;
  margin: 0;
}
.table-footer-contact td{
  border: 0;
  padding: 6px 0;
  vertical-align: middle;
  color: #ccc;
  background: transparent
}
.table-footer-contact td:first-child{
  width: 30px;
  font-size: 18px
}

.table-contact-us{
  border: 0;
  margin: 0;
}
.table-contact-us td{
  border: 0;
  padding: 6px 0;
  vertical-align: middle;
  color: #000
}
.table-contact-us td i{
  font-size: 24px
}
.table-contact-us td:first-child{
  width: 30px
}

/*rounded social icons*/
a.social-inline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width:36px;
  height:36px;
  border-radius: var(--border-rad-50p);
  background: var(--c999);
  color:var(--white);
  transition: ease-in-out 0.2s;
  margin-right: 4px;
  font-size: 20px
}
a.social-inline:hover{
  background: var(--primary);
  color: var(--white);
  text-decoration: none
}

/*copyright*/
.copyright{
  color: var(--ccc);
  font-size: 15px;
  background: var(--bg-copyright)
}

/* inner page */
.static-banner{
  padding: 0;
  position: relative;
  box-shadow: 0 10px 30px -15px #999;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index:1; /*height: 250px; background: top center; background-size: cover*/
}
.static-banner:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0
}

.static-banner h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px #545e6c;
  color:#fff;
  text-align:center;
  min-width: 300px;
  text-transform: uppercase
}

.bg-grey1{
  background: #f6f6f6
}

.testimonial {position: relative; z-index: 1; background: url(../images/bg-testi.jpg) fixed top center; color: #fff}
.testimonial:before{content:''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; background: rgba(0,0,0,0.85)}

.owl_testi .text-wrap{
  max-width: 96%;
  max-width: 900px;
  margin: 0 auto
}
.owl_testi p{
  font-size: 18px;
}
.owl_testi h4{  
  font-weight: 400
}
.owl_testi .stars {
  font-size: 24px
}
.owl-theme.owl_testi .owl-dots .owl-dot.active span{background: var(--primary)}
.sticky{
  position: sticky;
  top: 100px
}
.service-item{
  width: 100%;
  background: #fff;
  box-shadow: 0px 7px 15px #ddd;
  transition: ease-in-out 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden
}
.service-item:hover{
  box-shadow: 0px 15px 15px #d5d5d5;
}
.service-item-image{
  display: block;
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 0 0
}
.service-item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease-in-out 0.2s;
  transform: scale(1,1)
}
.service-item:hover .service-item-image img{
  transform: scale(1.1,1.1)
}
.service-item-cont{
  background: #fff;
  padding: 25px 15px;
  border-radius: 0 0 5px 5px;
}
.service-item h4{
  text-align: center;
  font-weight: 400;
  color: var(--secondary);
  transition: ease-in-out 0.2s;
  margin-bottom: 15px
}
.service-item:hover h4{
  color: var(--primary-dark)
}
.service-item p{
  text-align: center;
  font-weight: 400;
  color: var(--body-font-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0
}




@media screen and (min-width: 1366px){
  .container-xl{
    max-width: 1250px
  }
}

@media screen and (max-width: 1600px){
  section{
    padding: 70px 0
  }
  section.section-inner{
    padding: 40px 0
  }
}

@media screen and (max-width: 1400px){
  section{
    padding: 60px 0
  }
  section.section-inner{
    padding: 30px 0
  }
}

@media screen and (max-width: 1200px){
  .container{
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1199px){
  .navbar-expand-lg .navbar-nav .nav-item{
    margin-left: 25px
  }
}

@media screen and (max-width: 1024px){
  .navbar-expand-lg .navbar-nav .nav-item{
    margin-left: 12px
  }
  .col-greg1{
    width: 200px
  }
  .col-greg2{
    width: calc(100% - 220px);
  }
  .greg-row{
    padding: 50px 0
  }
}

@media screen and (min-width: 992px){
  .sidebar-section {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .sidebar-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .make-me-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding:15px;
  }
}

@media screen and (max-width: 991px){
  .navbar-collapse{
    position: absolute;
    top: 100%;
    z-index: 100;
    background: #f5f5f5;
    left: 0;
    right: 0;
    padding: 15px 0;
    min-width: 250px;
    box-shadow: 0 10px 20px #ddd
  }
  .navbar{
    padding: 2px
  }
  .navbar-brand img{
    margin-left: 10px
  }
}
@media screen and (max-width: 860px){
  .navbar-expand-lg .navbar-nav .nav-link:before{
    display: none
  }
  .navbar-expand-lg .navbar-nav .nav-link{
    padding: 18px 10px
  }
  .navbar-nav .btn{
    margin-top: 20px;
    max-width: 200px
  }
  .footer-logo{
    max-width: 150px
  }
  .input-group.mobile-fullwidth{
    flex-direction: column
  }
  .input-group.mobile-fullwidth{
    flex-direction: column
  }
  .input-group.mobile-fullwidth>.btn-normal,.input-group.mobile-fullwidth>.custom-file, .input-group.mobile-fullwidth>.custom-select, .input-group.mobile-fullwidth>.form-control, .input-group.mobile-fullwidth>.form-control-plaintext{
    width:100%;
    border-radius: 2px;
    margin: 0 0 15px
  }
  .input-group>.input-group-append>.btn{
    width:100%;
    border-radius: 2px;
  }
  .table-map tr td:nth-child(2){
    width: 100px
  }
  .table-map tr td:nth-child(2),.table-map tr td{
    display: block;
    width: 100%
  }

}
@media screen and (max-width: 767px){
  .owl_home_main .content{
    left:15px;
    right: 15px;
  }
  .owl-carousel,.owl-carousel:not(.owl_home_main){
    padding: 0
  }
  .navbar .dropdown-menu{
    max-width: 95%;
  }
  .navbar .dropdown-menu img{
    display: none
  }

  footer{
    text-align: center
  }
  footer .line2{
    margin: 0 auto
  }
  .table-footer-contact td:first-child,.table-footer-contact td{
    display: block;
    width: 100%;
    text-align: center
  }
  .table-footer-contact td i:not(.social-inline i){
    margin-top: 10px;
    font-size: 30px
  }
  .table-contact-us td:first-child,.table-contact-us td{
    display: block;
    width: 100%;
    text-align: center
  }
  .table-contact-us td i:not(.social-inline i){
    margin-top: 10px;
    font-size: 30px
  }

}
@media screen and (max-width: 640px){
  h1{
    font-size:36px;
  }
  h2{
    font-size:32px;
  }
  h3{
    font-size:28px;
  }
  h4{
    font-size:24px;
  }
  h5{
    font-size:20px;
  }
  h6{
    font-size:18px;
  }
}
@media screen and (max-width: 575px){
  .lead{
    font-size: 16px
  }
  .lead-lg{
    font-size: 18px
  }
  .owl_home_main.owl-theme .owl-dots{
    bottom: -5px
  }
  .download h4{
    max-width: 300px;
    margin: 0 auto;
  }
  .footer-form .form-control{
    min-height: 47px;
    font-size: 16px
  }
  a.social-inline{
    width: 40px;
    height: 40px;
    font-size: 24px
  }
  .footer-logo {
    max-width: 200px;
  }
  .owl-carousel.owl_whatwedo .owl-prev{
    left: 10px
  }
  .owl-carousel.owl_whatwedo .owl-next{
    right: 10px
  }
  .navbar-brand img{
    max-width: 150px
  }
  .owl_testi p{
    font-size: 16px;
  }
}
@media screen and (max-width: 480px){
  h1{
    font-size:30px;
  }
  h2{
    font-size:28px;
  }
  h3{
    font-size:26px;
  }
  h4{
    font-size:22px;
  }
  h5{
    font-size:19px;
  }
  h6{
    font-size:17px;
  }
}
@media screen and (max-width: 375px){

}
@media screen and (max-width: 360px){

}

/**************** DEVELOPER CSS FOR MENU DROPDOWN ********************/


.dropdown:hover .dropdown-menu {
  display: block;
  }