@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
* {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: 'Montserrat', sans-serif;
    transition: .3s;
}

:root {
    --theme_color: #2F7955;
    --white_colo: #fff;
    --link_color: #000;
    --para_color: #7A7B80;
    --sub_title_color: #0B3D2C;
    --footer_bg: #1D4A34
}

ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--para_color);
}

a {
    text-decoration: none;
    color: var(--link_color);
    display: inline-block;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

section {
    position: relative;
    padding: 100px 0px;
}

button:focus:not(:focus-visible), .btn:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.pb-0 {
    padding-bottom: 0px;
}

.pt-0 {
    padding-top: 0px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.main_title {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 65px;
    color: var(--theme_color);
    text-transform: capitalize;
}

.sub_ttl {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--sub_title_color);
    text-transform: uppercase;
}

.btn {
    padding: 14px 21px;
    color: var(--white_colo)!important;
    background-color: var(--theme_color);
    border-radius: 5px;
    position: relative;
    isolation: isolate;
    border: none;
    font-size: 14px;
    font-weight: 600;
}

.btn::after {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100px;
    background-color: #6A961F;
    z-index: -1;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: scale(0);
}

.btn:hover::after {
    transform: scale(1);
    border-radius: 5px;
}

.gray_bg {
    background: #F0F7F7;
}

/* =============top to scroll button============== */
.scroll {
    z-index: 9999999;
    position: fixed;
    bottom: 65px;
    right: -50px;
    font-size: 15px;
    color: var(--white_colo);
    width: 50px;
    height: 50px;
    background: var(--theme_color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.5s;
}
.scroll:hover{
    background-color:#6A961F;
    color: var(--white_colo);
}
.scroll.down {
    right: 15px;
}
/* ====================header======================== */

.topbar {
    padding: 15px 0px;
    border-bottom: #EDEDED 1px solid;
}

.topbar ul {
    display: flex;
    gap: 50px;
}

.topbar li,
.topbar li a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #2A7D2E;
    font-weight: 400;
    line-height: 1;
}

:where(.topbar) a:hover {
    color: #2A7D2E;
}

.topbar li a:nth-child(2) {
    border-right: var(--theme_color) 1px solid;
    padding-right: 10px;
}

.header .navbar {
    padding: 23px 0px;
    width: 100%;
    background-color: var(--white_colo);
    transition: .3s;
    z-index: 9999;
}
.header .navbar.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0px 5px 10px rgb(212 215 218 / 48%);
}
.header .navbar-light .navbar-nav .nav-link.active,
.header .navbar-light .navbar-nav .show>.nav-link,
.header .navbar-light .navbar-nav .nav-link:hover {
    color: var(--theme_color)
}
.header .navbar-light .navbar-nav .nav-link.active{
    font-weight: 700;
}
#homepage .homepage, #about .about, #services .services, #contact .contact, #gallery .gallery  {	
	color: var(--theme_color) !important;
	font-weight:bold;
}

.header .navbar-light .navbar-nav .nav-link {
    padding: 10px 13px;
}

.free_quot {
    margin-left: 43px;
}

.header .navbar-brand {
    padding: 0px;
}


/* ======================banner section start============================ */

.banner_sec {
    padding: 25px 0px 0px;
}

.banner_caption {
    position: relative;
    height: 100%;
    padding-top: 120px;
}

.banner_caption::after {
    content: '';
    width: 200px;
    height: 220px;
    position: absolute;
    background: url(../images/banner-shape.png) no-repeat center;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgb(229 229 229);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -100px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -100px;
}


/*================== what we do ================ */

.whatwe_do {
    padding-top: 60px;
    padding-bottom: 150px;
}

.whatwe_do_info .main_title {
    font-size: 28px;
}

.whatwe_do::after {
    content: '';
    width: 260px;
    height: 260px;
    background: url(../images/what-wedo-shape.png) no-repeat center;
    position: absolute;
    bottom: 0;
    left: -10px;
    background-size: contain;
}

.what_wedo_grids {
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    padding: 60px;
    margin-top: -121px;
    position: relative;
    z-index: 999;
    background: #fff;
}

