@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

body{
    font-size: 16px;
    font-family: "Poppins", serif !important;    
    color: #777 !important;
    line-height: 1.8em !important;
}
h1, h2, h3, h4{
    font-family: "Roboto Condensed", sans-serif !important;
    color: #333 !important;
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    line-height: 1em !important;
}
h1{
    font-size: 60px !important;
    margin-bottom: 20px !important;
}
:root {
    --app-color: #d39720;    
}
.no-padding{
    padding: 0 !important;
}
header{
    background: #fff;
    padding: 20px 0;
}
.topbar{
    width: 100%;
    height: 20px;
}
/* --- primary header --- */
.primary-header {
  display: flex;
  min-height: auto;
  padding: 1rem 0rem;
  background-color: #fff;
  z-index: 10000;
}
.primary-header .container {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.primary-header ul{
    margin-bottom: 0 !important;
}
.primary-header .home-link {
  height: 36px;
}
.primary-header .home-link img {
  height: 100%;
}
/*.primary-header .primary-navigation .active a {
  color: var(--secondary-color);
}*/
.sticky{
    position: sticky;
    top: 0;
}
.hammies ul{
    margin:10px 0 0 0;
    padding:0;
}
.hammies ul li{
    margin:0;
    padding:0;
    list-style:inside disc;
}
.mn-b-1{margin-bottom:15px;}
.primary-navigation ul li{
    list-style: none;   
}
.primary-navigation ul li a{
    text-decoration: none;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #333;
    font-family: "Roboto Condensed", sans-serif !important;
    text-transform: uppercase;
}
.primary-navigation ul li a:hover{
    color: var(--app-color);
}
.tollfree{
    color: var(--app-color) !important;
}
.primary-header .primary-navigation .nav-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  justify-content: right;
}
.primary-header .primary-navigation .nav-list a {
  display: flex;
  width: 100%;
  min-height: auto;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.primary-header .primary-navigation .nav-list .user-profile {
  column-gap: 0.6rem;
}
.primary-header .primary-navigation .nav-list .user-profile .avatar {
  max-width: 60px;
  border-radius: 50%;
}
.primary-header .primary-navigation .nav-list .user-profile span {
  margin-left: auto;
}

/* --- primary header END --- */
/* --- Burger Toggle --- */
.primary-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: 0;
  cursor: pointer;
}
.primary-toggle .line,
.primary-toggle .line:before,
.primary-toggle .line:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #666;
  height: 3px;
  width: 30px;
  transition: transform 100ms ease-in-out;
  border-radius: 2px;
}
.primary-toggle .line:before {
  margin-top: -8px;
}
.primary-toggle .line:after {
  margin-top: 8px;
}

#primary-toggle:checked + .primary-toggle .line:before {
  margin-top: 0px;
  transform: rotate(45deg);
}
#primary-toggle:checked + .primary-toggle .line {
  background-color: transparent;
}
#primary-toggle:checked + .primary-toggle .line:after {
  margin-top: 0px;
  transform: rotate(-45deg);
}

