@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap");

body {
    word-break: break-word;
    font: 15px / 25px Montserrat, sans-serif;
    color: rgb(57, 57, 57);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: rgb(40, 177, 109);
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: rgb(57, 57, 57);
}

a:hover {
    transition: 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: 0.5s;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0px;
}

select {
    background: url("../images/arrow.png") right center no-repeat rgb(255, 255, 255);
    padding: 0px 40px 0px 30px;
}

::-webkit-input-placeholder {
    color: rgb(0, 0, 0);
}

ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

img {
    max-width: 100%;
}

@font-face {
    font-family: blenderprobold;
    src: url("../fonts/BlenderPro-Bold.ttf");
}

.noPadding {
    padding: 0px;
}

.noLeft {
    padding-left: 0px;
}

.noRight {
    padding-right: 0px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0px !important;
}

.p-0 {
    padding: 0px !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 150px 0px;
}

.all-section-btm {
    padding-bottom: 150px;
}

.centerCol {
    float: none;
    margin: 0px auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    align-items: center;
}

h1 {
    font-family: blenderprobold;
    font-size: 60px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    margin: 0px 0px 20px;
    line-height: 1;
    text-transform: uppercase;
}

h2 {
    font-family: blenderprobold;
    font-size: 76px;
    color: rgb(34, 34, 34);
    font-weight: 500;
    margin: 0px 0px 10px;
    text-transform: uppercase;
    line-height: 1;
}

h3 {
    font-family: blenderprobold;
    font-size: 35px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin: 0px;
    text-transform: uppercase;
    line-height: 1;
}

h4 {
    font-family: blenderprobold;
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 0px;
    text-transform: uppercase;
    line-height: 1;
}

h5 {
    font-family: blenderprobold;
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 0px;
    text-transform: uppercase;
    line-height: 1;
}

h6 {
    font-family: blenderprobold;
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin: 0px;
    text-transform: uppercase;
    line-height: 1;
}

p {
    color: rgba(0, 0, 0, 0.56);
    font-size: 15px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0px;
}

.menuSec {
    padding: 0px;
}

.menuSec img {
    margin: 0px;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0px;
    padding: 0px;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 20px 10px;
    overflow: hidden;
    transition: color 0.3s ease;
}

.menuSec ul li a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgb(201, 94, 42);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease-in;
}

.menuSec ul li a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: rgb(0, 0, 0);
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
    padding: 13px 20px !important;
    color: rgb(255, 255, 255) !important;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0px;
}

.menuSec li>ul>li>a::before,
.menuSec li>ul>li>a::after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0px;
}

.menuSec ul::before,
.menuSec ul::after {
    content: " ";
    display: none;
}

.menuSec ul::after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: rgb(0, 0, 0);
    right: 7%;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0) !important;
}

.dropdown-menu {
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0px;
    margin: 0px;
    font-size: 1rem;
    color: rgb(33, 37, 41);
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    position: absolute !important;
    text-align: left !important;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    opacity: 1;
    width: 50px;
    height: 50px;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: rgb(255, 255, 255);
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    border-width: 10px 0px;
    border-right-style: initial;
    border-left-style: initial;
    border-right-color: initial;
    border-left-color: initial;
    border-image: initial;
    border-top-style: solid;
    border-top-color: transparent;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    opacity: 1;
    border-radius: 20px;
    margin: 3px !important;
}

.carousel-caption {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    margin: 0px;
    padding: 0px;
    color: rgb(255, 255, 255);
    text-align: left;
    display: flex;
    align-items: end;
    background: rgba(32, 51, 69, 0.9);
}

.carousel-indicators li {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 100%;
    background: rgb(255, 255, 255);
    width: 12px;
    height: 12px;
    margin: 0px;
}

.carousel-indicators .active {
    margin: 0px;
    background-color: rgb(40, 177, 109);
    width: 10px;
    height: 12px;
}

/* theme setting */

.container-fluid {
    padding: 0px 8%;
}