.what_wedo_grids .main_title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}

.what_wedo_grids ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 160px;
    place-items: center;
    position: relative;
}

.what_wedo_grids ul::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background: #EDEDED;
    left: 50%;
}

.what_wedo_grids ul li {
    text-align: center;
}

.what_wedo_grids ul li svg {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
}

.what_wedo_grids ul li svg path {
    fill: var(--theme_color);
}

.what_wedo_grids ul li h4 {
    font-size: 22px;
    line-height: 26px;
    color: var(--sub_title_color);
}


/*================== choose section ================ */

.choose_us {
    padding-top: 0;
}

.choose_inner_cnt {
    display: grid;
    grid-template-columns: 443px 1fr;
    gap: 40px;
    background: #FFFFFF;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.choose_inner_cnt::after {
    content: '';
    background: url(../images/choose-shape.png) no-repeat center;
    position: absolute;
    width: 165px;
    height: 190px;
    right: -1px;
    top: -1px;
}

.mb-15 {
    margin-bottom: 15px;
}

.choose_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 53px;
    margin-top: 30px;
}

.choose_info {
    padding: 40px 113px 40px 0px;
}

.choose_grid li {
    display: flex;
    gap: 10px;
}

.choose_image img {
    height: 100%;
    object-fit: cover;
}
.choose_txt h5 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 400;
}

.choose_txt p {
    margin-bottom: 0px;
}

.choose_icon img, .choose_icon svg  {
    width: 26px;
    height: 30px;
}


/*======================== service========================= */

.service {
    background: #F0F7F7;
}

.service_item {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
}

.service_img {
    margin-bottom: 50px;
    position: relative;
}

.service_img>img {
    border-radius: 50%;
}

.service_icon {
    width: 70px;
    height: 70px;
    background: #EAF1EE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.service_icon img, .service_icon svg {
    width: 40px;
    fill: var(--sub_title_color);
    height: 40px;
}
.service_icon svg path {
    fill: var(--theme_color);
}
.service_item:hover .service_icon {
    background-color: var(--theme_color);
}

.service_item:hover .service_icon img {
    filter: invert(100%) sepia(10%) saturate(239%) hue-rotate(277deg) brightness(117%) contrast(168%)
}
 
.service_item:hover .service_icon svg path {
    fill: white;
}
.service_info h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 20px;
    color: var(--sub_title_color);
}

.service_info p {
    min-height: 78px;
}

.leran_btn {
    margin: 0px auto;
    display: inline-flex;
    transition: .5s;
    gap: 10px;
    color: var(--para_color);
    align-items: center;
}

.leran_btn span {
    width: 0px;
    overflow: hidden;
    transition: .5s;
    white-space: nowrap;
}

.leran_btn i {
    font-size: 18px;
}

.service_item:hover .leran_btn span {
    width: 95px;
}

.service_item:hover .leran_btn {
    color: var(--theme_color);
}


/* =============================project ============================ */

.project-area {
    padding-bottom: 80px;
}

.project_tab_button {
    display: flex;
    justify-content: end;
    gap: 40px;
}
.project_tab_button {
    display: none;
}
.project_tab_button button {
    background: transparent;
    border: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #141417;
    text-transform: uppercase;
}

.project_tab_button button.active {
    color: var(--theme_color);
}

.project-item__img {
    height: 300px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: .5s;
    position: relative;
    display: block;
}
.project-item__img a {
    display: block;
    height: 100%;
}
.project-item__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.process_icon {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    width: 108px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    position: relative;
    padding: 20px 20px 0px;
}

.col-lg-4:first-child .process_item::after {
    display: none;
}

.process_item::after {
    content: '';
    position: absolute;
    background: url(../images/dott_shape.png) no-repeat center;
    width: 185px;
    height: 60px;
    left: -104px;
    top: 30px;
}


/*========================== testimonials =======================*/
.testimonials {
    padding: 60px 0px;
}
.badge {
    width: 32px;
    height: 32px;
    background: #6A961F;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process_info h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
    color: var(--sub_title_color);
}
.process_item p {
    margin: 0px;
}