/* --- Burger Toggle END --- */
/* --- Mobile Menu --- */
@media (max-width: 992px) {
  .primary-header .primary-toggle {
    display: flex;
  }
  .primary-header .primary-navigation {
    position: absolute;
    display: grid;
    /* transition for height */
    transition: grid-template-rows 500ms ease-in-out;
    /* menu hidden */
    grid-template-rows: 0fr;
    width: 100%;
    top: calc(1rem + 100%);
    left: 0;
    padding: 0;
    z-index: 999;
    background-color: #fff;
    filter: brightness(105%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .primary-header .primary-navigation .nav-list {
    display: block;
    overflow: hidden;
  }
  .primary-header .primary-navigation .nav-list li {
    padding: 0 0rem;
  }
  .primary-header .primary-navigation .nav-list li:first-child {
    border-top: 2px solid var(--secondary-color);
  }
  .primary-header .primary-navigation .nav-list li:last-child {
    margin-bottom: 2rem;
  }
  .primary-header .primary-navigation .nav-list a {
    font-weight: 500;
    font-size: 1.15rem;
    min-height: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .primary-header .primary-navigation .nav-list li:last-child a {
    border: 0;
  }
  .primary-header .primary-navigation .nav-list .user-profile span {
    margin-left: 0;
  }
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    grid-template-rows: 1fr;
  }
}
.container{
    max-width: 1200px !important;
}
.nav-link{
    font-size: 18px !important;
    text-transform: uppercase;
}
.banner{
    width: 100%;
    margin-top: 30px;
}
.banner h1{
    font-size: 60px;
    font-weight: 700;
    padding-right: 8%;
}
.btn{
    padding: 15px 25px !important;
    background: var(--app-color) !important;
    border: none !important;
    border-radius: 5px !important;
}
.image img{
    width: 100%;
}
.no-pad{
    padding: 0 !important; 
}
.flex{
    display: flex;
    align-items: center;
}
.content-container{
    width: 100%;
    padding: 100px 0;
    position: relative;
}
.intro h1{
    padding-right: 8% !important;
}
.intro-grid img{
    width: 100%;
    border-radius: 10px;
}
.intro-grid-count{
    width: 100%;
    padding: 50px 15px;
    background: var(--app-color);
    text-align: center;
    color: #fff;
    border-radius: 10px;
}

.stat {
   text-align:center;
}
.highlight {
   color:#fff;
   padding:0;
   font-weight:bold;
   margin-bottom:0;
   font-size:48px;
}
.stat i {
    color:#fff;
}
.milestone-details {
   font-size:20px;
   color:#fff;
}
.mn-t-15{
    margin-top: 15px !important;
}
.mn-t-30{
    margin-top: 30px !important;
}
.mn-b-30{
    margin-bottom: 30px !important;
}
.mn-t-60{
    margin-top: 60px !important;
}
h5{
    margin-bottom: 20px !important;
}
.gray-col h2{
    font-size: 40px;
    color: #333 !important;
    margin-bottom: 20px;
    font-weight: 700 !important;
}
.gray-col h1{
    color: #333 !important;
    font-size: 46px !important;
}
.g-right-col{
    padding-left: 50px !important;
}
.grid-col-head{
    font-size: 24px;
    font-family: "Roboto Condensed", sans-serif !important;
    color: #333 !important;
    font-weight: 600 !important;
    line-height: 1.3em;
    margin-bottom: 20px;
}
.section-5 .btn{
    min-width: 200px !important;
}
.section-5 h1{
    padding-right: 8%;
}
.section-6 h1{
    color: #fff !important;
}
.section-6 h3{
    margin: 20px 0;
    padding-right: 5%;
}
.section-6 p{    
    padding-right: 5%;
}
.gray-bg{
    background: #474c50;
}
.margin-t-175{
    margin-top: 175px;
}
.margin-t-75{
    margin-top: 75px !important;
}
.out-img img{
    margin-top: -250px;
}
.margin-t-100{
    margin-top: 100px !important;
}
.grid-col img{
    margin: 20px 0;
}
.num{
    font-size: 30px;
    color: #333;
    font-weight: 800;
    margin-right: 20px;
}
.color-white{
    color: #fff !important;
}
.green-bg{
    background: var(--app-color);
}
.lite-gray-bg{
    background: #f6f6f6;
}
.green-bg{
    color: #fff;
}
.green-bg h1{
    color: #fff !important;
}
.green-bg .btn{
    background: #fff !important;
    color: #333 !important;
}
.updates h1{
    margin-bottom: 30px !important;
}
.news-col{
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
.news-col img{
    margin-bottom: 30px;
}
footer{
    width: 100%;
    position: relative;
    background: #fff;
    padding: 50px 0;
}
footer h3{
    font-weight: 400 !important;
    font-size: 26px;
    color: #666 !important;
    line-height: 1.2em !important;
}
footer .btn{
    margin-top: 15px;
}
footer img{
    margin-bottom: 15px;
}
footer p{
    line-height: 1.5em;
}
.copy-right-col{
    width: 100%;
    padding: 20px 0;
    border-top: solid 1px #eee;
    text-align: center;
}
.inner-banner{
    padding: 100px 0;
}
.gradient-bg{
    background-image: url(../images/lottie-section-bg2.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    color: #333;
}
.white-op{
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
}
.white-op a{
    color: #fff;
    text-decoration: none;
}
.white-col{
    background: rgba(255,255,255,1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
}
.white-col h4{
    color: #333 !important;
}
.white-col p{
    color: #333 !important;
    padding: 0 !important;
}
.white-col p:last-child{
    margin-bottom: 0 !important;
}
.white-col img{
    height: 80px;
    margin-bottom: 15px;
    filter: grayscale(100%);
}
.expertise-col .white-col img{
    filter: grayscale(0%);
}
.pad-t-100{
    padding-top: 100px !important;
}
.mn-t-30{
    margin-top: 30px !important;
}
.inner-banner h1{
    margin-bottom: 50px !important;
}
.inner-banner img{
    margin-bottom: 50px;
}
.vision-mission img{
    margin-bottom: 30px;
}
.no-pad-top{
    padding-top: 0px !important;
}
.innerH2{
    font-size: 40px !important;
    margin-bottom: 30px !important;
}
.image{
    width: 100%;
}
.image img{
    width: 100%;
    border-radius: 10px;
}
.viewmore{
    line-height: 3.5em !important;
}
.green-col{
    background: var(--app-color);
    border-radius: 10px;
    padding: 50px;
}
.green-col h1{
    color: #fff !important;
    padding: 0 20%;
    text-align: center;
}
.green-col{
    color: #fff;
    text-align: center;
}
.no-pad{
    padding: 0 !important
}
.contact .green-col p{
    padding: 0 15%;
}
.contact .green-col h2{
    color: #fff !important;
    margin-bottom: 30px;
}
.text-left{
    text-align: left !important;
}
.contact .white-op{
    height: 100%;
}
.contact .white-op p{
    padding: 0
}
.map{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 30px;
}
.call p{
    margin: 0;
}
.pro-banner img{
    margin: 0;
}
.frozen-pro img{
    margin-bottom: 30px;
}
.social img{
    height: 30px
}
.foot-logo img{
    height: 34px
}

/* Preloader
-------------------------------------------------------*/

.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: relative;
    top: 40%;
    width: 100px;
    height: 100px;
    font-size: 0;
    color: #00c9d0;
    display: block;
    margin: auto;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loader svg{
  width: 100px;
}
.half-g{
    position: absolute;
    z-index: 100000;
    width: 42px;
    left: 52px;
    top: 6px;
}




@media screen and (max-width: 1280px) {
    
}
@media screen and (max-width: 1024px) {
    .container{
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    h1{
        font-size: 50px !important;
    }
}
@media screen and (max-width: 991px) {
    h1{
        font-size: 40px !important;
    }
}
@media screen and (max-width: 768px) {
    h1{
        font-size: 28px !important;
        line-height: 1.2em !important;
    }
    .out-img img{
        margin-top: 0px;
    }
    .margin-t-175 {
        margin-top: 0;
    }
    .gray-col h1{
        font-size: 30px !important; 
    }
}
@media screen and (max-width: 600px) {
    .banner img{
        margin-top: 30px;
    }
    .content-container{
        padding: 50px 0;
    }
    .intro img{
        margin: 15px 0;
    }
    .mn-t-30 {
        margin-top: 15px !important;
    }
    .mn-b-30 {
        margin-bottom: 15px !important;
    }
    .mn-t-60 {
        margin-top: 30px !important;
    }
    .g-right-col {
        padding-left: 15px !important;
        margin-top: 30px !important;
    }
    .margin-t-100{
        margin-top: 30px !important;
    }
    .grid-col{
        margin-bottom: 50px !important;
    }
    .gray-col .d-flex{
        display: block !important;
    }
    .section-6 p {
        padding-right: 0%;
    }
    .expertise-col{
        margin: 15px 0 !important;
    }
    .section-6 h3{
        margin: 15px 0;
    }
    footer .btn{
        margin-bottom: 0px
    }
    footer .col-md-3{
        margin: 15px 0;
    }
    .into-img-1{
        margin-top: 30px !important;
    }
}
@media screen and (max-width: 480px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .topbar{
        height: 10px;
    }
    .inner-banner {
        padding: 40px 0;
    }
    .banner{
        margin-top: 10px;
    }
    .inner-banner img {
        margin-bottom: 30px;
    }
    .green-col h1{
        padding: 0;
    }
    .green-col{
        padding: 30px;
    }
    .section-in3{
        margin-bottom: 30px;
    }
    .pad-t-100{
        padding-top: 30px !important;
    }
    .section-in4 img{
        margin-bottom: 30px;
    }
    .contact .green-col p {
        padding: 0 0%;
    }
    .white-col{
        margin-bottom: 30px !important
    }
    .call{
        margin-bottom: 30px !important;
    }
    .location{
        margin-bottom: 30px !important;
    }
    .inner-banner img {
        margin-top: 0 !important;
    }
    .vision{
        margin-bottom: 30px !important;
    }
    .news-col{
        padding: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .update-content{
        padding: 0px 30px 0px 30px;
    }
    .content-container {
        padding: 30px 0;
    }
}
@media screen and (max-width: 414px) {
    
}
@media screen and (max-width: 320px) {
    
}





/* reveal animation */

.scroll-anime-translateY {
	-moz-transform: translateY(100px);
	-o-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
	opacity: 0;
 
}

.scroll-anime-translateX-left {
	-moz-transform: translateX(-100px);
	-o-transform: translateX(-100px);
	-ms-transform: translateX(-100px);
	-webkit-transform: translateX(-100px);
	transform: translateX(-100px);
	opacity: 0;

}

.scroll-anime-translateX-right {
	-moz-transform: translateX(100px);
	-o-transform: translateX(100px);
	-ms-transform: translateX(100px);
	-webkit-transform: translateX(100px);
	transform: translateX(100px);
	opacity: 0;

}

.scroll-anime-scale {
   -moz-transform: scale(0.8);
	-o-transform:  scale(0.8);
	-ms-transform:  scale(0.8);
	-webkit-transform:  scale(0.8);
	transform:  scale(0.8);
	opacity: 0;

}