.theme_btn {
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    background: rgb(38, 61, 79);
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: background-color 0.3s;
    border: 1px solid rgb(255, 255, 255);
    height: 53px;
}

.theme_btn:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(195, 90, 48);
    border: 1px solid rgb(195, 90, 48);
}

.theme_btn .txt {
    padding: 0px 20px;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    text-align: center;
}

.theme_btn .arrow_btn {
    background-color: rgb(255, 251, 255);
    border: 1px solid rgb(225, 225, 225);
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme_btn:hover .arrow_btn {
    background-color: rgb(195, 90, 48);
    border: 1px solid rgb(195, 90, 48);
}

.theme_btn .arrow_btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transform: rotate(0deg);
    transition: transform 0.5s, filter 0.4s;
    filter: brightness(0) saturate(100%) invert(22%) sepia(36%) saturate(500%) hue-rotate(165deg) brightness(91%) contrast(94%);
}

.theme_btn:hover .arrow_btn img {
    transform: rotate(360deg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(43%) saturate(5%) hue-rotate(303deg) brightness(103%) contrast(100%);
}

.d_block {
    display: block;
}

html,
body {
    overflow-x: hidden !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgb(255, 102, 0) !important;
}

/* theme setting */

/* header */

.headerbtn {
    text-align: end;
}

.menuSection {
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 30px 0px;
}

.header-logo {
    width: 60%;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* header */

/* banner */

.main_slider {
    position: relative;
}

.bnrbtn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.headset {
    display: flex;
    gap: 20px;
}

.headset i {
    color: rgb(255, 255, 255);
    font-size: 50px;
}

.headset h6 {
    font-family: Montserrat, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.headset h5 a {
    font-family: Montserrat, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 24px;
    transition: 0.3s ease-in;
}

.headset h5 a:hover {
    color: rgb(195, 90, 48);
}

.banner_text p {
    color: rgba(255, 255, 255, 0.82);
    width: 80%;
}

.banner_img {
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    z-index: 1;
}

.banner_img img {
    height: 710px;
    width: 100%;
    object-fit: cover;
    object-position: 0px 45%;
}

img.img-fluid {
    height: 845px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.banner_img::before {
    position: absolute;
    content: "";
    height: 380px;
    width: 120%;
    bottom: -60px;
    right: 50%;
    background: rgb(38, 61, 79);
    z-index: -1;
    transform: translateX(50%);
}

.banner_text {
    margin-top: -100px;
}

.carousel-inner {
    overflow: visible;
}

/* banner */

/* about */

.abt_txt p {
    margin-bottom: 20px;
    width: 96%;
}

.about {
    padding: 200px 0px 130px;
}

.abt_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    width: 49%;
}

img.abt-1 {
    height: 620px;
    width: 350px;
    object-fit: cover;
}

img.abt-2 {
    height: 485px;
    width: 260px;
    object-fit: cover;
}

.abt_img::before {
    position: absolute;
    content: "";
    height: 530px;
    width: 155%;
    background: rgb(201, 94, 42);
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
}

/* about */

/* services */

.service_heading {
    text-align: center;
    margin-bottom: 40px;
}

.service_heading h2 {
    color: rgb(255, 255, 255);
}

.service_heading p {
    color: rgb(255, 255, 255);
    width: 49%;
    margin: 0px auto;
}

.ser_main_txt h3 {
    color: rgb(255, 255, 255);
    font-size: 23px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.ser_main_txt h3::before {
    position: absolute;
    content: "";
    height: 5px;
    width: 80px;
    border-radius: 10px;
    left: 0px;
    bottom: 0px;
    background: rgb(255, 255, 255);
    transition: 1s ease-in-out;
}

.ser_main_txt p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 14px;
}

.ser_main_txt {
    background-color: transparent;
    padding: 30px 17px;
    border-width: 0px 1px 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: rgba(255, 255, 255, 0.45);
    border-bottom-color: rgba(255, 255, 255, 0.45);
    border-left-color: rgba(255, 255, 255, 0.45);
    border-image: initial;
    border-top-style: initial;
    border-top-color: initial;
    transition: 0.3s ease-in;
}

.ser_main_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ser_main {
    border-radius: 10px;
    margin-bottom: 30px;
    transition: 0.3s ease-in;
}

.service .container-fluid {
    position: relative;
    z-index: 99;
}

.service {
    padding: 95px 0px 120px;
    background: url("../images/service-bg.jpg") 0% 0% / cover no-repeat;
    position: relative;
}

.service::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    inset: 0px;
    background: rgba(32, 51, 69, 0.9);
}

.service_slider .slick-slide {
    opacity: 1;
}

.ser_main:hover .ser_main_txt h3::before {
    width: 100%;
}

.ser_main:hover .ser_main_txt {
    background: rgb(41, 61, 78);
}

/* services */

/* why choose us */

.wcu_txt h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: rgb(66, 66, 66);
}

.wcu_txt p {
    font-size: 14px;
}

.wcu_icon {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(41, 61, 78);
    border-radius: 50%;
    background: rgb(255, 255, 255);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in;
}

.wcu_icon img {
    transition: 0.3s ease-in;
    filter: brightness(0) saturate(100%) invert(22%) sepia(36%) saturate(500%) hue-rotate(165deg) brightness(91%) contrast(94%);
}

.wcu_icon::before {
    position: absolute;
    content: "";
    background: rgb(195, 90, 48);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    transform: scale(0, 0);
    border-radius: 50%;
    z-index: -1;
    transition: 500ms;
}

.wcu_main:hover .wcu_icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.wcu_main:hover .wcu_icon::before {
    transform: scale(1, 1);
}

.wcu_main {
    padding: 90px 50px;
    border-left: 1px solid rgb(209, 209, 209);
    transition: 0.3s ease-in;
}

section.wcu {
    border-bottom: 1px solid rgb(209, 209, 209);
}

.wcu .col-lg-4:last-child .wcu_main {
    border-right: 1px solid rgb(209, 209, 209);
}

/* why choose us */

/* testimonial */

/* .testimonial {
    padding: 180px 0px 0px;
} */

.testi_left img {
    height: 670px;
    width: 100%;
    object-fit: cover;
}

.testi_heading h2 {
    font-size: 54px;
    margin-bottom: 0px;
}

.r_flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r_flx_rating i {
    color: rgb(253, 143, 0);
    font-size: 20px;
    transition: color 0.4s;
}

.reviews_card {
    background-color: rgb(255, 255, 255);
    padding: 30px 80px 30px 30px;
    position: relative;
    transition: background 0.4s;
    border: 1px solid rgb(222, 222, 222);
    height: 350px;
}

.reviews_card p {
    margin-top: 30px;
    margin-bottom: 30px;
    transition: color 0.4s;
    font-size: 14px;
}

.reviews_card h5 {
    text-transform: uppercase;
    font-size: 22px;
    transition: color 0.4s;
    font-family: blenderprobold;
}

.reviews_card span {
    font-family: Montserrat;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.4s;
    color: rgba(0, 0, 0, 0.56);
}

.r_flx_img {
    position: relative;
    z-index: 1;
}

.r_flx_img::before {
    position: absolute;
    content: "";
    background: rgb(41, 61, 78);
    border-radius: 50%;
    height: 108%;
    width: 108%;
    top: 0%;
    right: -9%;
    z-index: -1;
    transition: background 0.4s;
}

.transparent_bg_img {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
}

.transparent_bg_img img {
    transition: filter 0.4s;
}

.reviews_card:hover {
    background: rgb(195, 90, 48);
}

.reviews_card:hover p,
.reviews_card:hover h5,
.reviews_card:hover span,
.reviews_card:hover .r_flx_rating i {
    color: rgb(255, 255, 255) !important;
}

.reviews_card:hover .r_flx_img::before {
    background: linear-gradient(77deg, rgb(255, 255, 255) 9%, rgb(255, 255, 255) 23%, rgb(255, 255, 255) 39%, rgb(255, 255, 255) 56%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 87%);
}

.reviews_card:hover .transparent_bg_img img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(103deg) brightness(108%) contrast(97%);
}

