@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&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');


@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap') font-family: "Poppins",
sans-serif;
font-family: "Merriweather",
serif;

font-family: "Quicksand",
sans-serif;

* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}



:root {
    --primary-color: #be8e27;
    --secondary-color: #181515;
    --third-color: #fff;
}

ul,
li {
    padding: 0;
    margin: 0;
   list-style: none;
}

li {
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
    transition: 0.5s ease-in;
}

img {
    max-width: 100%;
    outline: none;
    transition: 0.5s ease;
    height: auto;
}

p {
    font-size: 16px;
    color: #181515;
    line-height: 1.5;
    margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Merriweather", serif;
}

button:focus {
    outline: 0;
    border: none;
    appearance: none;
}


/*************************** header start *******************************/
.top-header {
    background-color: var(--secondary-color);
    padding: 10px 0;
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-inner .address-info {
    padding: 0;
    margin: 0;
}

.top-header-inner .address-info ul {
    padding: 0;
    margin: 0;
    display: flex;
}

.top-header-inner .address-info ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    padding-right: 15px;
}

.top-header-inner .address-info ul li a {
    color: #fff;
}

.top-header-inner .address-info ul li a i {
    margin-right: 8px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-right p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 0;
    padding-right: 6px;
}


.header-right a i {
    background-color: var(--primary-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-left: 8px;
    transition: 0.5s ease;
}

.header-right a:hover i {
    background-color: var(--third-color);
    border-radius: 50%;
    color: var(--primary-color);
}

/*************************************** navbar css ******************************/
.navbar-top li {
    margin: 0 12px;
    padding: 0;
}

.navbar-top li a {
    color: #0f0f0f;
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.navbar-top li a:hover {
    color: var(--primary-color);
}

.navbar-top li a.active {
    color: var(--primary-color);
}

.navbar-top li ul.dropdown-menu {
    background: rgb(220 169 59 / 92%);
    padding: 0;
    margin: 0;
    min-width: 220px;
    top: 100%;
}

.navbar-top li ul.dropdown-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
}

.navbar-top li ul.dropdown-menu li a {
    padding: 8px 10px;
    font-size: 16px;
    border-bottom: 1px solid #af8223;
}

.navbar-top li ul.dropdown-menu li a:nth-last-child(3) {
    border-bottom: none;
}

.navbar-top li ul.dropdown-menu li:hover a {
    background-color: var(--secondary-color);
    color: var(--third-color);
}


/* .navbar-top .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-top .navbar-nav .nav-link:hover {
    color: var(--primary-color);
} */

.header-btn-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-btn-info i {
    color: var(--primary-color);
    transform: rotate(45deg);
    font-size: 26px;
    margin-right: 12px;
}

.header-btn-info p {
    color: var(--secondary-color);
    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 500;
}

.header-btn-info p a {
    color: var(--secondary-color);
    font-size: 22px;
}



/************************************************ banner css **************************************/
.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    left: 0;
    top: 0;
}

.banner-content-inner {
    position: relative;
    z-index: 2;
}

.banner-content-inner h4 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--third-color);
    font-family: "Merriweather", serif;
    
    width: 100%;
    position: relative;
    z-index: 2;
}

.banner-content-inner h4::before {
    position: absolute;
    content: "";
    background-image: url(../images/head-title-bg.png);
    height: 19px;
    width: 190px;
    background-repeat: no-repeat;
    background-size: cover;
    top: 19px;
    z-index: -1;
}

.banner-content-inner h1 {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--third-color);
    font-family: "Merriweather", serif;
}

.banner-content-inner p {
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
    max-width: 626px;
    width: 100%;
}

.banner-content-inner .banner-button {
    margin-top: 25px;
}

.banner-content-inner .banner-button .ban-btn {
    padding: 15px 17px;
    background-color: var(--third-color);
    color: var(--secondary-color);
    display: inline-block;
    font-weight: 500;
    transition: 0.5s ease;
    font-size: 16px;
}

.banner-content-inner .banner-button .ban-btn i {
    margin-left: 5px;
}

.banner-content-inner .banner-button .ban-btn:hover {
    background-color: var(--primary-color);
    color: var(--third-color);
}

#banner-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}

#banner-slider .owl-dots .owl-dot.active span {
    background: #be8e27;
}

#banner-slider .owl-dots .owl-dot:hover span {
    background: #be8e27;
}

#banner-slider .owl-dots .owl-dot span {
    border-radius: inherit;
    width: 16px;
    height: 4px;
    margin: 5px 4px;
    background: #fff;
}

/********************************** about-sec ***************************/

