@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto-Medium;
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: Gilroy-SemiBold;
    src: url('../fonts/Gilroy-SemiBold.ttf');
}

@font-face {
    font-family: Gilroy-Bold;
    src: url('../fonts/Gilroy-Bold.ttf');
}

@font-face {
    font-family: Gilroy-ExtraBold;
    src: url('../fonts/Gilroy-ExtraBold.ttf');
}


:root{
    --theme-color-1: #EE2E31;
    --theme-color-2: #CDA274;
    --theme-color-3: #1D7874;
    --theme-color-4: #071E22;
    --theme-color-5: #679289;
    --body-bg: #ffffff;
    --font-color: #626060;
    --heading-color: #0D0D0D;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Roboto-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Gilroy-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Gilroy-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: 30px;
    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: 'Roboto-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-1);
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #7f2116;
    border: 1px solid #7f2116;
    transition: ease-in-out 0.3s;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-4);
    transition: ease-in-out 0.3s;
}

.btn-secondary:hover{
    color: #fff;
    background-color: var(--theme-color-4);
    transition: ease-in-out 0.3s;
}

.btn-border{
    border: 1px solid var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-border:hover{
    border-color: var(--theme-color-4);
    background-color: var(--theme-color-4);
    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-3);
  background-color: transparent;
  color: var(--theme-color-3);
  transition: ease-in-out 0.3s;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--body-bg);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'Roboto-Medium';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 180px;
}

.navbar-brand h3{
    color: var(--theme-color-2);
    font-size: 32px;
    font-family: 'Roboto-Regular';
    font-weight: normal;
}

.navbar-brand h3 span{
    color: var(--theme-color-1);
    font-size: 32px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@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;
}


.navbar{
    background: #fff;
    box-shadow: transparent;
    transition: none !important;
    height: 75px;
}

.dropdown-menu{
    min-width: 13rem;
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-color);
    font-family: 'Roboto-Medium';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

header{
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    /* height: 139px; */
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: poJost;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}