.reviews_card::before {
    content: "";
    background: rgb(41, 61, 78);
    height: 55px;
    width: 3px;
    position: absolute;
    bottom: 30px;
    left: 0px;
    z-index: 1;
}

.reviews {
    padding: 300px 0px 100px;
    background: url("../images/testi-bg.jpg") 0% 0% / cover no-repeat;
    position: relative;
    margin-top: -210px;
}

.reviews .container-fluid {
    position: relative;
    z-index: 99;
}

.testi_btns .testi_btn_prev {
    width: 60px;
    height: 60px;
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) padding-box padding-box, linear-gradient(to left, rgb(255, 255, 255), rgb(195, 90, 48)) border-box border-box;
    border-radius: 50px;
    border: 1px solid transparent;
}

.testi_btn i {
    color: rgb(195, 90, 48);
    font-size: 20px;
}

.testi_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testi_btns .testi_btn_next {
    width: 60px;
    height: 60px;
    background: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)) padding-box padding-box, linear-gradient(to left, rgb(195, 90, 48), rgb(255, 255, 255)) border-box border-box;
    border-radius: 50px;
    border: 1px solid transparent;
}

.testi_btns {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

/* testimonial */

/* contact */

.cont_box:hover::before {
    width: 100%;
}

.cont_box:hover .cont_box_img img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(2%) hue-rotate(172deg) brightness(115%) contrast(100%);
}