.heading-common span {
    border: 2px solid #af8223;
    border-radius: 36px;
    padding: 6px 20px 6px 20px;
    color: #0f0f0f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.heading-common h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #0f0f0f;
}

.about-sec {
    padding: 80px 0 180px;
}

.about-img {
    position: relative;
}

.about-img:before {
    position: absolute;
    content: "";
    border-bottom: 8px solid #f5e6c3;
    border-left: 8px solid #f5e6c3;
    width: 52%;
    height: 47%;
    top: 79%;
    left: 30%;
    z-index: -1;
}

.about-img:after {
    position: absolute;
    content: "";
    border-top: 8px solid #f5e6c3;
    border-right: 8px solid #f5e6c3;
    height: 52%;
    width: 47%;
    top: 8%;
    left: 30%;
    z-index: -1;
}

.about-img .about1 {
    width: 298px;
}

.about-img .about2 {
    position: absolute;
    bottom: -120px;
    right: 0;
}

.about-img .about-text {
    background-color: #be8e27;
    border: 4px solid #fff;
    width: 185px;
    height: 185px;
    position: absolute;
    top: 35%;
    left: 40%;
    outline: 1px dashed #dfdad1;
    outline-offset: -13px;
    animation: imagemove 10s ease infinite;
}

/* .faq-single-image-holder {
    animation: imagemove 10s ease infinite;
  }
   */
  @keyframes imagemove {
    0% {
      transform: translate3d(0px, 0px, 0px);
    }
    20% {
      transform: translate3d(-10px, -10px, 0px);
    }
    40% {
      transform: translate3d(-10px, 0px, 0px);
    }
    60% {
      transform: translate3d(-10px, 10px, 0px);
    }
    80% {
      transform: translate3d(10px, 10px, 0px);
    }
    100% {
      transform: translate3d(0px, 0px, 0px);
    }
  }

.about-img .about-text-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 26px 0;
}

.about-img .about-text-inner h5 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 5px;
}

.counter {
    animation-duration: 1s;
    animation-delay: 0s;
}

.about-img .about-text-inner p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.about-right p {
    margin-bottom: 8px;
}

.about-btn {
    margin-top: 25px;
}

.btn-in {
    background-color: var(--primary-color);
    padding: 15px 20px;
    color: var(--third-color);
    display: inline-block;
    transition: 0.5s ease;
    border: 1px solid #af8223;
}

.btn-in i {
    margin-left: 5px;
}

.btn-in:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid #af8223;
}

.about-right {
    padding: 0px 0px 0px 30px;
}

.about-sec.about-inner-sec .about-img:before{
display: none;
}
.about-sec.about-inner-sec .about-img:after{
display: none;
}


.about-sec.about-inner-sec .about-img .about-text {
    background-color: #be8e27;
    border: 4px solid #fff;
    width: 180px;
    height: 180px;
    position: absolute;
    top: 41%;
    left: 35%;
    outline: 1px dashed #dfdad1;
    outline-offset: -13px;
    border-radius: 50%;
}
.circle {
    box-shadow: 0px 0px 1px 1px #0000001a;
  }
.about-sec.about-inner-sec .about-img .about-text-inner h5 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 5px;
}
.about-sec.about-inner-sec .about-img .about-text-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
   
}
.pulse {
    animation: pulse-animation 2s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
  }
  
/********************************** service-sec ***************************/
.service-sec {
    padding: 80px 0;
    background-color: #f5f3f3;
}

.service-wrap {
    background-color: #fff;
}

.service-content {
    background-color: #fff;
    padding: 25px 20px;
}

.service-content h3 {
    font-family: "Quicksand", sans-serif;
    color: #181515;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.service-content h3 a{
    color: #181515;
}

.service-content p {
    height: 82px;
    line-height: 1.6;
}

.service-sec .raed-more {
    margin-top: 10px;
}

.service-sec .raed-more .read-more-btn {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 10px 15px;
    color: var(--third-color);
    position: relative;
    transition: 0.5s ease;
    border: 1px solid #af8223;
}

.service-sec .raed-more .read-more-btn:after {
    position: absolute;
    content: "";
    right: -7px;
    top: 0;
    background-color: var(--primary-color);
    width: 16px;
    height: 102%;
    transform: skewX(12deg);
    border: 1px solid transparent;
}

/* .service-sec .raed-more .read-more-btn:hover {
    background-color: transparent;
    border: 1px solid #af8223;
    color: var(--primary-color);
}

.service-sec .raed-more .read-more-btn:hover:after {
    background-color: #fff;
    border-right: 1px solid #af8223;
    color: var(--primary-color);
    height: 102%;
    right: -6px;
    border-bottom: 1px solid #af8223;
} */