/* =========================process =========================*/

.testimonials::after,
.testimonials::before {
    content: '';
    background-size: cover;
    position: absolute;
    z-index: -1;
}

.testimonials::after {
    width: 45%;
    right: 0;
    top: 0;
    height: 100%;
    background: url(../images/testi-bg.jpg) no-repeat top right;
    background-size: cover;
}

.testimonials::before {
    width: 340px;
    height: 385px;
    background: url(../images/testi-shape-2.png) no-repeat top right;
    left: 0;
    bottom: -200px;
    background-size: contain;
}

.testimonial_slider.owl-carousel .owl-stage-outer {
    margin: 0px -30px;
    padding: 40px;
}

.testimonial_slide {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 50px;
    position: relative;
}
.testimonial_slide p {
    min-height: 115px;
}
.testimonial_slide::before {
    content: '';
    width: 50px;
    height: 120px;
    background: url(../images/testi-shape-1.png) no-repeat top right;
    right: 30px;
    bottom: 30px;
    position: absolute;
}

.testimonial_slider .owl-item.active .testimonial_slide {
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.user {
    display: flex;
    gap: 15px;
}

.user_info h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #141417;
}

.user_info p {
    margin: 0px;
}
.user_info span {
    color: var(--para_color);
}

.testimonials .owl-carousel .owl-item img {
    display: block;
    width: auto;
}

.costom_arrows {
    display: flex;
    gap: 15px;
}

.custom_arrow {
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 60px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme_color);
    cursor: pointer;
    font-size: 18px;
}


/*========================= footer=================== */

.footer {
    padding: 50px 0px;
    margin-top: 50px;
    background: var(--footer_bg);
    position: relative;
    isolation: isolate;
}

#homepage .footer {
    margin-top: 160px;
}

.footer::after {
    content: '';
    width: 293px;
    height: 57px;
    background: url(../images/footer-bg-shape.png) no-repeat center;
    left: 50%;
    top: -56px;
    position: absolute;
    transform: translateX(-50%);
}

.ftr_ttl {
    font-family: 'Prata';
    font-weight: 400;
    font-size: 28px;
    line-height: 35px;
    color: var(--white_colo);
    margin-bottom: 30px;
}

.footer_item p {
    color: var(--white_colo);
}

.footer .footer_item li,
.footer .footer_item li a {
    color: var(--white_colo);
}

.useful_link li a {
    margin-bottom: 10px;
    transition: .3s;
}

.useful_link li a:hover {
    color: #6A961F;
}

.abo_p {
    margin-bottom: 50px;
    max-width: 344px;
}

.ftr_social {
    display: flex;
    gap: 15px;
}

.ftr_social li a {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    color: var(--white_colo);
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
}

.ftr_social li a::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--white_colo);
    transition: .5s;
    transform: scale(0);
}

.ftr_social li a:hover {
    color: var(--theme_color);
}

.ftr_social li a:hover::after {
    transform: scale(1);
}

.ftr_contact li {
    margin-bottom: 20px;
}

.ftr_contact li b {
    margin-bottom: 10px;
    display: inline-block;
    line-height: 1;
}

.ftr_contact li a {
    margin-bottom: 10px;
    line-height: 1;
}

.foter_shape_left {
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: -1;
}

.foter_shape_right {
    position: absolute;
    right: 0;
    bottom: 0px;
    z-index: -1;
}

.mobile {
    display: none;
}
/* ======================copyright====================== */

.copyright {
    padding: 30px 0px;
    background-color: var(--sub_title_color);
}

.copyright p {
    margin: 0px;
}

.terms {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.terms li:first-child {
    border-right: #fff 1px solid;
    padding-right: 12px;
}

.copyright a,
.copyright p {
    color: var(--white_colo);
}


/*======================== About page css start======================== */

.inner_banner {
    padding: 0px;
}

.inner_ban_overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(18 17 17 / 50%);
    display: flex;
    align-items: center;
}

.inner_ban_overly h1 {
    color: #fff;
    text-align: center;
}

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin: 10px 0px 0px;
}