.cont_box:hover * {
    color: #fff;
}

.contact {
    padding: 80px 0px 90px;
    background: url("../images/contact-bg.png") 0% 0% / cover no-repeat;
    margin-top: -8%;
}

.contact_right h2 {
    color: rgb(255, 255, 255);
    font-size: 95px;
    margin-bottom: 20px;
}

.contact_right form input,
.contact_right form textarea {
    border-width: medium medium 1px;
    border-style: none none solid;
    border-color: currentcolor currentcolor rgb(97, 97, 97);
    border-image: initial;
    padding: 15px 0px;
    margin-bottom: 20px;
    width: 100%;
    color: rgb(255, 255, 255);
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 14px;
    background: transparent;
}

.contact_right form input::placeholder,
.contact_right form textarea::placeholder {
    color: rgb(164, 164, 164);
}

.contact_right form textarea {
    height: 170px;
    resize: none;
}

button.theme_btn {
    padding: 0px;
}

.contact_left h3 {
    color: rgb(255, 255, 255);
    font-size: 38px;
    margin-bottom: 70px;
    margin-top: 150px;
}

.cont_box_txt h6 {
    color: rgb(93, 93, 93);
    text-transform: capitalize;
    font-size: 22px;
    margin-bottom: 5px;
}

.cont_box_txt a {
    color: rgb(107, 107, 107);
    font-size: 16px;
}

.cont_box {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    background: rgb(243, 243, 243);
    padding: 30px 30px 30px 50px;
    margin-top: 30px;
    width: 80%;
    position: relative;
    z-index: 1;
}

.cont_box::before {
    content: "";
    background: rgb(195, 90, 48);
    height: 100%;
    width: 5px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: all 0.8s ease-in;
    z-index: -1;
}

.cont_box_img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont_box_img img {
    object-fit: contain;
    width: auto;
    height: auto;
    filter: brightness(0) saturate(100%) invert(41%) sepia(69%) saturate(682%) hue-rotate(335deg) brightness(89%) contrast(86%);
}

.contact_right {
    padding-left: 50px;
}

/* contact */

/* gallery */

.gallery_txt h3 {
    font-size: 70px;
    color: rgb(34, 34, 34);
    margin-bottom: 20px;
}

.gallery_txt p {
    font-size: 14px;
}

