@font-face {
    font-family: Nunito-Regular;
    src: url('../fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: Nunito-Medium;
    src: url('../fonts/Nunito-Medium.ttf');
}

@font-face {
    font-family: Nunito-SemiBold;
    src: url('../fonts/Nunito-SemiBold.ttf');
}

@font-face {
    font-family: Nunito-Bold;
    src: url('../fonts/Nunito-Bold.ttf');
}

@font-face {
    font-family: Nunito-ExtraBold;
    src: url('../fonts/Nunito-ExtraBold.ttf');
}

:root{
    --theme-color-1: #E4843C;
    --theme-color-2: #881F3D;
    --theme-color-3: #3E5363;
    --theme-color-4: #E5F0F1;

    --theme-color-1-hover: #885023;
    --theme-color-2-hover: #721A33;

    --body-bg: #ffffff; 
    --font-color: #000000;
    --heading-color: #000000;
    --font-white: #ffffff;
    --box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.10);
}

body{
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Nunito-Regular';
    font-weight: normal;
    color: var(--font-color);
}

h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Nunito-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Nunito-SemiBold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
    font-size: 14px;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-2);
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-2-hover);
    border: 1px solid var(--theme-color-2-hover);
    transition: ease-in-out 0.3s;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-2);
}

.btn-secondary:hover{
    color: #fff;
    background-color: #c07d49;
    transition: ease-in-out 0.3s;
    border: 1px solid #c07d49;
}

.btn-border{
    border: 1px solid var(--theme-color-1);
    background-color: transparent;
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-border:hover{
    border-color: var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.btn-border-white{
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-border-white:hover{
    border-color: var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/construction-workers-sunset.jpg');
}
  
.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
  
.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.soon-subscribe{
    width: 100%;
}
  
.soon-form-wrapper{
    position: relative;
    width: 100%;
}
  
.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}
  
.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}
  
.soon-counter-list{
    display: flex;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-1);
    font-family: 'Nunito-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Nunito-Medium';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}
  
.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
  
.coming-soon .footer-social-list {
    margin-top: 20px;
}
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
    background-image: url('../images/construction-site.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.error-page::after{
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: .4;
    background-color: var(--font-color);
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 2;
  position: relative;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--font-white);
  font-family: 'Nunito-Medium';
}

.error-page-content h3{
  font-size: 32px;
  color: var(--font-white);
  text-transform: capitalize;
  font-family: 'Nunito-Medium';
}

.error-page-content p{
  font-size: 16px;
  margin: 20px 0px;
  color: var(--font-white);
}

.faq .accordion-item{
    margin-bottom: 20px;
    border: transparent;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 0px !important;
    background-color: var(--font-white);
    font-family: 'Nunito-SemiBold';
    font-size: 14px;
    height: auto;
}

.faq .accordion-button:not(.collapsed){
    background-color: var(--theme-color-3);
    box-shadow: none;
    color: var(--font-white);
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.faq-container .accordion {
    width: 100%;
    float: left;
}

.faq-container .accordion .accordion-item {
    width: 100%;
    float: left;
    /* margin: 0px 9px; */
    margin-bottom: 20px;
    background-color: rgb(0 0 0 / 5%);
}

.faq .accordion-button::after {
    background-image: none;
    position: relative;
    content: '\f067';
    font-family: 'Fontawesome';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.8;
}

.faq .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-1);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    padding-left: 3px;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    transform: translate(-50%, -50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-2);
    border-radius: 50%;    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-3);
    color: white;
    cursor: poNunito;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 18px;
    transition: ease-in 0.3s;
}
  
#backTop:hover {
    background-color: #006278;
    transition: ease-in 0.3s;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	background-color: #fff;
	z-index: 1001;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}


/* the slides */
.slick-slide {
    margin: 0 10px;
}

/* the parent */
.slick-list {
    margin: 0 -10px;
}

.section{
    width: 100%;
    position: relative;
    padding: 4rem 0;
}

.top-header {
    background-color: #ffffff;
    /* padding: 11px 0px; */
    text-align: center;
}
  