.breadcrumb-item a {
    color: var(--white_colo);
    font-size: 20px;
}

.breadcrumb-item {
    color: var(--white_colo);
    display: flex;
    align-items: center;
    line-height: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: .5rem;
    color: var(--white_colo);
    content: "/";
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    font-size: 20px;
}

.breadcrumb-item.active {
    color: var(--white_colo);
}

.card {
    border: none;
    border-radius: 0;
}

.card-body {
    flex: 1 1 auto;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.card {
    border: none;
    border-radius: 0;
    height: 100%;
}

.card_icon {
    height: 60px;
    display: flex;
    align-items: center;
}
.card_icon svg {
    width: 60px;
    height: 60px;
}
.card_icon svg path {
    fill: var(--theme_color);
}
.card-body img {
    width: 50px;
}

.card-body h4 {
    font-size: 22px;
    color: var(--sub_title_color);
    font-weight: 400;
}

.ul_info p {
    max-width: 472px;
}


/*======================== About page css end======================== */


/*======================== service page css start======================== */

.service_page_wraper .row {
    align-items: center;
}

.service_page_wraper .row:nth-child(even) {
    flex-direction: row-reverse;
}

.service_page_wraper .row:nth-child(even) .col-sm-6:first-child {
    padding-left: 0px;
}

.service_page_wraper .row:nth-child(odd) .col-sm-6:first-child {
    padding-right: 0px;
}
.service_page_img img {
    width: 100%;
}
.service_page_info {
    text-align: center;
    padding: 0px 90px;
    display: grid;
    place-items: center;
    gap: 20px;
}
.service_page_info h3 {
    font-size: 22px;
    font-weight: 400;
}
.service_page_info svg {
    width: 90px;
    height: 90px;
}
.service_page_info svg path {
    fill: var(--theme_color)
}


/* =============================gallery ===============================*/

.grid_gallery_wrapper {
    display: grid;
    grid-template-rows: repeat(5, 220px);
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
}

.grid_gal {
    overflow: hidden;
    position: relative;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.048)
}

.grid-img {
    width: 100%;
    height: 100%;
    transition: .5s;
}

.grid-img a {
    display: block;
    height: 100%;
    width: 100%;
}

.grid-img img {
    width: 100%;
    height: 100%;
    transition: .5s;
    object-fit: cover;
}

.grid_gal:nth-of-type(1) {
    grid-row: 1/3;
}

.grid_gal:nth-of-type(2) {
    grid-column: 2/4;
}

.grid_gal:nth-of-type(5) {
    grid-row: 2/4;
    grid-column: 3/4;
}

.grid_gal:nth-of-type(7) {
    grid-column: 1/3;
}

.grid_gal:nth-of-type(8) {
    grid-row: 3/5;
    grid-column: 4/5;
}

.grid_gal:nth-of-type(10) {
    grid-column: 2/4;
}

.grid_gal:nth-of-type(13) {
    grid-column: 3/5;
}

.overly {
    position: absolute;
    width: 100%;
    background-image: linear-gradient(to top, black, transparent);
    bottom: -53px;
    padding: 29px 15px 10px;
    transition: .5s;
}

.overly h2 {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.grid_gal:hover .grid-img {
    transform: scale(1.3);
    transition: .5s;
}

.grid_gal:hover .overly {
    bottom: 0px;
    transition: .5s;
}

/* =====================contact page======================== */

.contact_address {
    margin-left: 50px;
}
.contact_page  .form-floating>.form-control {
    padding: 1rem .75rem;
    border: none;
    box-shadow: 0px 3px 8px rgb(169 191 192 / 50%);
}
.contact_page  .form-floating>textarea.form-control  {
    height: 150px;
}
.contact_address .contact_title {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 30px;
    color: var(--theme_color);
}
.contact_address .from_title {
    font-size: 18px;
    color: var(--sub_title_color);
    margin-bottom: 10px;
}
.info_single {
    gap: 20px;
}
.info_single i {
    font-size: 30px;
    color: #6A961F;
}
.contact_map {
    padding-bottom: 100px;
}