.gallery_txt {
    border: 5px solid rgb(235, 235, 235);
    padding: 40px;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.project_main>a {
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    width: 100%;
}

.project_main a img {
    height: 440px;
    width: 100%;
    object-fit: cover;
}

.project_main>a::after {
    position: absolute;
    content: "+";
    background: rgba(32, 51, 69, 0.72);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    font-size: 40px;
    transition: 0.4s ease-in-out;
    transform: scale(0);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project_main>a:hover::after {
    transition: 0.4s ease-in-out;
    transform: scale(1);
}

.gallery {
    padding: 150px 0px 200px;
}

/* gallery */

/* footer */

.footerSec h5 {
    font-size: 26px;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
    padding: 10px 50px 10px 10px;
    border-left: 3px solid rgb(195, 90, 48);
}

.footerSec {
    position: relative;
    background: rgb(28, 28, 28);
    padding: 190px 0px 0px;
}

.footerSec::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 100px;
    background: rgba(255, 255, 255, 0.13);
    height: 100%;
    width: 1px;
    z-index: 1;
}

.ftr_contant p {
    color: rgb(164, 164, 164);
    font-weight: 500;
    font-size: 14px;
}

.ftr_links ul li a {
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
    transition: 0.3s ease-in;
}

.ftr_links ul li a:hover {
    color: rgb(255, 255, 255);
    transform: translateX(10px);
}

.news_letter ul li a {
    color: rgb(255, 255, 255);
    font-size: 26px;
    font-family: blenderprobold;
}

.news_letter p {
    color: rgb(164, 164, 164);
    font-weight: 500;
    font-size: 14px;
    margin: 10px 0px 30px;
    width: 80%;
}

.quotebtn {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 1px solid rgb(255, 255, 255);
    transition: 0.3s ease-in;
}

.quotebtn:hover {
    color: rgb(255, 255, 255);
    background: rgb(195, 90, 48);
    border: 1px solid rgb(255, 255, 255);
}

.work_timings ul li {
    color: rgb(146, 146, 146);
    font-weight: 400;
    font-size: 13px;
    font-family: Montserrat, sans-serif;
}

.work_timings ul div {
    border-bottom: 1px solid rgb(51, 51, 51);
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.work_timings ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

li.colorfont {
    color: rgb(255, 255, 255) !important;
    font-size: 16px !important;
}

.footer-btm {
    position: relative;
    padding: 25px 0px;
    background: rgb(40, 40, 40);
    margin-top: 80px;
}

.ftr_social a {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    font-size: 15px;
    border-radius: 50%;
    transition: 0.3s ease-in;
}

.ftr_social a:hover {
    border: 1px solid rgb(195, 90, 48);
    background: rgb(195, 90, 48);
}

.ftr_social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.copy_right {
    text-align: end;
    padding-right: 80px;
}

.copy_right p {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.scroll_up {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    height: 100%;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    background: rgb(195, 90, 48);
    font-size: 20px;
    transition: 0.3s ease-in;
}

.scroll_up:hover {
    color: rgb(195, 90, 48);
    background: rgb(255, 255, 255);
    border: 1px solid rgb(195, 90, 48);
}

.ftr_top_left_txt h6 {
    font-size: 26px;
    margin-bottom: 5px;
}

.ftr_top_left_txt p {
    width: 80%;
    font-size: 14px;
}

.ftr_top_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.ftr_top {
    padding: 45px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 25px;
    width: 80%;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.ftr_top_right form {
    position: relative;
}

.ftr_top_right {
    text-align: end;
}

.ftr_top_right input {
    width: 100%;
    background: rgb(238, 238, 238);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 15px 210px 15px 40px;
    border-radius: 5px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    color: rgb(0, 0, 0);
}

.ftr_top_right button {
    background: rgb(41, 61, 78);
    border: 1px solid;
    border-radius: 5px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    color: rgb(255, 255, 255);
    padding: 15px 40px;
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 16px;
    transition: 0.3s ease-in;
}

.ftr_top_right button:hover {
    background: rgb(255, 255, 255);
    color: rgb(195, 90, 48);
    border: 1px solid rgb(195, 90, 48);
}

.ftr_links {
    padding-left: 50px;
}

.ftr_top_left_img img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(36%) saturate(500%) hue-rotate(165deg) brightness(91%) contrast(94%);
}

/* footer */

/* inner banner */

.inner_banner {
    position: relative;
}

.inner_banner .carousel-caption {
    align-items: center;
}

img.inner_bg {
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.inner_banner .banner_text {
    margin-top: 80px;
}

/* inner banner */

/* service page */

.servicepage .ser_main_txt h3 {
    color: rgb(0, 0, 0);
}

.servicepage .ser_main_txt h3::before {
    background: rgb(0, 0, 0);
}

.servicepage .ser_main_txt p {
    color: rgba(0, 0, 0, 0.56);
}

.servicepage .ser_main:hover .ser_main_txt h3 {
    color: rgb(255, 255, 255);
}

.servicepage .ser_main:hover .ser_main_txt h3::before {
    background: rgb(255, 255, 255);
}

.servicepage .ser_main:hover .ser_main_txt p {
    color: rgb(255 255 255 / 65%);
}

.sd_txt h2 {
    font-size: 65px;
}

.sd_txt p {
    margin-bottom: 20px;
}

.sd_img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

/* service page */

/* contact page */

.get-in-touch-text p {
    margin-bottom: 30px;
    width: 90%;
    color: rgba(255, 255, 255, 0.71);
}

.contact-form textarea {
    width: 100%;
    border-radius: 10px;
    height: 170px;
    padding: 16px 20px;
    resize: none;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
    background: none;
    border: 1px solid rgb(204, 204, 204);
}

.contact-form input {
    width: 100%;
    height: 55px;
    border-radius: 50px;
    padding: 0px 20px;
    margin-bottom: 20px;
    border: 1px solid rgb(204, 204, 204);
    color: rgb(0, 0, 0);
    background: none;
}

.contact-social-link {
    margin-top: 50px;
}

.get-in-touch-text ul li {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out;
}

.get-in-touch-text ul li:hover {
    transform: translateX(10px);
}

.get-in-touch-text ul li a span {
    display: block;
    margin-top: 8px;
}

.get-in-touch-text ul li i {
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.get-in-touch-text ul li a {
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-family: Montserrat;
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
    color: rgb(133, 133, 133);
}

.contact-form h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.get-in-touch-text h2 {
    color: rgb(255, 255, 255);
    font-size: 42px;
    margin-bottom: 10px;
}

.get-in-touch-text {
    border-radius: 10px;
    padding: 100px 40px;
    margin: 0px 40px;
    background: rgb(195, 90, 48);
}

.contact-form {
    margin-right: 20px;
}

/* contact page */

/* get quote */

.quotepage {
    padding: 170px 0px;
}

.quotepage h2 {
    font-size: 53px;
    text-align: center;
    margin-bottom: 40px;
}

.quotepage form input,
.quotepage form textarea,
.quotepage form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgb(204, 204, 204);
    font-size: 14px;
    background-color: transparent;
    transition: 0.3s;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    color: rgb(0, 0, 0);
    border-radius: 5px;
}

.quotepage form input::placeholder,
.quotepage form textarea::placeholder,
.quotepage form select {
    color: rgb(171, 171, 171) !important;
    text-transform: capitalize;
}

.quotepage form textarea {
    resize: none;
    height: 200px;
}

.quotepage form button {
    width: 100%;
    justify-content: center;
}

.quotepage form {
    border-radius: 10px;
    padding: 50px;
    box-shadow: rgba(128, 128, 128, 0.29) 0px 0px 20px;
}

.quotepage form h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.quotepage form select {
    background: url("../images/down-chevron.png") 97% 50% no-repeat rgb(255, 255, 255);
}

.upload_pic {
    font-family: Montserrat, sans-serif;
}

.upload_pic>label {
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.upload-box {
    border: 1px solid rgb(220, 220, 220);
    border-radius: 5px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    margin-bottom: 30px;
}

.upload-content {
    text-align: center;
    color: rgb(85, 85, 85);
}

.upload-content i {
    font-size: 38px;
    color: rgb(43, 61, 77);
    margin-bottom: 10px;
}

.upload-content h4 {
    margin: 5px 0px;
    font-size: 16px;
    color: rgb(51, 51, 51);
}

.upload-content p {
    font-size: 13px;
    color: rgb(136, 136, 136);
}

/* get quote */

/* commercial section */

.commercial_sec_heading {
    text-align: center;
    margin-bottom: 30px;
}

.commercial_main a {
    width: 100%;
    height: 400px;
    transition: 0.3s ease-in;
    margin-bottom: 30px;
}

.commercial_main a:hover {
    transform: translateY(15px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 25px;
}

.commercial_main a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.commercial_main>a::after {
    position: absolute;
    content: "+";
    background: rgba(32, 51, 69, 0.72);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    font-size: 40px;
    transition: 0.4s ease-in-out;
    transform: scale(0);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.commercial_main>a:hover::after {
    transition: 0.4s ease-in-out;
    transform: scale(1);
}

.commercial_sec {
    padding-bottom: 100px;
}

/* commercial section */

/* gallery slider */

.gallery_heading {
    text-align: center;
    margin-bottom: 30px;
}

.gallery_heading p {
    width: 80%;
    margin: 0 auto;
}

.project_slider .slick-slide {
    opacity: 1;
}

.project_slider .slick-dots {
    position: absolute;
    bottom: -75px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    background-color: #fff;
    width: fit-content;
    margin: 0 auto;
    display: block;
    left: 0;
    right: 0;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    flex-wrap: wrap;
}

.project_slider .slick-dots li {
    position: relative;
    width: 13px;
    height: 10px;
    margin: 0px !important;
    cursor: pointer;
    border-radius: 45px;
    background: #c35c30;
}

.project_slider .slick-dots li.slick-active {
    width: 56px;
    background-color: #2a3f50;
}

.project_slider .slick-dots li button {
    display: none;
}

.project_slider .slick-active {
    opacity: 1;
}

/* gallery slider */

/* Why Choose MD Construction  */

.wcu_md_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu_md_img {
    height: 500px;
}

.wcu_md_txt ul li {
    color: rgba(0, 0, 0, 0.56);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 20px;
    position: relative;
}

.wcu_md_txt ul li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    background: #c35c30;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}

/* Why Choose MD Construction  */

.abt_txt h3 {
    margin-bottom: 20px;
}

.approach_box ul li {
    color: rgba(0, 0, 0, 0.56);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.approach_box ul li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    background: #c35c30;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}

.approach_box p {
    margin-bottom: 20px;
}

/* about why choose us sec  */

section.about.about_page {
    padding: 100px 0 0;
}

.approach_box {
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 25px;
    height: 400px;
    margin-bottom: 50px;
}

.approch_main {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 25px;
    padding: 30px;
    margin-bottom: 20px;
}

.approch_main h4 {
    margin-bottom: 10px;
}

.approch_main p {
    margin-bottom: 20px;
}

.approch_main ul {
    column-count: 2;
}

.approch_main ul li {
    color: rgba(0, 0, 0, 0.56);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.approch_main ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    background: #c35c30;
    height: 7px;
    width: 7px;
    border-radius: 50%;
}

.cta {
    background: url(../images/abt-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 150px 0px;
    text-align: center;
    position: relative;
    margin: 80px 0 150px;
}

.cta::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    inset: 0px;
    background: rgba(32, 51, 69, 0.815);
}

.cta_main {
    position: relative;
    z-index: 3;
}

.cta_main h3 {
    color: #fff;
    margin-bottom: 20px;
}

.cta_main h4 {
    color: #fff;
    margin-bottom: 30px;
}

.abt_txt ul li {
    color: rgba(0, 0, 0, 0.56);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.abt_txt ul li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    background: #c35c30;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}

.abt_txt ul {
    margin-bottom: 20px;
}

.sd {
    padding-top: 100px;
}

.cta_main h2 {
    color: #fff;
    margin-bottom: 20px;
}

/* about why choose us sec  */

.cta_main p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}