.header {
    padding: 00px 0px;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar{
    padding: 0;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
  
.sticky + .main-content-wrapper {
    padding-top: 123px;
}

.sticky.header:before{
    height: 83px;
}

.navbar-brand img{
    width: 100px;
}

.top-header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.top-header-social{
    width: 100%;
    position: relative;
    display: flex;
    height: 45px;
    align-items: center;
    background-color: var(--theme-color-3);
    overflow: hidden;
}


.top-header-left{
    display: flex;
    align-items: center;
}

.top-header-left span{
    color: var(--theme-color-1);
    font-size: 18px;
    margin-right: 10px;
}

.top-header-left p{
    margin-bottom: 0;
    color: var(--font-white);
}

.top-header-right ul li{
    display: inline-block;
    margin-left: 15px;
}

.top-header-right ul li a{
    color: var(--font-white);
}

.top-header-right::after

.top-header-contact{
    /* color: var(--font-white); */
    margin-left: 10px;
    margin-right: 10px;
    height: 45px;
    display: flex;
    align-items: center;
}

.top-header-btn{
    color: var(--font-white);
    height: 45px;
    display: flex;
    align-items: center;
    background-color: var(--theme-color-2);
    padding: 3px 15px;
}

.top-header-btn span{
    margin-right: 10px;
    font-size: 18px
}

.top-header-right{
    position: relative;
    display: flex;
    height: 45px;
    align-items: center;
    z-index: 10;
}

.top-header-right::after{
    background-color: var(--theme-color-1);
    width: 325px;
    content: '';
    position: absolute;
    display: inline-block;
    height: 45px;
    right: -10rem;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    z-index: -1;
}

.top-header-contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.thc-contacts ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.thc-contacts ul li{
    display: inline-block;
    margin-left: 20px;
}

.thc-contacts-inner{
    display: flex;
    align-items: center;
}

.thc-contacts-inner-icon{
    width: 45px;
    min-width: 45px;
    height: 45px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--theme-color-1);
    font-size: 22px;
    color: var(--theme-color-2);
}

.thc-contacts-inner-info{
    text-align: left;
}

.thc-contacts-inner-info h3{
    font-size: 18px;
    margin-bottom: 0px;
}

.collapse.navbar-collapse{
    position: absolute;
    width: 100%;
    top: -18px;
    z-index: 999;
}

.navbar-search{
    padding: 20px 20px;
    width: 65px;
    display: flex;
    align-items: revert;
    justify-content: center;
}

.header-btn-group button{
    background-color: transparent;
    border: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header-contact{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 15px 0px 30px 0px;
}

.header-btn-group button span{
    font-size: 20px;
}

.header-btn-group{
    display: flex;
}

.btn-border.white{
    border-color: var(--font-white);
    color: var(--font-white);
}

.btn-border.white:hover{
    background-color: var(--theme-color-2);
    border-color: var(--theme-color-2);
}

.navbar-expand-lg .navbar-nav .nav-link{
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: var(--font-color);
    height: 65px;
}

.navbar-collapse{
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
}

.nav-item.active .nav-link{
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.nav-item .dropdown-toggle::after{
    border: none;
    content: '\f107';
    font-family: 'Fontawesome';
    position: relative;
    display: inline-block;
    font-size: 8px;
    margin-left: 8px;
}

.navbar .nav-item .dropdown-menu{
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(1, 29, 38, 0.07);
    border-radius: 0px;
    border-color: #f0f0f0;
    min-width: 13rem;
}

.navbar .dropdown-item{
    padding: 10px 15px;
    font-size: 14px;
    color: var(--font-color);
    transition: ease-in 0.3s;
}

.dropdown-item:focus, .dropdown-item:hover{
    background-color: var(--theme-color-6);
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--theme-color-3);
}

.header.sticky{
    background-color: var(--font-white);
    height: 65px;
}

.header.sticky .collapse.navbar-collapse{
    top: 0;
    box-shadow: none;
}

.navbar .dropdown-item:hover{
    background-color: var(--theme-color-4);
    color: var(--theme-color-1);
    transition: ease-in 0.3s;
}

.navbar-toggler:focus{
    box-shadow: none;
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

/* home page start */
.main-banner-container{
    width: 100%;
    height: 650px;
    position: relative;
    padding: 3rem 0;
    background-image: url('../images/main-banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main-banner-container::before{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 9;
}
.banner-info-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}
.banner-info-wrapper h2{
    font-size: 48px;
    line-height: 55px;
    color: var(--font-white);
    margin-bottom: 15px;
    text-align: center;
}
.banner-info-wrapper h4{
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
    color: var(--font-white);
    text-align: center;
}
.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-icon{
    width: 50px;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
}

.section-small-heading{
    width: 100%;
    font-size: 16px;
    margin: 15px 0px;
    color: var(--theme-color-1);
    text-align: center;
}
.section-main-heading{
    text-align: center;
    font-size: 36px;
}
.solutions-card{
    position: relative;
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.10);
    padding: 30px;
    height: 100%;
}
.solutions-card-icon{
    border-radius: 50%;
    background: rgba(228, 132, 60, 0.06);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: auto;
}

.solutions-card-info h3{
    font-size: 22px;
    text-align: center;
    margin: 15px 0px;
}

.solutions-card-info p{
    text-align: center;
}

.read-more-link{
    text-align: center;
    width: 100%;
    color: var(--theme-color-1);
    margin-top: 20px;
    font-family: 'Nunito-SemiBold';
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-more-link i{
    font-size: 10px;
    margin-left: 10px;
}

.architect-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.architect-content-wrapper h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.architect-content-wrapper ul{
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.architect-content-wrapper ul li{
    margin-bottom: 20px;
}

.architect-content-list{
    display: flex;
    align-items: flex-start;
}

.architect-content-img{
    margin-right: 15px;
    width: 40px;
    min-width: 40px;
}

.architect-content-img img{
    width: 40px;
}

.architect-content-info h4{
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Nunito-Bold';
}

.architect-images-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.architect-image-layer{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 100%;
    z-index: 10;
}

.architect-about{
    border-radius: 10px;
    background: var(--theme-color-1-hover);
    padding: 30px 30px;
    text-align: center;
    width: fit-content;
    z-index: 11;
    min-width: 150px;
}

.architect-about h3{
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--font-white);
}

.architect-about p{
    color: var(--font-white);
}

.architect-about.top{
    position: absolute;
    top: 0;
    left: 0;
}

.architect-about.bottom{
    position: absolute;
    bottom: 40px;
    right: 0;
}

.architect-image-bg img{
    width: 83%;
}

.architect-image-bg.circle{
    text-align: center;
}

.architect-image-bg.circle img{
    -webkit-animation:spin 6s linear infinite;
    -moz-animation:spin 6s linear infinite;
    animation:spin 6s linear infinite;
}

@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}

.service-carosel-item{
    position: relative;
    width: 100%;
    display: inline-block;
}

.service-carosel-image{
    position: relative;
    width: 100%;
    display: inline-block;
    height: 320px;
}

.service-carosel-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-carosel-layer{
    position: absolute;
    bottom: 8px;
    width: 100%;
    border-radius: 10px;
    padding: 10px 10px;
    display: flex;
}

.service-carosel-layer a{
    display: flex;
    width: 100%;
    background-color: var(--font-white);
    border-radius: 10px;
    padding: 15px;
    align-items: center;
}

.service-carosel-layer a img{
    width: 35px;
    min-width: 35px;
    margin-right: 15px;
}

.service-carosel-layer a h3{
    font-size: 20px;
}

.services-arrows{
    display: flex;
    justify-content: flex-end;
}

.carosel-nav-left-service{
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
    margin-left: 10px;
    background-color: var(--theme-color-3);
    border: 1px solid var(--theme-color-3);
    font-size: 18px;
}

.carosel-nav-right-service{
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
    margin-left: 10px;
    background-color: var(--theme-color-3);
    border: 1px solid var(--theme-color-3);
    font-size: 18px;
}

.projects{
    width: 100%;
    height: 400px;
    position: relative;
    display: inline-block;
    background-image: url('../images/construction-site.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0;
    overflow: hidden;
}

.projects-content-wrapper{
    background-color: rgba(62, 83, 99, 0.95);
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projects-content-wrapper-inner{
    margin-left: 18%;
    margin-right: 40px;
}

.projects-content-wrapper-inner h4{
    font-size: 18px;
    margin-bottom: 0;
    color: var(--font-white);
}

.projects-content-wrapper-inner h2{
    font-size: 36px;
    color: var(--font-white);
    margin-top: 10px;
    margin-bottom: 15px;
}

.projects-content-wrapper-inner p{
    color: var(--font-white);
}

.team-carosel-item-img{
    position: relative;
    display: inline-block;
    width: 100%;
}

.team-carosel-item-img img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    display: inline-block;
}

.team-info{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    text-align: center;
}

.team-info h3{
   font-size: 20px;
   margin-bottom: 5px; 
}

.team-info p{
    color: var(--theme-color-1-hover);
    font-family: 'Nunito-Medium';
}

.team-carosel-item{
    position: relative;
    width: 100%;
    display: inline-block;
}

.team-carosel-item-layer{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgb(228 132 60 / 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: ease-in 0.3s;
}

.team-carosel-item:hover .team-carosel-item-layer{
    opacity: 1;
    visibility: visible;
    transition: ease-in 0.3s;
}

.team-carosel-item-layer ul li{
    display: inline-block;
    margin: 0px 5px;
}

.team-carosel-item-layer ul li a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30%;
    border: 1px solid var(--font-white);
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.fun-factor{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-3);
    padding: 4rem 0 8rem 0;
}

.fun-factor-card{
    width: 100%;
    text-align: center;
    padding: 30px 10px;
    position: relative;
    display: inline-block;
}

.fun-factor-card h2{
    font-size: 36px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.fun-factor-card h4{
    font-size: 20px;
    text-transform: uppercase;
    color: var(--font-white);
}

.funfactor-carosel-item{
    width: 100%;
    position: relative;
    display: inline-block;
}

.funfactor-layer-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 200px;
}

.funfactor-layer-image img{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    object-fit: cover;
}

.funfactor-layer-info{
    padding: 23px 20px;
    background-color: var(--font-white);
    width: 100%;
    position: relative;
    display: inline-block;
}

.funfactor-layer-info h3{
    font-size: 20px;
    margin-bottom: 15px;
}

.carosel-nav-left-funfactor{
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
    background-color: var(--theme-color-3);
    border: 1px solid var(--theme-color-3);
    font-size: 18px;
    position: absolute;
    top: 54%;
    z-index: 10;
    left: -15px;
}

.carosel-nav-right-funfactor{
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
    background-color: var(--theme-color-3);
    border: 1px solid var(--theme-color-3);
    font-size: 18px;
    position: absolute;
    top: 54%;
    z-index: 10;
    right: -15px;
}

.fun-factor-layer-slider{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: -7rem;
}

.testimonial-inner-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    z-index: 10;
}

.testimonial-inner-wrapper img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: auto;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.testimonial-inner-wrapper h3{
    font-size: 20px;
}

.testimonial-inner-wrapper h4{
    font-size: 14px;
    color: var(--theme-color-1-hover);
    margin-top: 10px;
}

.testimonial-carosel-item{
    position: relative;
    display: inline-block;
    width: 100%;
    background-color: var(--theme-color-4);
}

.quote-symbol{
    position: absolute;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    width: 150px;
}

.blog-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.blog-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 230px;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-info{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
}

.blog-info-top{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.blog-info-top-date{
    background-color: var(--theme-color-2-hover);
    color: var(--font-white);
    padding: 8px;
    text-align: center;
    margin-right: 15px;
    min-width: 60px;
    width: 60px;
}

.blog-info-top a h2{
    font-size: 20px;
    display: inline-block;
    width: 100%;
}

.blog-info-top-date h3{
    font-size: 20px;
    line-height: 20px;
    color: var(--font-white);
}

.blog-info-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.blog-info-bottom-author{
    display: flex;
    align-items: center;
}

.blog-info-bottom-author img{
    width: 35px;
    height: 35px;
    min-width: 35px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.blog-info-bottom-author h4{
    font-size: 16px;
}

.blog-info-comment{
    display: flex;
    align-items: center;
}

.blog-info-comment span{
    font-size: 18px;
    margin-right: 5px;
    color: var(--theme-color-1);
}

.read-more-link.blog{
    margin-top: 0px;
    justify-content: flex-start;
}

/* home page end */

/* footer start */
.footer-top{
    background: linear-gradient(0deg, rgba(47, 72, 88, 0.9) 0%, rgba(47, 72, 88, 0.9) 100%), url('../images/pngegg.png');
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 3rem 0 0rem 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-heading h3{
    font-size: 20px;
    margin-bottom: 0px;
    color: var(--font-white);
}

.footer-line{
    width: 75px;
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #ffffff;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-about p{
    color: var(--font-white);
}

.footer-about ul {
    margin-top: 20px;
}

.footer-about ul li{
    display: inline-block;
    margin-right: 5px;
}

.footer-about ul li a{
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    color: var(--font-white);
    border-radius: 50%;
}

.footer-contact ul li{
    margin-bottom: 10px;
}

.footer-contact ul li a{
    color: var(--font-white);
}

.footer-contact ul li a i{
    margin-right: 5px;
    width: 20px;
}

.footer-links ul li{
    margin-bottom: 10px;
}

.footer-links ul li a{
    color: var(--font-white);
}

.footer-latest ul li{
    display: inline-block;
}

.footer-latest ul li a{
    width: 75px;
    height: 65px;
    display: inline-block;
    position: relative;
    margin-right: 5px;
    margin-bottom: 10px;
}

.footer-latest ul li a img{
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    object-fit: cover;
}

.footer-form-content{
    text-align: center;
    padding: 20px 0px;
    color: var(--font-white);
}

.footer-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    border: 1px solid var(--font-white);
    color: var(--font-white);
    border-radius: 6px;
}

.footer-form-input::placeholder{
    color: var(--font-white);
}

.footer-bottom{
    background-color: #2f4858;
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-wrapper p{
    color: var(--font-white);
}

.footer-bottom-links ul li{
    display: inline-block;
}

.footer-bottom-links ul li a{
    color: var(--font-white);
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--font-white);
}

.footer-bottom-links ul li:first-child a{
    margin-left: 0;
    padding-left: 0;
    border-left: none;
}

.footer-form{
    margin-bottom: 30px;
}
/* footer end */

.page-banner{
    width: 100%;
    height: 260px;
    background-image: url('../images/aboutus.jpg');
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    background-size: cover;
}

.page-banner::after{
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: .4;
    background-color: var(--font-color);
}

.page-banner-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.page-banner-wrapper h2{
    font-size: 32px;
    text-align: center;
    color: var(--font-white);
}

.breadcrumb-wrapper{
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: 10px 20px;
    background-color: var(--theme-color-2);
}

.breadcrumb-wrapper ul li{
    display: inline-block;
}

.breadcrumb-wrapper ul li a{
    color: var(--font-white);
}

.breadcrumb-wrapper ul li a i{
    margin-right: 5px;
}

.breadcrumb-wrapper ul li:after {
    content: '\f105';
    font-family: 'Fontawesome';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding-left: 10px;
    color: var(--font-white);
}

.breadcrumb-wrapper ul li:last-child:after {
    display: none;
}

.text-left{
    text-align: left;
}

.about-company .tab-content{
    background-color: var(--theme-color-4);
    padding: 25px;
}

.navtab-content-list-content{
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.navtab-content-list-content img{
    width: 140px;
    height: 100px;
    object-fit: cover;
    margin-right: 15px;
    min-width: 140px;
}

.navtab-content-list-content ul li::before{
    content: '\f101';
    font-family: Fontawesome;
    color: var(--theme-color-1);
    margin-right: 10px;
}

.navtab-content-list-content ul li{
    margin-bottom: 5px;
}

.navtab-content-list-content ul li:last-child{
    margin-bottom: 0px;
}

.about-company .nav-pills .nav-link.active{
    background-color: var(--theme-color-1-hover);
}

.about-company .nav-link{
    color: inherit;
}

.about-funfactor-card{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 10px;
    padding: 25px;
    background-color: #fdf1e8;
    text-align: center;
}

.about-funfactor-card img{
    width: 40px;
    margin: auto;
}

.about-funfactor-card h2{
    font-size: 43px;
    margin: 15px 0px 0px 0px;
}

.galleries-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    box-shadow: var(--box-shadow);
    border-radius: 0px 0px 10px 10px;
    transition: ease-in 0.3s;
}

.galleries-card-wrapper:hover .galleries-card-img .galleries-img{
    transform: scale(1.5);
    transition: ease-in 0.3s;
}

.galleries-card-img{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 220px;
    overflow: hidden;
    transition: ease-in 0.3s;
    border-radius: 10px 10px 0px 0px;
}

.galleries-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
    transition: ease-in 0.3s;
    position: relative;
    display: inline-block;
}

.galleries-card-wrapper:hover .galleries-card-text h3{
    transition: ease-in 0.3s;
    color: var(--theme-color-1);
}

.galleries-card-text{
    padding: 15px;
}

.galleries-card-text h3{
    font-size: 20px;
    margin-bottom: 10px;
    transition: ease-in 0.3s;
}

.galleries-card-text p{
    display: flex;
    justify-content: space-between
}

.galleries-card-layer{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--font-white);
    box-shadow: var(--box-shadow);
    position: absolute;
    bottom: 10px;
    z-index: 10;
    left: 10px;
}

.gallery-type{
    position: absolute;
    right: 0px;
    background: var(--theme-color-3);
    text-align: center;
    padding: 5px 10px;
    color: var(--font-white);
    z-index: 10;
    bottom: 0px;
}

.sidebar-contact{
    position: relative;
    padding: 50px 42px;
    background: url('../images/service-right.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.sidebar-contact:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgb(62 83 99 / 80%);
}

.sidebar-contact img{
    margin-bottom: 20px;
}

.sidebar-contact h3{
    font-size: 32px;
    color: var(--font-white);
}

.sidebar-contact .read-more-link{
    margin-bottom: 30px;
}

.sidebar-brochure{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.sidebar-brochure ul li{
    margin-bottom: 15px;
}

.sidebar-brochure ul li a{
    background-color: var(--theme-color-4);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    color: var(--theme-color-1);
}

.gallery-detail-content{
    position: relative;
    display: inline-block;
    width: 100%;
}

.gallery-detail-image{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
}

.gallery-detail-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-detail-info p{
    margin-bottom: 25px;
}

.gallery-detail-image-text{
    display: flex;
    align-items: center;
}

.gallery-detail-image-text img{
    width: 200px;
    height: 200px;
    min-width: 200px;
    margin-right: 20px;
    object-fit: cover;
}

.get-in-touch{
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
}

.get-in-touch::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    background: url('../images/call-to-action-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.get-in-touch:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to right, var(--theme-color-1), var(--theme-color-1-hover));
}

.getin-touch-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.getin-touch-wrapper h2{
    font-size: 36px;
    color: var(--font-white);
}

.gallery-detail-mainInfo{
    width: 100%;
    position: relative;
    background-color: var(--theme-color-4);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-detail-mainInfo h3{
    font-size: 24px;
    margin-bottom: 15px;
}

.gallery-detail-mainInfo p{
    margin-bottom: 5px;
}

.gallery-detail-mainInfo p:last-child{
    margin-bottom: 0px;
}

.gallery-detail-mainInfo p i{
    color: var(--theme-color-1);
    margin-right: 10px;
}

.sidebar-lontactList{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-lontactList ul li{
    margin-bottom: 15px;
}

.sidebar-lontactList ul li a{
    background-color: var(--theme-color-4);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    color: var(--theme-color-1);
    font-family: 'Nunito-Bold';
}

.sidebar-lontactList ul li a i{
    margin-right: 15px;
}

.contact-form{
    background-color: var(--theme-color-4);
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-form-heading{
    margin-bottom: 20px;
    text-align: left;
}

.contact-form-input-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-form-input{
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--font-white);
    border-radius: 6px;
}

.sidebar-tags{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.sidebar-tags h3{
    font-size: 24px;
    margin-bottom: 20px;
}

.sidebar-tags ul li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebar-tags ul li a{
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 5px 10px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.sidebar-categories{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 10px;
    padding: 20px;
    background-color: var(--theme-color-4);
    margin-bottom: 30px;
}

.sidebar-categories h3{
    font-size: 24px;
    margin-bottom: 20px;
}

.sidebar-categories ul li{
    margin-bottom: 15px;
}

.sidebar-categories ul li::before{
    content: '\f101';
    font-family: Fontawesome;
    color: var(--theme-color-1);
    margin-right: 10px;
}

.search-input-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.search-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 75px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.search-btn{
    background-color: var(--theme-color-2);
    text-align: center;
    padding: 8px 15px;
    color: var(--font-white);
    position: absolute;
    right: 4px;
    bottom: 3px;
    border-radius: 10px;
    border: none;
}

.bd-published-date{
    min-width: 80px;
    width: 80px;
    height: 80px;
    background-color: var(--theme-color-2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-align: center;
    line-height: 30px;
    padding: 10px;
    margin-right: 20px;
}

.blog-detail-head{
  display: flex;
}

.bd-head-detail h1{
  font-size: 24px;
  margin-bottom: 10px;
}

.bd-head-detail ul{
  display: flex;
}

.blog-detail-head ul li a{
  color: #c5c5c5;
  margin-right: 10px;
  transition: ease-in-out 0.3s;
}

.blog-detail-head ul li a i{
  margin-right: 5px;
}

.blog-detail-head ul li a:hover{
  color: var(--theme-color-3);
  transition: ease-in-out 0.3s;
}

.bd-main-image{
  margin: 30px 0px;
  position: relative;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.bd-body p{
  margin-bottom: 20px;
}

.bg-small-heading{
  font-size: 18px;
  margin-bottom: 20px;
}

.bd-quoteblock{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('../images/aboutus.jpg');
    position: relative;
    z-index: 10;
    margin: 20px 0px;
}


.bd-quoteblock::before{
  content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    background: rgba(55, 68, 86, 0.75);
}

.bd-quoteblock-content{
  position: relative;
    z-index: 11;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.bd-quoteblock-content img{
  width: 40px;
  height: 40px;
  margin: auto;
  margin-bottom: 20px;
}

.bd-quoteblock-content p{
  font-style: italic;
}

.content-comment{
    margin-top: 4rem;
  }
  
  .content-comment-header h3{
    font-size: 24px;
    color: #374456;
    font-weight: bold;
    margin-bottom: 54px;
  }
  
  .comments-list{
    padding-bottom: 30px;
  }
  
  .comment-content-wrapper{
    padding: 30px 0;
    border-top: 1px solid #efefef;
  }
  
  .comments-wrapper > .comment:first-child .comment-content-wrapper{
    border-top: 0 none;
  }
  
  .gr-table {
    display: flex;
    width: 100%;
  }
  
  .comment .content-thumb {
      min-width: 120px;
      width: 120px;
      margin-right: 20px;
  }
  
  .comment .content-thumb a img{
    border-radius: 50%;
  }
  
  .comment .content-meta {
    margin-bottom: 5px;
    display: inline-block;
  }
  
  .comment .content-meta ul > li {
    float: left;
  }
  
  .comment .comment-author a {
    font-size: 14px;
    color: #aeb1b7;
    font-weight: lighter;
  }
  
  .gr-icon-left-text-style-5 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #374456;
    padding: 0 0 0 18px;
  }
  
  
  .comment .content-meta ul > li:last-child {
    margin-right: 0;
  }
  
  .comment .content {
    color: #374456;
    font-weight: lighter;
    margin-bottom: 13px;
  }
  
  .content-button a{
    color: var(--theme-color-1);
  }
  
  .comment-reply-wrapper .comment-content-wrapper {
    padding-top: 36px;
    padding-left: 120px;
  }
  
  .comment-respond{
    padding-top: 30px;
    border-top: 1px solid #efefef;
  }
  
  .comment-respond-wrapper{
    position: relative;
    margin-bottom: 25px;
  }
  
  .comment-respond-input{
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
  }

.services-card-wrapper{
    position: relative;
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.10);
    padding: 30px;
    height: 100%;
}

.services-icon{
    border-radius: 50%;
    background: rgba(228, 132, 60, 0.06);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: auto;
}

.services-content h3 {
    font-size: 22px;
    text-align: center;
    margin: 15px 0px;
}

.services-content p {
    text-align: center;
}