#service-slider .owl-dots .owl-dot.active span,
#service-slider .owl-dots .owl-dot:hover span {
    background: #0f0f0f;
}

#service-slider .owl-dots .owl-dot span {
    background-color: #6a6969;
    border-radius: inherit;
    width: 18px;
    height: 6px;
    margin: 2px 5px;
}

.service-sec.service-inner-sec .service-wrap{
    margin-bottom: 35px;
    box-shadow: 0px 0px 10px rgb(143 137 137 / 40%);
    border: 1px solid transparent;
    transition: 0.5s ease;
}

.service-sec.service-inner-sec .service-wrap:hover{
    border:1px solid #d5a94d;
}
section.service-sec.service-inner-sec {
    background: #fff;
}

.service-sec.service-inner-sec .service-wrap .service-img{
    position: relative;
    overflow: hidden;
}
.service-sec.service-inner-sec .service-wrap .service-img img{
    transition: 0.5s;
}

.service-sec.service-inner-sec .service-wrap:hover .service-img img{
    transform: scale(1.2);
}

.service-content-inner{
    padding: 100px 0;
}
.service-right-image{
    width: 100%;
    height: 450px;
    margin-bottom: 40px;
    overflow: hidden;
}
.service-right-image img{
    width: 100%;
}
.side-bar {
    padding-left: 20px;
}
.service_menu_nav {
    background: #fff;
    padding: 30px 30px;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.service_menu_nav ul li {
    padding: 0; list-style: none;
}
.service_menu_nav ul li a {
    background-color: #fff;
    display: block;
    border-radius: 6px;
    padding: 15px 25px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    background-size: 200%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service_menu_nav ul li:hover a, .service_menu_nav ul li.current-menu-item a, .service_menu_nav ul li.active a {
    padding-left: 20px;
    border-color: transparent;
    transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    color: #ffffff;
    background: #dca52f;
}
.widget_contact {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 40px 40px;
    z-index: 2;
    text-align: center;
}
.widget_contact:before{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    top:0;
    left: 0;
    content: "";
    z-index: -1;
}
.widget-content h4{
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}
.widget-content .phone-number {
    margin-bottom: 10px;
}
.widget-content  .phone-number a{
    color: #fff;
}
.widget-content  .email{
    margin-bottom: 10px;
}
.widget-content  .email a{
    color: #fff;
}

.widget-content  .link-btn .linked-btn{
    background: #cc9e16;
    padding: 11px 22px;
    color: #fff;
    display: inline-block;
}

.service_menu_nav h3{
    color: #181515;
    font-size: 25px;
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eee;
    
}
.service-right-content h3 {
    color: #000;
    font-size: 35px;
    font-weight: 600;
}


/********************************** portfolio-sec ***************************/
.portfolio-sec {
    padding: 80px 0;
}

.about-btn.portfolio-btn {
    display: flex;
    justify-content: flex-end;
}

.inner-wrap-image {
    position: relative;
    overflow: hidden;
}

.inner-wrap-image img {
    transition: 0.5s ease;
}

.inner-wrap-image:hover img {
    transform: scale(1.2);
}

.inner-wrap-image .hover-effect {
    position: relative;
}

.inner-wrap-image .hover-effect {
  	display:none;
    position: absolute;
    width: 100%;
    content: "";
    padding: 14px 13px;
    background-color: rgb(190 142 39);
    opacity: 0;
    bottom: 0px;
    left: 0;
}

.inner-wrap-image:hover .hover-effect {
    opacity: 1;
}

.hover-effect .left h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.hover-effect .left p {
    color: #fff;
    font-size: 15px;
    margin: 0;
}

.hover-effect .right i {
    background-color: #000;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

.inner-wrap-image .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#portfolio-slider .owl-dots .owl-dot.active span,
#service-slider .owl-dots .owl-dot:hover span {
    background: #0f0f0f;
}

#portfolio-slider .owl-dots .owl-dot span {
    background-color: #6a6969;
    border-radius: inherit;
    width: 18px;
    height: 6px;
    margin: 2px 5px;
}

.portfolio-sec.portfolio-inner-sec{
    padding: 80px 0;
}

.portfolio-sec.portfolio-inner-sec .inner-wrap{
    margin-bottom: 30px;
}

.portfolio-sec.portfolio-inner-sec .inner-wrap img{
    width: 100%;
    height: 330px;
    object-fit: cover;
}

/********************************** portfolio-sec ***************************/
.blog-sec {
    padding: 100px 0;
    background-color: #f5f3f3;
}
.blog-wrap{
    position: relative;
    display: flex;
    justify-content: space-around;
}

.blog-image{
    position: relative;
    width: 360px;
  	height: 300px !important;
  	object-fit:cover;
}

.blog-image .blog-dt{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #be8e27;
    color: #fff;
    padding: 9px 12px;
}

.blog-content{
    box-shadow: 0px 0px 10px rgb(146 134 134 / 50%);
    background-color: #fff;
    padding: 40px 26px;
    width: 354px;
    margin-left: -38px;
    position: relative;
    display: inline-block;
    margin-top: 30px;
}

.blog-content h3{
    color: #181515;
    font-size: 22px;
    margin:15px 0;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
}

.blog-content h3 a{
    color: #181515;
}

.blog-content p{
    color: #5e5e5e;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    text-overflow: ellipsis;
}

.blog-content .blog-btn{
    color: #af8223;
    font-size: 18px;
}

.dt-post{
    list-style: none;
    padding: 0;
    margin: 0;
}
.dt-post li{
    display: inline-block;
    margin-right: 10px;
    color: #5a5a5e;
}
.dt-post li i{color: #be8e27;margin-right: 5px;}

.blog-sec.blog-inner-sec{
    background-color: #fff;
}

.blog-sec.blog-inner-sec .blog-wrap{
    display: block;
}

.blog-sec.blog-inner-sec .blog-wrap .blog-image img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.blog-sec.blog-inner-sec .blog-wrap .blog-image{
    width: 100%;
}

.blog-sec.blog-inner-sec .blog-content{
    margin-left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0px;
}

.blog-sec.blog-inner-sec .blog-content h3 a{
    color: #181515;
}

/************************************** footer css *************************/
.footer-top {
    background-color: #1a1a1c;
    padding: 60px 0;
}

.footer-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.footer-top-wrap{
    display: flex;
    padding-left: 15px;
    color: #fff;
    position: relative;
}

.footer-top-wrap .icon i{
    background-color: #282828;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.footer-top-wrap h3{
    color: #74787c;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    padding-left: 5px;
}

.footer-top-wrap p {
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
    padding-left: 5px;
}

.footer-top-wrap p a{
    color: #fff;
}

.footer-top-wrap .icon{
    margin: 0 6px 0 0px; position: static;
}
.footer-top-inner{
    border-bottom: 1px dotted #6a6969;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-nav h3{
    color: #fff;
    font-size: 25px;
    position: relative;
    margin-bottom: 25px;  
}

.footer-nav h3:before{
    position: absolute;
    content: "";
    background-image: url(../images/footer-title-bg.png);
    background-repeat: no-repeat;
    height: 2px;
    width: 60px;
    bottom: -8px;
}

.footer-nav h4{
    color: #fff;
    font-size: 18px;
    position: relative;
    margin-bottom: 10px;
    margin-top: 40px; 
}


.footer-nav ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-nav ul li{
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    padding-bottom: 10px;
}
.footer-nav ul li a{
    color: #fff;
    font-size: 15px;
}
.footer-nav ul li a:hover{
    color: #af8223;
    padding-left: 5px;
}

.footer-nav p{
    color: #fff;
    font-size: 15px;
    margin: 10px 0 20px;
}

.footer-social a{
    display: block;
}

.footer-social a i{
    background-color: #af8223;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    border-radius: 50%;
    margin-right: 9px;
    transition: 0.5s ease;
}

.footer-social a:hover i{
    background-color:var(--third-color);
    color: var(--primary-color);
}

.footer-gallery-inner{
    display: flex;
    flex-wrap: wrap;
}
.footer-gallery-inner a{
    overflow: hidden;
}
.footer-gallery-inner a img{
    width: 75px;
    height: 75px;
    margin: 0 10px 10px 0;
    transition: 0.5s ease;
    object-fit: cover;
}

/* .footer-gallery-inner a:hover img{
    transform: scale(1.2);
} */

.copy-right{
    background-color: #0a0a0b;
    padding: 15px 0;
    text-align: center;
}

.copy-right p{
    color: #fff;
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}
.copy-right p a{color: #af8223;}

.copy-right p span{color: #af8223;}

/************************************************** common banner css ************************/
.common-banner-sec{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0;
    z-index: 2;
}
.common-banner-sec:before{
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    z-index: -1;
}

.common-banner-sec h1{
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 15px;
}

.common-banner-sec .breadcamp{
padding: 0;
margin: 0;
}

.common-banner-sec .breadcamp li{
    display: inline-block;
    font-size: 18px;
}

.common-banner-sec .breadcamp li a{
    color: #fff;
    font-weight: 500;
}

.common-banner-sec .breadcamp li span{
    color: #ebb748;
    font-weight: 500;
}
.common-banner-sec .breadcamp li i{
    color: #fff;
}

/****************************** contact css ************************************/
.contact-sec{
    padding: 80px 0;
}

.contact-right h2{
    color: #af8223;
    font-size: 35px;
    margin-bottom: 20px;
}

.contact-wrap {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 30px 22px;
    margin-bottom: 20px;
}

.cont-icon{
    background-color: #be8e27;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
}


.contact-text-sec h3{
    color: #0a0a0b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-left: 5px;
}

.contact-text-sec p{
    color: #74787c;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    padding-left: 5px;
}

.contact-text-sec p a{
    color: #74787c;
}

.contact-right {
    padding: 25px 35px;
    box-shadow: 0px 0px 10px rgb(68 63 63 / 24%);
}

.contact-form{
    box-shadow: 0px 0px 10px rgb(168 157 157 / 50%);
    padding: 35px 35px;
    margin-top: 50px;
}

.contact-form .form-control{
    box-shadow: none;
    border: 1px solid #bdbdbd;
    padding: 10px 15px;
    height: 50px;
    border-radius: inherit;
}

.contact-form textarea.form-control{
    box-shadow: none;
    border: 1px solid #bdbdbd;
    margin-bottom: 18px;
    padding: 10px 15px;
    height: 130px;
    border-radius: inherit;
    resize: none;
}

.contact-form .submit-btn{
    background-color: var(--primary-color);
    color: var(--third-color);
    border: 1px solid #af8223;
    transition: 0.5s ease;
    padding: 12px 25px;
    font-size: 20px;
    margin-top: 25px;
}

.contact-form .submit-btn:hover{
    background-color: transparent;
    color: #af8223;
    border:1px solid #af8223;
}


.c_title{ margin: 0 0 25px 0; font-size: 20px; font-weight: 500;}








.bg-yellow{
	background: #be8e27;
}

.list-item {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease-in-out;
    left: 50%;
    margin-top: 300px;
	opacity: 0;
	visibility: hidden;
}

.box:hover .list-item{
	margin-top: 0;
	opacity: 1;
	visibility: visible;
}

.box h3{
	transition: all 0.7s ease-in-out;
	opacity: 1;
	visibility: visible; text-align: center;
    font-size: 30px;
   font-weight: 600
}

.box:hover h3{
	opacity: 0;
	visibility: hidden;
	transition: all 0.7s ease-in-out;
}

.box{
	padding: 90px 75px !important; background: #be8e27;
    background-image: url(../images/ser_bg_1.jpg);filter:alpha(opacity=50); z-index: 1;min-height: 270px;
}

.box:before{content:""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #be8e27e0; z-index: -1; }

.list-item ul li a {
    background: #fff;
    display: block;
    padding: 13px 31px;
    width: 100%;
    margin-bottom: 12px;
	text-align: center;
	text-transform: capitalize;
    color: #be8e27;
}

.list-item ul li a:hover{
	background: #000;
	color: white;
}

.list-item {
    height: 180px;
    overflow: auto;
    width: 95%;
}

.list-item li{ list-style: none;}

.list-item ul{
	margin: 0px 5px;
}

/* width */
::-webkit-scrollbar {
	width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #181818; 
}


.n_con_t{ margin: 0; padding: 0; text-align: center; font-size: 25px; color: #aeaeae;}
#portfolio-slider .inner-wrap-image img{min-height: 300px; object-fit: cover;}


nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon {
    position: absolute;
    right: 10px;
}

.ace-responsive-menu li ul.sub-menu li a::before {
    position: absolute;
    font-family: 'FontAwesome';
    content: "\f078";
    right: 16px;
    color: #999;
    display: none;
}

.ace-responsive-menu li ul.sub-menu li ul.sub-menu li a::before {
    display: none;
}

.ace-responsive-menu > li > a span i {
    font-size: 12px;
}

.ace-responsive-menu li ul.sub-menu li a {
    padding: 12px 12px;
    line-height: initial;
}

.ace-responsive-menu > li > a i {
    margin: 0 0px 0 5px;
    font-size: 14px;
}

@media screen and (min-width:991px){
    .ace-responsive-menu li ul.sub-menu li a::before {
        content: "\f054";
    }
    
}
@media screen and (max-width:991px){
    .ace-responsive-menu li ul.sub-menu li a::before {
        content: "\f054";
    }
nav .container {
    display: table !important;
    position: relative;
    margin: 12px auto 12px;
}

}

.logo {
	padding: 15px 0px;
    max-width: 275px;
}




/* New Style */


.ptb-110 {
	padding: 120px 0px;
}

.ptb-100 {
    padding: 80px 0px;
}


.ptb-60 {
    padding: 60px 0px;
}

.fs_40 h2 {
	font-size: 60px!important;
	margin-top: 30px;
}

.contact_right {
	background: #fff;
	padding: 40px;
	border-top: 3px solid #be8e27;
	border-left: 3px solid #be8e27;
}

/* .contact_right {
    background: rgb(255 255 255 / 40%);
    padding: 40px;
    border-top: 3px solid #be8e27;
    border-left: 3px solid #be8e27;
    backdrop-filter: blur(7px);
} */

.twbar_head h2 {
	font-weight: 700;
	color: #be8e27;
}


.contact_right .form-control {
  display: block;
  width: 100%;
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #be8e27;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: 3px 3px 9px rgb(255 255 255 / 20%);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact_right .form-control:focus {
    color: #be8e2799;
    outline: none;
    border-color: #be8e27;
 
}

.contact_right .form-select {
    padding: 12px 10px;
    color: #6c7c89;
    background-color: #fff;
    
}

.contact_right .form-select:focus {
    border-color: #be8e27;
    outline: 0;
    box-shadow: none;
}

.contact_right .sub_btn {
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    font-size: 16px;
    padding: 14px 22px;
    font-weight: 600;
    background: #be8e27;
    border: 1px solid transparent;
    color: #fff;
    outline: none;
    min-width: 150px;
    border-radius: 0;
    margin-top: 20px;
}

.contact_right .sub_btn:hover {
    background: #0c0c0c;
}

.contact_right .form-select option:checked,
.contact_right .form-select option:hover {
    box-shadow: 0 0 10px 100px #be8e27 inset;
    background: #be8e27;
    color: #fff;
}

.contact_right .form-select:focus > option:checked > { 
   background: #be8e27 !important;
}

.smser {
    background: #be8e27;
    padding: 20px 30px;
    box-shadow: 1px 2px 5px 1px rgb(28 28 28 / 50%);
    transition: .5s ease-in;
}

.smser:hover {
    background: #0f0f0f;
    padding: 20px 30px;
    box-shadow: 1px 2px 5px 1px rgb(28 28 28 / 50%);
    transition: .5s ease-out;
    cursor: pointer;
}

.smser:hover p,
.smser:hover p::before {
    color: #be8e27;
    transition: .5s ease-out;
}


.smser p {
    font-size: 20px;
    color: #fff;
    margin: 0;
    position: relative;
    padding-left: 40px;
    font-weight: 600;
    transition: .5s ease-in;

}

.smser p::before {
    position: absolute;
    content: "\f00c";
    left: 0;
    font-family: "Font Awesome 6 free";
    font-size: 28px;
    color: #fff;
    opacity: 1;
    font-weight: 900;
    bottom: -5px;
    transition: .5s ease-in;
}

.bgs_color {
    background: #f5f3f3;
}

.two_img ul li {
    margin: 0px 15px;
}

.thre_img p a {
    text-decoration: none;
    color: #0f0f0f;
    font-size: 18px;
    font-weight: 600;
}

.tw_last h2,
.tw_last h3 a {
    font-size: 40px;
    font-weight: bold;
    color: #0f0f0f;
}

.tw_last h3 a {
    color: #be8e27;

}

.tw_last h4 {
    font-size: 22px;
    font-weight: bold;
    color: #0f0f0f;
    margin-bottom: 15px;
}

.wide_rng h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0f0f0f;
}



























/***
====================================================================
                   MEDIA QUARY SECTION START
====================================================================
***/

@media (max-width: 1030px) {
    
    .smser p {
        font-size: 18px;
        padding-left: 38px;
    }

    .smser p::before {
        font-size: 26px;
    }

}

@media (max-width: 992px) {

    .pt30 {
        margin-top: 1rem;
    }
    
    .two_img ul li {
        margin: 0px 5px;
}
    .fs_40 h2 {
        font-size: 48px !important;

}
.tw_last h2, 
.tw_last h3 a {
    font-size: 26px;

}

}

@media (max-width: 424px) {

    .fs_40 h2 {
        font-size: 40px !important;
}
    
}

.review-sec{padding: 100px 0 0 0;}

.client-sec{ padding: 100px 0px;}
.client-sec .heading-common{ margin-bottom: 35px;}
.client-sec .logo_img{     margin: 8px 13px;
    border: 1px solid #d1d1d1;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;}
.client-sec .logo_img img{max-height: 160px;}



.pdf_download{ margin: 15px 0; padding: 0;}
.pdf_download .download_b{ margin: 0; padding: 0; list-style: none;}
.pdf_download .download_b li{ margin: 5px 0px; list-style: none;}
.pdf_download .download_b li a{ display: flex; padding: 8px; 10px; justify-content: flex-start; align-items: center; background: #d6f0ff70; border-radius: 3px; font-size: 14px; line-height: 1.4; color: #38454d; border: 1px solid #d7e1e8;}
.pdf_download .download_b li a:hover{ background: #abd6ee;}
.pdf_download .download_b li a .icon_1{width: 30px;flex-shrink: 0;}
.pdf_download .download_b li a .icon_1 img{}
.pdf_download .download_b li  .text{ margin: 0 0 0 15px;}

.ser_block{border: 1px solid #ccc;border-radius: 8px; padding-bottom: 15px; background: #fefefe;}
.ser_block .top{padding: 16px 0;background: #f1f1f1;border-radius: 8px;}
.ser_block .top .image{max-width: 150px;   margin: 0 auto;}
.ser_block .top .image img{ width: 150px; max-width: 100%;}
.ser_block .icon_l{ margin: 0 0 15px 0; padding: 0; list-style: none; display: flex;}
.ser_block .icon_l li{ list-style: none;}
.ser_block .icon_l li img{ width: 40px;}
.ser_block .title_1,.ser_block .title_2{ font-size: 20px; font-weight: 600; margin: 0 0 10px 0;}
.ser_block .title_1{ color: #333;}
.ser_block .title_2{ color: var(--primary-color);}
.ser_block .s_list{ margin: 0; padding: 0; list-style: none;}
.ser_block .s_list li{ margin: 8px 0px;}
.ser_block .bottom{ padding: 15px 15px;}
.ser_block .s_list li{position: relative; padding-left: 26px; font-weight: 300; color: #555; list-style: none;}
.ser_block .s_list li:before{font-family: "Font Awesome 6 Free";font-weight: 900; content: "\f058"; font-size: 18px; position: absolute; left: 0; top: 0; color: var(--primary-color);}

.service-sec .owl-nav button{ width: 40px; height: 40px; text-align: center; line-height: 40px; background-color: #222 !important; color: #fff !important; font-size: 18px; border-radius: 50% !important; top: 50% !important; margin-top: -20px !important; position: absolute;}
.service-sec .owl-nav button.owl-prev{left: -23px !important;}
.service-sec .owl-nav button.owl-next{right: -23px !important;}

.test_b{ padding: 50px 30px; background: #eeeeee70; margin-top: 40px;}
.test_b .quote_text{ color: 555; margin: 25px 0 0 0; position: relative; font-style: italic; font-weight: 300;}
.test_b .name{font-size: 22px;}
.test_b .sub_name{ color: #535353; font-size: 17px;}
.test_b .quote_text:after{font-family: "Font Awesome 6 Free";font-weight: 900; content: "\f10e"; font-size: 40px; right: 15px; top: -58px; position: absolute; opacity: .5;}

.sin_con_b{}
.sin_con_b .b_text{ color: #555;}
.sin_con_b .icon_l{margin: 0 0 15px 0; padding: 0; list-style: none; display: flex;}
.sin_con_b .icon_l li img{width: 40px;}
.sin_con_b .form_b{}
.sin_con_b .form_b h4{ font-size: 18px; margin: 15px 0 15px 0;}
.sin_con_b .form_b .btn-in{ margin-top: 20px;}
.sin_con_b .form_b .form-control{height: 50px;}

.product_sec{background-color: #f7f7f7;}
.f_logo img{ max-width: 200px;}
.f_logo_1{ width: 150px; margin: 15px;}

.sing_post_b{ margin: 0; padding: 20px 20px; background: #fff; border-radius: 20px; box-shadow: 0 0 14px #00000014; }
.blog_wrap.sing_post_b .service-img img{ height: auto;}









 /******************************************** blog css ********************************/

.blog-sec{
  padding: 100px 0;
  background-color: #f3f7fa;
}


.blog-wrap{
  position: relative;
  overflow: hidden;
}

/* .blog-sec #blog-slider .owl-stage-outer{
  overflow: visible;
} */

.blog-wrap .blog-read-more .blog-read-more-btn{
  color: #C7A14E;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s ease;
    border: 1px solid #C7A14E;
    padding: 14px 30px;
    display: inline-block;
}

.blog-wrap .blog-read-more .blog-read-more-btn:hover{
color: #fff;
background: #C7A14E;
border: 1px solid #C7A14E;
}

.blog-image-box{
  position: relative;
    overflow: hidden;
    padding-top: 44px;
}


.blog-image-box img{
  position: relative;
  height: 260px;
  object-fit: cover;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  width: 100%;
}



.blog-text-box{
  padding: 0px 30px 30px;
    background-color: #fff;
    position: relative;
    margin-bottom: 10px;
    box-shadow: 0px 0px 10px rgb(130 124 124 / 42%);
}
.blog-text-box h3{
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0;
  color: #C7A14E;
  line-height: 1.6;
}

.blog-text-box h3 a{
  color: #C7A14E;
}
.blog-text-box p{
  font-size: 15px;
    font-weight: 500;
    margin:25px 0 10px 0;
    line-height: 1.7;
    color: #686565;
    padding: 0 15px 0;
}




.date-post{
  position: absolute;
    left: 0;
    top: 0;
    background-color: #1a4d5e;
    color: #fff;
    padding: 8px 12px;
    word-wrap: break-word;
    width: 90%;
}
.date-post i{
  margin-right: 8px;
}

.blog-text-box .meta-post{
  color: #C7A14E;
  padding: 18px 0px 0px;
  word-wrap: break-word;
  width: 100%;
}
.blog-text-box .meta-post{
margin: 0;
list-style: none;
}

.blog-text-box .meta-post li{
  margin-right: 14px;
    display: inline-block;
    color: #a6acad;
    font-weight: 500;
    font-size: 12px;
}

.blog-text-box .meta-post li i{ color: #C7A14E;;margin-right: 8px;}
.blog-sec .section-title h2 {
  margin-bottom: 10px;
}


.video_b{ position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;}
.video_b video{position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;}



/** New Section **/
.p_box a{ color: #555;}
.grap{ padding: 50px 0px;}

.image_block_1{ display: flex;flex-wrap: wrap; margin-right: -15px; margin-left: -15px;}
.image_block_1 > div{ flex-shrink: 0; width: 100%; max-width: 100%; padding-right: 15px;padding-left: 15px;}
.image_block_1 .left_b{flex: 0 0 auto;width: 50%;}
.image_block_1 .right_b{flex: 0 0 auto; width: 50%;}
.image_block_1.right .left_b{ order: 2}
.image_block_1.right .right_b{ order: 1;}
.image_block_1.top{ flex-direction: column;}
.image_block_1.top .right_b,.image_block_1.top .left_b{ width: 100%;}
.image_block_1.top .image{ margin-bottom: 15px;}
.image_block_1.hide_c .right_b,.image_block_1.hide_i .left_b{width: 100%;}
.image_block_1.bottom .right_b{width: 100%; order: 1;}
.image_block_1.bottom .left_b{ width: 100%; order: 2;}

section ul li,.section ol li{ list-style: initial; }
section ul,.section ol{padding-left: 20px; margin: 15px 0px;}

.blog_wrap{}
.blog_wrap .service-img img{ height: 300px; width: 100%; object-fit: cover;}
.blog_wrap .tp-blog-meta > span{ margin-right: 8px; color: #555;}
.blog_wrap .tp-blog-meta > span i{ margin-right: 8px; color: var(--primary-color);}
.blog_wrap h3{ font-size: 20px; margin: 10px 0 10px 0;}
.blog_wrap p{ color: #555;}
.sin_post_sec{ background: #fbfbfb;}





#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link{line-height: 1.2;}


.width-300 {
    max-width: 300px;
    text-align: center;
    margin: auto;
  }

.diplay-flexs {
  display: flex;
  justify-content: space-around;
}

.bg-color {
     background: #f5f3f3;
     padding: 40px 0px;
   }

   img {
     max-width: 100%;
   }

   .full-with-content {
      text-align: center;
   }
   
   .image-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 30px;
   }

   .image-content h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
   }
   .image-content h5 {
     margin-bottom: 16px;
   }

   .full-with-content h3 {
    margin: 30px 0px 20px;
   }

   .full-with-content p {
     text-align: start;
   }

.image-content ul{ padding-left: 25px; margin: 15px 0px; } 

  .image-content ul li {
    padding-bottom: 5px;
    font-size: 15px;
      list-style: disc;
} 

   .image-content span {
     color: #252525;
     font-weight: 600;
     margin: 30px 0px 10px;
     display: inline-block;
   }

   .multi-image-content .pl-30 {
    padding-left: 30px;
   }

   .multi-image-content h3 {

    font-size: 24px;
    padding: 15px;

   }


   .ul-image ul li {
    padding: 20px 0;
   
   }

   .ul-image ul li span img {
    padding-right: 20px;
   }

   .table span img {
      width: 20px;
   }

   .image-content p {
    margin-top: 20px;
   }


   @media (max-width: 992px) {
     .diplay-flexs {
      display: grid;
      justify-content: center;
    }

    .diplay-flexs img{
      text-align: center;
      margin: auto;
      margin-top: 20px;
    }
   }






