.section{
    padding: 60px 0px;
    position: relative;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

/* home */
.main-content-wrapper{
    width: 100%;
    display: inline-block;
    position: relative;
    padding-top: 75px;
}

.banner-container{
    width: 100%;
    height: 550px;
    display: inline-block;
    background-image: url('../images/home-banner.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-inner-wrapper{
    padding-top: 4rem;
    position: relative;
    display: inline-block;
    margin-right: 6rem;
}

.banner-inner-wrapper h1{
    font-size: 48px;
    line-height: 54px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.textHalf-color{
    color: var(--theme-color-2);
}

.banner-inner-wrapper h4{
    font-size: 24px;
    line-height: 28px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.banner-btns{
    display: flex;
    align-items: center;
}

.telBtn{
    color: var(--theme-color-1);
    font-family: 'Roboto-Bold';
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.telBtn img{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.banner-form-wrapper{
    width: 100%;
    display: inline-block;
    border-radius: 10px;
    background-color: var(--font-white);
    padding: 25px;
    margin-top: 4rem;
}

.form-heading{
    font-size: 25px;
    line-height: 28px;
    color: var(--heading-color);
    margin-bottom: 30px;
}

.form-group{
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}

.form-input{
    background: #FFFFFF;
    border: 1px solid #D9D6D8;
    border-radius: 8px;
    height: 48px;
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 10px 15px;
}

.form-group button{
    width: 100%;
    max-width: 100%;
}

.form-submit-info a{
    color: var(--theme-color-1);
}

.featured-services-card{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: inline-block;
    padding: 30px;
}

.featured-services-card.architecture{
    background: linear-gradient(0deg, rgba(29, 120, 116, 0.9), rgba(29, 120, 116, 0.9)), url('../images/home.jpg');
}

.featured-services-card.interior{
    background: linear-gradient(0deg, rgba(103, 146, 137, 0.95), rgba(103, 146, 137, 0.95)), url('../images/wardr.jpg');
}

.featured-services-card.furniture{
    background: linear-gradient(0deg, rgba(29, 120, 116, 0.9), rgba(29, 120, 116, 0.9)), url('../images/home.jpg');
}

.featured-services-card.img{
    width: 50px;
    height: 50px;
}

.featured-services-card h3{
    font-size: 24px;
    line-height: 28px;
    color: var(--font-white);
    margin: 20px 0px;
}

.featured-services-card p{
    color: var(--font-white);
    margin-bottom: 20px;
}

.homeAbout-left{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-right: 5rem;
    height: 100%;
}

.homeAbout-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.homeAbout-overlay{
    position: absolute;
    width: 90px;
    height: 90px;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--theme-color-4);
    border-radius: 10px;
}

.homeAbout-overlay h2{
    font-size: 32px;
    line-height: 40px;
    color: var(--font-white);
}

.homeAbout-overlay h4{
    font-size: 18px;
    line-height: 20px;
    color: var(--font-white);
}

.homeAbout-right h2{
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
}

.homeAbout-right h4{
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 20px;
}

.homeAbout-right p{
    margin-bottom: 15px;
}

.homeAbout-right p:last-child{
    margin-bottom: 0px;
}

.homeAbout-service-card{
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 25px;
    height: 100%;
}

.homeAbout-service-icon{
    margin-right: 20px;
}

.homeAbout-service-icon img{
    width: 100%;
}

.homeAbout-service-info h3{
    font-size: 20px;
    line-height: 22px;
    color: var(--theme-color-2);
    margin-bottom: 10px;
}

.services{
    background: rgba(7, 30, 34, 0.05);
}

.section-heading{
    margin-bottom: 2rem;
}

.section-heading h2{
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 15PX;
}

.services-card{
    width: 100%;
    display: inline-block;
    height: 100%;
    border: 1px solid #D9D6D8;
    /* filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15)); */
    border-radius: 6px;
    padding: 25px;
    text-align: center;
}

.services-card-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    margin: auto;
}

.services-card-icon.blue{
    background: #0274B8;
}

.services-card-icon.green{
    background: #00B568;
}

.services-card-icon.pink{
    background: #C3258E;
}

.services-card-icon.yellow{
    background: #D49B33;
}

.services-card-icon.voilet{
    background: #781CA0;
}

.services-card-body h3{
    font-size: 24px;
    line-height: 27px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.services-card.center{
    background-color: var(--theme-color-3);
}

.services-card-icon.white{
    background-color: var(--font-white);
}

.services-card.center .services-card-body h3{
    color: var(--font-white);
}

.services-card.center .services-card-body p{
    color: var(--font-white);
}

.services-card-middle{
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 25px;
    text-align: center;
}

.services-card-middle h3{
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 15px;
}

.item-partner{
    position: relative;
    display: inline-block;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    margin: 10px 0px;
}

/* the slides */
.partner .slick-slide {
    margin: 0 15px;
}

/* the parent */
.partner .slick-list {
    margin: 0 -15px;
}

.divider{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: inline-block;
    background: linear-gradient(0deg, rgba(29, 120, 116, 0.9), rgba(29, 120, 116, 0.9)), url('../images/home.jpg');
}

.divider-inner-wrapper h3{
    font-size: 32px;
    line-height: 36px;
    color: var(--font-white);
    margin-bottom: 30px;
    text-align: center;
}

.divider-inner-wrapper p{
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--font-white);
}

.divider-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.divider-btns a{
    margin: 0px 10px;
}

.howWorks{
    background: rgba(7, 30, 34, 0.05);
}

.howWorks-flow-inner{
    position: relative;
    display: inline-block;
    z-index: 10;
    text-align: center;
    padding: 30px;
}

.howWorks-flow-inner-icon{
    background: #FFFFFF;
    border: 1px solid #D9D6D8;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 20px;
    margin: auto;
}

.howWorks-flow-inner h3{
    font-size: 16px;
    line-height: 22px;
    margin-top: 2rem;
}

.howWorks-flow-wrapper ul li{
    display: inline-block;
    position: relative;
}

.howWorks-flow-wrapper ul{
    display: flex;
}

.howWorks-flow-wrapper ul li::after{
    content: '';
    position: absolute;
    border-bottom: 1px dashed #D9D6D8;
    top: 82px;
    right: -50px;
    width: 100%;
}

.howWorks-flow-wrapper ul li:last-child:after{
    display: none;
}

.howWorks-btn{
    margin: auto;
    margin-top: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.projects-tabs-wrapper .nav-tabs{
    border-color: #D9D6D8;
}

.projects-tabs-wrapper .nav-tabs .nav-link{
    color: var(--font-color);
    padding-bottom: 15px;
}

.projects-tabs-wrapper .nav-tabs .nav-link.active{
    color: var(--theme-color-1);
    border-color: transparent;
    border-bottom: 3px solid var(--theme-color-1);
}

.projects-tabs-wrapper .nav-tabs .nav-link:hover{
    border-color: transparent;
}

.projects-tabs-wrapper .nav-tabs .nav-link.active:hover{
    border-bottom: 3px solid var(--theme-color-1);
}

.project-image{
    display: flex;
}

.project-image-item{
    position: relative;
    flex: 50%;
    height: 150px;
}

.project-image-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projectInfo-overlay{
    position: absolute;
    top: 0;
    left: 0;
    background: var(--theme-color-3);
    padding: 2px 15px;
    font-size: 12px;
    color: var(--font-white);
}

.projects-tabs-wrapper .tab-content{
    margin-top: 2rem
}

/* the slides */
.reviews .slick-slide {
    margin: 0 30px;
}

/* the parent */
.reviews .slick-list {
    margin: 0 -30px;
}

.review-card-wrapper{
    display: flex;
    position: relative;
}

.review-card-image{
    flex: 50%;
}

.review-card-info{
    flex: 50%;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
}

.review-card-image img{
    width: 75%;
    height: 220px;
    object-fit: cover;
    float: right;
    position: relative;
    z-index: 10;
}

.review-card-image-bg{
    position: absolute;
    z-index: 9;
    background-color: var(--theme-color-2);
    width: 35%;
    height: 180px;
    bottom: -20px;
    left: 10%;
}

.review-card-info img{
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.review-card-info h4{
    font-size: 16px;
    margin-top: 20px;
}

.news-card-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 180px;
}

.news-card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card{
    width: 100%;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.news-card-info{
    padding: 20px;
}

.news-card-info p{
    color: var(--theme-color-2);
}

.news-card-info p i{
    margin-right: 8px;
}


.news-card-info h3{
    font-size: 24px;
    line-height: 27px;
    margin: 15px 0px;
}

.news-card-otherinfo span{
    margin-right: 10px;
}

.news-card-otherinfo span i{
    color: var(--theme-color-2);
    margin-right: 8px;
}

footer{
    background-color: var(--theme-color-4);
    padding-top: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.footer-about img{
    width: 180px;
    margin-bottom: 20px;
}

.footer-about p{
    color: var(--font-white);
}

.footer-heading {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 2rem;
    color: var(--font-white);
}

.footer-links ul li{
    margin-bottom: 15px;
}

.footer-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-links ul li a{
    color: var(--font-white);
}

.footer-contact ul li a{
    display: flex;
    align-items: baseline;
}

.contact-info h4{
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--font-white);
}

.contact-info p{
    color: var(--font-white);
}

.contact-icon{
    margin-right: 10px;
    color: var(--theme-color-2);
}

.bottom-footer{
    padding: 25px 0px;
    border-top: 1px solid rgba(217, 214, 216, 0.2);
    margin-top: 3rem;
    position: relative;
}

.footer-bottom-inner p{
    color: var(--font-white);
}

.footer-bottom-inner{
    display: flex;
    justify-content: space-between;
}

.footer-bottom-links a{
    color: var(--font-white);
    margin-left: 15px;
}

.page-banner-container{
    width: 100%;
    background-image: url('../images/pageBanner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    background-color: var(--font-white);
    position: relative;
}

.page-banner-container::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 45%);
    width: 100%;
    height: 100%;
    z-index: 10;
}

.page-banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 11;
}

.page-banner-content-wrapper h2{
    font-size: 36px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.page-banner-content-wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-banner-content-wrapper ul li{
    display: inline-block;
    color: var(--font-white);
    
}

.page-banner-content-wrapper ul li::after{
    content: '\f105';
    position: relative;
    display: inline-block;
    font-family: 'Fontawesome';
    margin-left: 10px;
    padding-right: 10px;
}

.page-banner-content-wrapper ul li:last-child:after{
    display: none;
}

.whychoose-content-heading{
    font-size: 24px;
    margin-bottom: 20px;
}

.whychoose-content-list-inner{
    display: flex;
}

.whychoose-content-list{
    margin-top: 25px;
}

.whychoose-content-list-image img{
    width: 100%;
}

.whychoose-content-list-image{
    width: 50px;
    margin-right: 20px;
}

.whychoose-content-list-info h3{
    font-size: 20px;
    margin-bottom: 15px;
}

.whychoose-content-list li{
    margin-bottom: 20px;
}

.whychoose-content-list li:last-child{
    margin-bottom: 0px;
}

.whychoose-image{
    width: 100%;
    height: 100%;
}

.whychoose-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus-page-image{
    width: 100%;
    height: 400px;
    position: relative;
    display: inline-block;
}

.aboutus-page-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus-page-content h3{
    text-align: center;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
}

.aboutus-page-content p{
    text-align: center;
}

.aboutus-funfactor-card{
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 20px;
    position: relative;
}

.aboutus-funfactor-card img{
    width: 50px;
    margin-bottom: 0px;
}

.aboutus-funfactor-card h2{
    margin: 10px 0px;
    font-size: 20px;
}

.team-top{
    position: relative;
    display: inline-block;
    width: 100%;
    background-color: var(--theme-color-4);
    height: 350px;
}

.team-top-wrapper h3{
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--font-white);
}

.team-top-wrapper p{
    margin-bottom: 20px;
    text-align: center;
    color: var(--font-white);
}

.team-bottom{
    margin-top: -8rem;
    position: relative;
}

.team-card-wrapper{
    box-shadow: 0px 2px 4px rgb(0 0 0 / 15%);
    border-radius: 6px;
    width: 100%;
    display: inline-block;
    padding: 25px;
    height: 100%;
    background-color: var(--body-bg);
    text-align: center;
}

.team-card-image{
    display: inline-block;
    margin: auto;
    width: 100px;
    height: 100px;
}

.team-card-image img{
    display: inline-block;
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--font-white);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.team-card-content{
    margin-top: 2rem;
}

.team-card-content h3{
    font-size: 18px;
    margin-bottom: 5px;
}

.aboutus-page-info{
    text-align: center;
}

.aboutus-page-info h2{
    font-size: 32px;
    margin-bottom: 20px;
}

.aboutus-page-info p{
    margin-bottom: 20px;
}

.aboutus-page-info a{
    margin: auto;
}

.contactlist-inner{
    display: flex;
    align-items: flex-start;
}

.contactlist-inner > i{
    font-size: 18px;
    margin-right: 15px;
    color: var(--theme-color-3);
}

.contactlist-inner-info h3{
    font-size: 16px;
    margin-bottom: 5px;
}

.contactlist-list{
    margin-top: 2rem;
}

.contactlist-list li{
    margin-bottom: 20px;
}

.contactlist-list li:last-child{
    margin-bottom: 0px;
}

.contactus-contactlist > h3{
    font-size: 24px;
    margin-bottom: 15px;
}

.contactus-contactform{
    background-color: var(--theme-color-3);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    display: inline-block;
    position: relative;
}

.contactus-contactform-group{
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 25px;
}

.contactus-contactform-label{
    width: 100%;
    color: var(--font-white);
    margin-bottom: 5px;
}

.contactus-contactform-input{
    width: 100%;
    padding: 10px 15px;
    border-radius: 6px;
    background-color: var(--font-white);
    border: transparent;
}

.contactus-contactform-btn button{
    width: 100%;
    max-width: 100%;
}

.contactus:before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: url('../images/world-map.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.gallery_product_image{
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    transition: ease-in-out 0.3s;
}
  
.gallery_product_image img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
.portfolio-overlay{
    position: absolute;
    top: 0;
    width: 93%;
    height: 100%;
    background-color: rgb(31 31 31 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out 0.3s;
}
  
.portfolio-overlay .po-inner{
    position: relative;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 25px;
}
  
.portfolio-overlay .po-inner h3{
    color: var(--theme-color-2);
    font-size: 24px;
    margin-bottom: 10px;
}
  
.portfolio-overlay .po-inner p{
    color: #fff;
    margin-bottom: 20px;
}
  
.portfolio-overlay .po-inner a{
    position: absolute;
    bottom: 25px;
    color: #fff;
    font-size: 25px;
}
  
.gallery_product:hover  .portfolio-overlay{
    opacity: 1;
    visibility: visible;
    transition: ease-in-out 0.3s;
}
  
.filter-button.active{
    background-color: var(--theme-color-4);
    color: var(--font-white);
    transition: ease-in-out 0.3s;
    box-shadow: none;
}
  
.gallery_product:hover  img{
    transform: scale(1.5);
    transition: ease-in-out 0.3s;
}

.ourteam-card{
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    padding: 25px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border-radius: 10px;
}

.ourteam-image {
    display: inline-block;
    margin: auto;
    width: 100px;
    height: 100px;
}

.ourteam-image img{
    display: inline-block;
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--font-white);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.ourteam-info{
    margin-top: 1rem;
}

.ourteam-info h4{
    font-size: 14px;
    margin-bottom: 5px;
}

.ourteam-info h3{
    font-size: 18px;
    margin-bottom: 10px;
}

.ourteam-social{
    margin-top: 1rem;
    display: flex;
}

.ourteam-social a{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--font-white);
    background-color: var(--theme-color-2);
    margin-right: 10px;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.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;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--theme-color-1);
}

.error-page-content h3{
  font-size: 40px;
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq-content-wrapper .accordion-item{
    border: none;
    margin-bottom: 20px;
}
  
.faq-content-wrapper .accordion-button{
    background-color: rgb(245 52 50 / 12%);
    font-weight: normal;
    font-family: 'Roboto-Medium';
}
  
.faq-content-wrapper .accordion-button:not(.collapsed){
      color: var(--body-bg);
      background-color: var(--theme-color-1);
      box-shadow: none;
}
  
.faq-content-wrapper .accordion-button::after{
    background-image: none;
    font-family: "Fontawesome"; 
      font-weight: 400;
      content: "\f107";
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.accordion-button:focus{
    box-shadow: none;
}
  
.page-full-coming{
    width: 100%;
    min-height: 100vh;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    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/coming-soon-bg.jpg');
    padding: 30px;
}
  
.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;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-1);
    font-family: 'Jost-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Roboto-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;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.blog-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border-radius: 10px;
}

.blog-image{
    position: relative;
    display: inline-block;
    width: 100%;
}

.blog-image img{
    border-radius: 10px 10px 0px 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-card{
    padding: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.blog-post-detail{
    margin-bottom: 10px;
}

.blog-post-detail span{
    color: #7A7A7A;
    font-size: 13px;
    margin-right: 10px;
}

.blog-post-detail span i{
    color: var(--theme-color-2);
    margin-right: 5px;
}

.blog-content-card h3 a{
    font-size: 20px;
    line-height: 23px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 10px;
    color: var(--heading-color);
    display: inline-block;
}

.popular-blog{
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color-4);
    color: var(--heading-color);
    padding: 8px 10px;
    border-top-right-radius: 10px;
}

.popular-blog i{
    margin-right: 5px;
}

.blog-card:hover .blog-content-card h3 a{
    color: var(--theme-color-2);
}

.blog-content-card p{
    margin-bottom: 15px;
}

.blog-uploader-share{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-uploader{
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-uploader-image img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.blod-uploader-details h4{
    font-size: 12px;
    line-height: 14px;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    margin-bottom: 5px;
}

.blod-uploader-details p{
    font-size: 10px;
    line-height: 12px;
    color: #7A7A7A;
}

.blog-share a{
    margin-left: 15px;
    color: var(--theme-color-2);
}

.blog-siebar{
    width: 100%;
    display: inline-block;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #D9D6D8;
}

.blog-siebar h3{
    font-size: 24px;
    margin-bottom: 20px;
    /* color: var(--font-white); */
}

.blog-siebar ul li a{
    /* color: var(--font-white); */
    transition: ease-in-out 0.3s;
}

.blog-siebar ul li{
    margin-bottom: 15px;
    display: flex;
}

.blog-siebar ul li a{
    display: flex;
}

.blog-siebar ul li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.blog-siebar ul li a::before{
    content: '\f00c';
    position: relative;
    font-family: 'Fontawesome';
    display: inline-block;
    margin-right: 10px;
    font-size: 10px;
}

.blogdetails-top-post-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding-top: 10px;
    padding-bottom: 10px;
}

.blogdetails-top-post-info  img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.blogdetails-top > h3{
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blogdetails-top-post-info h3{
    font-size: 14px;
    margin-left: 10px;
    
}

.blogdetails-top-post-info h3::after{
    content: '•';
    position: relative;
    display: inline-block;
    margin-left: 10px;
    padding-right: 10px;
}

.blogMain-image{
    width: 100%;
    display: inline-block;
    height: 350px;
    object-fit: cover;
    margin: 20px 0px;
}

.blogdetails-content{
    width: 100%;
    display: inline-block;
    margin: 20px 0px;
}

.blogdetails-content p{
    margin-bottom: 20px;
    text-align: justify;
}

.blogdetails-content p:last-child{
    margin-bottom: 0px;
}

.blogdetails-content h4{
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--theme-color-4);
}

.blogdetail-contact h3{
    margin: 20px 0px;
    font-size: 24px;
}

.blogdetail-contact a{
    margin-top: 20px;
}

.brochure{
    background-color: rgba(7, 30, 34, 0.05);
}

.documents-card{
    text-align: center;
}

.documents-card h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.documents-more{
    background: #FFF;
    border: 1px solid var(--theme-color-1);
    color: var(--theme-color-1);
    float: none;
    font: 13px 'Proxima Nova';
    opacity: 1;
    border-radius: 0;
    font-weight: bold;
    padding: 20px 45px;
    border-radius: 2px;
    transition: all 0.3s ease 0s;
    display: inline-block;
    margin-top: 20px;
    border-radius: 10px;
}

.documents-more:hover {
    background:  var(--theme-color-1);
    color: #FFF;
}

.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;
}

.mapouter{position:relative;text-align:right;height:200px;width:100%;}
.gmap_canvas {overflow:hidden;background:none!important;height:200px;width:100%;}

.success-msg-contact {
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display {
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: var(--theme-color-4);
    font-size: 14px;
    border-radius: 6px;
    z-index: 10;
    bottom: 72px;
    left: 50%;
    padding-left: 10px;
    color: #fff;
    width: 265px;
    transform: translate(-50%, 50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
}

.check-success-icon {
    background: var(--theme-color-1);
    padding: 10px;
    margin-right: 10px;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serviceDetail-main-image{
    width: 100%;
    height: 400px;
    position: relative;
    display: inline-block;
}

.serviceDetail-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serviceDetail-main-heading{
    margin-bottom: 2rem;
}

.serviceDetail-main-heading h2{
    font-size: 28px;
}

.serviceDetail-main-description{
    margin-top: 2rem;
}

.serviceDetail-main-description p{
    margin-top: 20px;
}

.design-list-image{
    width: 100%;
    height: 350px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: ease-in 0.3s;
}

.design-list-image:hover img{
    transition: ease-in 0.3s;
    transform: scale(1.5);
}

.design-list-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in 0.3s;
}

.design-list-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.design-list-content h3{
    font-size: 24px;
    margin-bottom: 20px;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

#gmap_canvas{
    width: 100%;
}