@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

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: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.theme-btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 15px 40px;
    color: #fff;
    margin: 20px 20px 20px 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    text-transform: capitalize;
    border: 2px solid;
    text-transform: uppercase;
}

.theme-btn:hover {
    background-color: #fff;
    color: #28b16d;
    border-color: #28b16d;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 70px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

.banner_text h1 {
    text-transform: capitalize;
}

h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 70px;
    line-height: 1;
    color: #000000;
    font-weight: 600;
    margin: 0 0 20px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    background: #8c1528;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-weight: 600;
    padding: 10px 23px;
    font-size: 19px;
}

.menuSec ul li a::after {
    position: absolute;
    content: "";
    margin: auto;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    transition: 0.3s ease-in-out;
}

.menuSec ul li a:hover::after {
    width: 100%;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #ffffff;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.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: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-item.active img {
    width: 100%;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/


/* css-by-zee */

.bg-darkbrown {
    background-color: #8c1528;
}

.text-darkbrown {
    color: #8c1528 !important;
}

.btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 55px;
    color: white;
    clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 10% 100%, 0 85%);
    border-radius: 11px;
    font-family: 'Rajdhani';
    font-weight: 600;
    font-size: 19px;
    transition: 0.3s all ease-in-out !important;
}

.btn-theme:hover {
    clip-path: none;
    box-shadow: 0px 0px 12px #d3d3d3b0 inset;
    color: white;
}

.btn-theme-1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 50px;
    color: white;
    clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 10% 100%, 0 85%);
    border-radius: 11px;
    font-family: 'Rajdhani';
    font-weight: 600;
    font-size: 19px;
    transition: 0.3s all ease-in-out !important;
}

.btn-theme-1:before {
    position: absolute;
    content: "";
    background-image: url("../images/btn-theme.png");
    width: 170px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-theme-1:hover {
    background-color: #8c1528;
    color: white;
}

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

.btn-theme2 {
    font-size: 17px;
    font-family: 'Rajdhani';
    font-weight: 600;
    color: #8c1528;
    position: relative;
}

.btn-theme2:before {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 5 Pro";
    font-size: 0px;
    color: #8c1528;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s ease-in-out;
}

.btn-theme2:after {
    position: absolute;
    content: "";
    background: #8c1528;
    width: 100%;
    height: 2px;
    bottom: -2px;
    right: 0;
    transition: 0.3s ease-in-out;
}

.btn-theme2:hover {
    color: #8c1528;
}

.btn-theme2:hover:after {
    width: 0;
}

.btn-theme2:hover:before {
    font-size: 20px;
}


/* css-by-zee */


/* banner */

.carousel-item>img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner_img {
    position: relative;
    height: 550px;
    width: 100%;
}

.banner_img img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(58deg);
    animation: rotation 9s linear infinite;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes rotation {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.banner_text p {
    font-size: 14px;
    color: #8e8e8d;
    font-family: 'Roboto';
}

header {
    position: absolute;
    z-index: 999;
    width: 100%;
}

.menuSec .col-md-7.d-none.d-md-block {
    position: relative;
}

.menuSec .col-md-7.d-none.d-md-block:after {
    position: absolute;
    content: "";
    background-image: url("../images/menu-bottom-border.png");
    bottom: -30px;
    height: 100%;
    width: 100%;
    left: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.bars {
    top: 50%;
    transform: translateY(-50%);
    left: 2%;
    width: 20px;
    height: 65%;
    position: absolute;
    z-index: 1;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: visible 5s linear;
}

@keyframes visible {
    0% {
        height: 0;
    }
    30% {
        height: 50%;
    }
    50% {
        height: 100%;
    }
    100% {
        height: 65%;
    }
}

.bars span {
    background: #8c1528;
    width: 100%;
    height: 120px;
    display: block;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
}

.banner-bottom-shape {
    position: absolute;
    bottom: 0px;
    right: 10%;
    width: 40%;
    height: 60px;
    z-index: 1;
}

.banner-bottom-shape:after {
    position: absolute;
    content: "";
    background: white;
    width: 100%;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
    height: 100%;
    bottom: -1px;
}

.banner-bottom-shape:before {
    position: absolute;
    content: "";
    background: #8c1528;
    width: 120%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
    height: 100%;
}

.banner_text .btn-theme {
    margin-top: 30px;
}


/* banner */


/* abt-sec */

section.abt-sec {
    position: relative;
}

section.abt-sec:before {
    position: absolute;
    content: "";
    transform: skewX(12deg);
    width: 41%;
    height: 63%;
    top: 0;
    left: 0;
    border-right: 3px solid #8c1528;
    background: linear-gradient(205deg, rgba(230, 230, 230, 1) 24%, rgba(255, 255, 255, 0) 77%);
}

section.abt-sec:after {
    position: absolute;
    content: "";
    background-image: url("../images/abt-sec-bottom.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 291px;
    bottom: -108px;
    right: -12%;
    z-index: -1;
}

.abt-img-box {
    width: 85%;
    height: 550px;
    position: relative;
}

.abt-img-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
}

.abt-img-box>span {
    display: block;
    width: 60px;
    box-sizing: border-box;
    border: 15px solid white;
    height: 250px;
    background: linear-gradient(180deg, rgba(232, 232, 232, 1) 16%, rgba(255, 255, 255, 0) 99%);
    position: absolute;
    right: -55px;
    bottom: 0;
    transform: skewY(-55deg)rotateZ(-10deg);
}

ul.abt-list {
    width: 80%;
}

.abt-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.abt-list li span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #dcb8be;
    color: #8c1528;
    font-size: 16px;
}

.abt-list li div>h5 {
    margin-bottom: 0px;
    font-size: 22px;
    font-family: 'Roboto';
    font-weight: 500;
    color: black;
}

.abt-list li div {
    width: calc(100% - 30px);
}


/* abt-sec */


/* service-sec */

.service-sec {
    height: 1020px;
    margin: 100px 0;
}

.service-sec:before {
    position: absolute;
    content: "";
    background-color: #eaeaea;
    top: -10px;
    left: 0;
    width: 100%;
    height: 95%;
    clip-path: polygon(34% 10%, 66% 10%, 69% 0, 100% 0, 100% 100%, 0 100%, 0 0, 31% 0);
    z-index: -1;
    border-bottom: 3px solid #8c1528;
}

img.service-sec-back {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    clip-path: polygon(0 0, 30% 0, 33% 10%, 67% 10%, 70% 0, 100% 0, 100% 90%, 80% 90%, 75% 100%, 20% 100%, 15% 90%, 0% 90%);
    filter: brightness(0.1);
}

.service-sec h2 {
    margin-bottom: 100px;
}

.service-box-img {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
    padding: 20px;
}

.service-box-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
    position: relative;
    z-index: 2;
}

.service-box-img:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
    background: #232324;
    width: 100%;
    height: 100%;
}

.service-box-img:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
    background: #8c1528;
    width: 0;
    height: 0;
    transition: 0.4s all ease;
    z-index: 0;
}

.service-box:hover .service-box-img:after {
    height: 100%;
    width: 100%;
}

.service-box-content h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Rajdhani';
    font-weight: 600;
    color: white;
}

.service-box-content p {
    color: #b8b9b9;
}


/* service-sec */


/* choose-sec */

.choose-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.choose-cards>div {
    padding: 20px;
    border-radius: 10px;
}

.choose-cards h3 {
    font-size: 20px;
    font-family: 'Rajdhani';
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
    text-transform: capitalize;
}

.choose-cards p {
    font-size: 13px;
    line-height: 1.5;
    font-family: 'Roboto';
    color: #7d7c7c;
}

.choose-card-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    margin-bottom: 30px;
}

.choose-card-img:before {
    position: absolute;
    content: "";
    height: 104%;
    width: 104%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    background: linear-gradient(0deg, rgba(146, 34, 52, 1) 16%, rgba(255, 255, 255, 0) 100%);
    animation: rotating 3s infinite;
}

.choose-cards div:nth-child(2) .choose-card-img:before {
    animation-delay: 1.5s;
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
        top: -2%;
        left: -2%;
    }
    to {
        transform: rotate(360deg);
        top: -2%;
        left: -2%;
    }
}

.choose-cards>div:hover {
    background: linear-gradient(0deg, rgba(236, 236, 236, 1) 16%, rgba(255, 255, 255, 0) 100%);
}

.chose-img-box {
    width: 100%;
    height: 80%;
    user-select: none;
}

.chose-img-box img {
    width: 100%;
    height: 100%;
    margin: auto;
    display: block;
    object-fit: cover;
}

.chose-img-box:after {
    position: absolute;
    content: "";
    background-image: url(../images/mask.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.chose-img-box:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 80%;
    border: 4px solid #8c1528;
    transform: skewX(-10deg);
    top: -20px;
    right: -40px;
    z-index: -1;
}


/* choose-sec */


/* completed-work */

.completed-work .row:nth-child(2) {
    margin-top: -100px;
}

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

.completed-work:before {
    position: absolute;
    content: "";
    top: 50px;
    transform: translateY(-30%);
    right: 0;
    z-index: -1;
    height: 140px;
    width: 55%;
    background-color: #8c1528;
}

.completed-work h2 {
    font-size: 60px;
    color: white;
    margin-bottom: 0;
}

.first-col .col-12 {
    text-align: end;
}

.first-col .col-12>.com-big-box {
    margin-left: auto;
}

.com-big-box {
    width: 80%;
    height: 380px;
    overflow: hidden;
}

.com-big-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.com-small-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.com-small-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.com-medium-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.com-medium-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-col .col-lg-7.col-md-7.col-sm-12.col-12 .com-small-box {
    width: 40%;
    height: 150px;
    margin-bottom: 20px;
}

.sec-col .col-lg-7.col-md-7.col-sm-12.col-12 .com-big-box {
    width: 100%;
    height: 300px;
}

.completed-work .row:nth-child(2) .first-col .col-12 {
    margin-bottom: 20px;
}

.sec-col {
    align-self: center;
    margin-top: 100px;
}

.border-gradient {
    position: relative;
    border: 1px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(0deg, #8c1528 27%, rgba(250, 240, 234, 0) 80%);
}

.border-gradient:after {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, #8c15287d 27%, rgba(250, 240, 234, 0) 80%);
    content: "";
    z-index: 1;
    left: 0;
    transition: 1s all ease-in-out;
}

.border-gradient:hover:after {
    height: 100%;
}


/* completed-work */


/* testi-sec */

.slide-quantity {
    position: absolute;
    top: 35%;
    left: 62%;
    transform: rotate(270deg);
    z-index: 1;
}

.slide-quantity span:nth-child(1) {
    font-size: 60px;
    color: #f25c00;
    margin-right: 10px;
    font-family: 'Rajdhani';
}

.slide-quantity span:nth-child(2) {
    font-size: 40px;
    color: #bbbbba;
    font-family: 'Rajdhani';
}

section.test-sec {
    margin-bottom: 50px;
}

.testi-small-img {
    margin-top: 50px;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.testi-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-box {
    width: 100%;
    height: 500px;
    position: relative;
}

.testi-big-img {
    width: 75%;
    height: 80%;
    overflow: hidden;
}

.testi-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testi-content {
    position: absolute;
    z-index: 3;
    bottom: 10px;
    right: 0;
    padding: 40px;
    background: #262626;
    width: 60%;
}

.testi-content h5 {
    font-size: 30px;
    font-family: 'Rajdhani';
    margin-bottom: 0;
}

.testi-content ul li {
    color: #f1f1f1;
}

.testi-content ul li i {
    color: #fd8f00;
}

.testi-content ul {
    display: flex;
    justify-content: space-between;
}

.testi-content p {
    margin-bottom: 0;
    color: #b7b7b7;
    font-family: 'Roboto';
    font-weight: 400;
}

.testi-slider .slick-next:before {
    content: "\f105";
}

.testi-slider .slick-prev:before {
    content: "\f104";
}

.testi-slider .slick-prev,
.testi-slider .slick-next {
    bottom: 15%;
    transform: none;
    top: auto;
}

.testi-slider .slick-prev {
    left: 23%;
    z-index: 1;
}

.testi-slider .slick-next {
    right: auto;
    left: 32%;
}

.testi-slider .slick-prev:before,
.testi-slider .slick-next:before {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 5 Pro";
    background-color: #8c1528;
    color: white;
    opacity: 1;
    font-size: 40px;
    font-weight: 100;
}


/* testi-sec */


/* news-letter */

.news-letter {
    background: white;
    box-shadow: 0px -9px 21px #d3d3d357;
    padding: 35px 0;
    width: 75%;
    margin: auto;
    margin-bottom: -70px;
    position: relative;
    z-index: 1;
    padding-left: 100px;
}

.news-letter h2 {
    margin-bottom: 10px;
    font-size: 33px;
    font-family: 'Rajdhani';
    font-weight: 600;
    color: black !important;
}

.news-letter p {
    color: #707070;
    font-family: "Roboto";
}

.newsletter-email input[type="email"] {
    width: 100%;
    border: none;
    height: 60px;
    text-indent: 20px;
    border-radius: 40px;
    font-size: 20px;
    font-family: 'Roboto';
    background: #eeeeee;
}

.newsletter-email button {
    position: absolute;
    display: inline-flex;
    width: 25%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: none;
    background: #8c1528;
    font-size: 19px;
    font-family: 'Roboto';
    color: white;
    border-radius: 40px;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s all;
}

.newsletter-email button:hover {
    background: #700b1b;
}

.news-letter:before {
    position: absolute;
    content: '\f1d8';
    font-family: 'Font Awesome 5 Pro';
    color: #831425;
    font-size: 70px;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    animation: paperplane 3s linear;
}

@keyframes paperplane {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-50deg) scale(0.6);
    }
    80% {
        transform: rotate(-180deg) scale(0.3);
    }
    100% {
        transform: rotate(-360deg) scale(1);
    }
}


/* news-letter */


/* footer */

a.top-navigator {
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8a1527;
    width: 100px;
    height: 60px;
    font-size: 25px;
    color: white;
}

a.top-navigator:hover {
    background: #5a0b18;
}

a.top-navigator:hover i {
    transform: translateY(-10px);
}

a.top-navigator i {
    transition: 0.3s all ease-in-out;
}

footer {
    padding: 130px 0 0 0;
    background: #262626;
    position: relative;
    z-index: 0;
}

footer:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    top: 0;
    right: 100px;
    background-color: #575757;
}

.foot-bottom {
    background: #1e1e1e;
    margin-top: 40px;
    padding: 10px 0px;
}

footer h5 {
    position: relative;
    font-size: 30px;
    color: white;
    font-family: 'Rajdhani';
    font-weight: 600;
    padding-left: 15px;
}

footer h5:before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: #841426;
    top: 0;
    left: 0;
}

footer p {
    font-size: 14px;
    line-height: 1.3;
    font-family: 'Roboto';
    color: #a8a8a8;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    font-size: 24px;
    margin-right: 10px;
    box-shadow: 0 5px 15px 0px rgb(0 0 0 / 60%);
    transform: translatey(0px);
    transition: 0.3s all ease-in-out;
    overflow: hidden;
}

.social-links a:hover {
    background-color: #700b1b;
    border-color: #700b1b;
}

.quick-links a {
    font-size: 14px;
    font-family: 'Roboto';
    color: #a8a8a8;
}

.quick-links a:hover {
    color: white;
    text-decoration: underline;
    text-decoration-color: #8c1528;
}

.foot-number {
    font-size: 30px;
    font-family: 'Roboto';
    color: white;
    display: block;
    margin-bottom: 20px;
}

.foot-number:hover {
    color: #8c1528;
}

a.req-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 25px;
    border: 1px solid white;
    padding: 0 20px;
    font-size: 14px;
    font-family: 'Roboto';
    color: white;
    transition: 0.3s all ease-in-out;
}

a.req-btn:hover {
    background: #8a1528;
}

.foot-timing li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #3c3c3c;
}

.foot-timing li span {
    font-size: 14px;
    font-family: 'Roboto';
    color: #a8a8a8;
}

.foot-bottom p {
    text-align: end;
    color: white;
}


/* footer */


/* inner-banner */

.inner-banner .carousel-item>img {
    height: 80vh;
    width: 100%;
    object-position: top;
}


/* quote-sec */

form.quote-form {
    margin-top: 50px;
}

.quote-form input,
.quote-form select {
    width: 100%;
    height: 50px;
    text-indent: 10px;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
    background: transparent;
}

.quote-form .position-relative select {
    margin-bottom: 0px;
    padding: 0px;
    color: #5c5757;
}

.quote-form textarea {
    padding: 10px;
    text-indent: 0px;
    height: 200px;
    width: 100%;
    resize: none;
    border: 1px solid #d4d4d4;
}

.quote-form i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    background: #8c1528;
    color: white;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.quote-form .position-relative {
    margin-bottom: 20px;
    z-index: 2;
}

.quote-form .position-relative input {
    margin-bottom: 0;
}

.quote-form div input[type="date"]::-webkit-calendar-picker-indicator,
.quote-form div input[type="time"]::-webkit-calendar-picker-indicator {
    position: relative;
    z-index: 2;
    width: 60%;
    margin-left: auto;
    height: 100%;
    opacity: 0;
}

.quote-form button {
    margin-top: 40px;
}


/* quote-sec */


/* contact-pg */

form.contact-pg-form {
    border-radius: 5px;
    box-shadow: 0px 0px 12px lightgrey;
    padding: 60px;
    background: white;
}

form.contact-pg-form h3 {
    font-size: 58px;
    font-family: 'Rajdhani';
    font-weight: 600;
	margin-bottom:0 !important;
}

.contact-pg-form input,
.contact-pg-form textarea {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid black;
    padding-left: 30px !important;
}

.contact-pg-form textarea {
    height: 200px;
    width: 100%;
    text-indent: 0;
    resize: none;
    padding-left: 30px;
}

.contact-pg-form textarea+i {
    top: 20px !important;
}

.contact-pg-form div i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #8c1528;
    font-size: 15px;
}

.contact-pg-form div {
    margin-bottom: 10px;
}

.con-pg-det li a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.con-pg-det li a>i {
    width: 70px;
    height: 70px;
    font-size: 30px;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
}

.con-pg-det li:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: 2px solid #c68a94;
}

.con-pg-det a div>h5 {
    font-size: 25px;
    font-family: 'Rajdhani';
    color: white;
    margin-bottom: 10px;
}

.con-pg-det a div>p {
    font-size: 14px;
    color: white;
    font-family: 'Roboto';
    margin-bottom: 0;
}

.contact-pg:before {
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 35%;
    top: 10%;
    left: 0;
    background: #8c1528;
}

.con-pg-det {
    width: 80%;
}

.map iframe {
    width: 100%;
    height: 500px;
}

.map {
    margin-top: 100px;
}


/* contact-pg */


/* service-detail */

.ser-det-img {
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
    z-index: 3;
    padding: 20px;
}

.ser-det-img:before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    background-color: white;
    z-index: -1;
    top: 0;
    left: 0;
}

.ser-det-img:after {
    width: 100.2%;
    height: 100.2%;
    position: absolute;
    content: "";
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    background-color: #8c1528;
    z-index: -2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ser-det-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
}

.ser-det-box h3 {
    font-size: 47px;
    font-family: 'Rajdhani';
    font-weight: 600;
}

.ser-det-box p {
    font-size: 14px;
    font-family: 'Roboto';
    color: #898989;
}


/* service-detail */


/* abt-pg */

.misvis-img-box {
    width: 100%;
    height: 500px;
}

.misvis-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.misvis-img-box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 80px;
    width: 20px;
    height: 50%;
    transform: skewX(-18deg);
    background: linear-gradient(180deg, rgba(140, 21, 40, 1) 16%, rgba(255, 255, 255, 0) 100%);
}

.misvis-img-box:after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 70px;
    width: 50%;
    height: 300px;
    transform: skewX(-18deg);
    background: #8c1528;
    z-index: -1;
}

.misvis-img-box span {
    position: absolute;
    width: 100px;
    height: 80px;
    background: #8c1528ab;
    top: -30px;
    right: -40px;
    transform: skewX(-18deg);
}

.misvis-content p {
    font-size: 14px;
    font-family: 'Roboto';
    color: #898989;
}

.reverse-row {
    flex-direction: row-reverse;
    margin-top: 100px;
}

.reverse-row .misvis-img-box img {
    clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
}

.reverse-row .misvis-img-box:after {
    left: 70px;
    transform: skewX(18deg);
}

.reverse-row .misvis-img-box:before {
    right: 80px;
    transform: skewX(18deg);
}

.reverse-row .misvis-img-box span {
    left: -40px;
    transform: skewX(18deg);
}

.reverse-row .misvis-content {
    text-align: end;
}


/* abt-pg */


/*service-sec-inner*/

.service-sec-inner {
    position: relative;
    overflow: hidden;
}

.service-sec-inner h2 {
    font-size: 55px;
    line-height: 1;
}

.service-sec-inner .mg-60 {
    margin-top: 60px;
}

.service-sec-inner .row {
    align-items: center;
    position: relative;
    z-index: 0;
}

.service-sec-inner .row.mg-60.middel::before {
    left: inherit;
    right: -20%;
}

.service-sec-inner .row::before {
    content: '';
    background: #8c1528;
    position: absolute;
    left: -20%;
    top: 40%;
    height: 25%;
    width: 50%;
    z-index: -1;
}

.service-sec-inner p {
    color: #111111;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 30px;
}

.serv-img-b:hover::after {
    height: 0;
    width: 0;
}

.serv-img-b::after {
    content: '';
    position: absolute;
    height: 99%;
    width: 99%;
    background: #fff;
    z-index: -1;
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
    left: 0.5%;
    top: 0.5%;
    transition: 0.9s ease-in-out;
}

.serv-img-b::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #8c1528;
    z-index: -1;
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
    left: 0;
    top: 0;
}

.serv-img-b {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 0;
}

.serv-img-b img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
    transition: 0.3s ease-in-out;
}

.middel .serv-img-b img {
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.middel .serv-img-b::before {
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.middel .serv-img-b::after {
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}


/*service-sec-inner*/


/* media-query */

@media only screen and (min-width:1200px) and (max-width:1399px) {
    html {
        overflow-x: hidden;
    }
    h1 {
        font-size: 59px;
    }
    .banner_text {
        padding-left: 10px;
    }
    section.abt-sec:before {
        transform: skewX(11deg);
        width: 40%;
    }
    .abt-img-box>span {
        transform: skewY(-55deg)rotateZ(-8deg);
    }
    section.abt-sec:after {
        height: 231px;
        right: -10%;
    }
    img.service-sec-back {
        clip-path: polygon(0 0, 25% 0, 30% 10%, 70% 10%, 75% 0, 100% 0, 100% 90%, 80% 90%, 75% 100%, 20% 100%, 15% 90%, 0% 90%);
    }
    .service-sec:before {
        clip-path: polygon(30% 10%, 70% 10%, 75% 0, 100% 0, 100% 100%, 0 100%, 0 0, 25% 0);
    }
    .chose-img-box {
        height: 65%;
    }
    .choose-cards>div {
        padding: 15px;
    }
    .chose-img-box:before {
        height: 58%;
        right: -27px;
    }
    .completed-work h2 {
        font-size: 51px;
    }
    .testi-slider .slick-next {
        right: auto;
        left: 30%;
    }
    .testi-slider .slick-prev {
        left: 20%;
        z-index: 1;
    }
    .slide-quantity {
        left: 65%;
    }
    .news-letter {
        width: 85%;
    }
    .newsletter-email button {
        width: 35%;
    }
    ul.foot-timing {
        width: 80%;
    }
    .foot-bottom p {
        padding-right: 50px;
    }
    footer:before {
        right: 90px;
    }
    a.top-navigator {
        width: 90px;
    }
    section.misvis-sec.ptb-100 {
        padding: 40px 0;
    }
    form.contact-pg-form {
        padding: 40px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .contact-pg .col-lg-6.col-md-6.col-sm-12.col-12:nth-child(1) {
        width: 40%;
    }
    .contact-pg .col-lg-6.col-md-6.col-sm-12.col-12:nth-child(2) {
        width: 60%;
    }
    .service-sec-inner h2 {
        font-size: 46px;
    }
    footer h5 {
        position: relative;
        font-size: 27px;
    }
    html {
        overflow-x: hidden;
    }
    h1 {
        font-size: 46px;
    }
    .banner_text {
        padding-left: 30px;
    }
    .carousel-item>img {
        height: 100vh;
    }
    .abt-img-box {
        width: 80%;
        height: 400px;
    }
    .abt-img-box>span {
        width: 55px;
    }
    section.abt-sec:before {
        width: 38%;
        height: 45%;
    }
    h2 {
        font-size: 58px;
    }
    section.abt-sec:after {
        height: 194px;
        bottom: -68px;
    }
    .service-sec {
        margin: 50px 0;
    }
    img.service-sec-back {
        clip-path: polygon(0 0, 15% 0, 25% 10%, 75% 10%, 85% 0, 100% 0, 100% 90%, 80% 90%, 75% 100%, 20% 100%, 15% 90%, 0% 90%);
    }
    .service-sec:before {
        clip-path: polygon(26% 10%, 74% 10%, 84% 0, 100% 0, 100% 100%, 0 100%, 0 0, 16% 0);
    }
    .chose-img-box {
        height: 380px;
    }
    .choose-cards>div {
        padding: 10px;
    }
    .choose-card-img {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin-bottom: 10px;
    }
    .choose-cards h3 {
        font-size: 17px;
    }
    .chose-img-box:before {
        right: -10px;
    }
    .completed-work h2 {
        font-size: 43px;
    }
    .testi-big-img {
        width: 75%;
        height: 80%;
    }
    .testi-content {
        padding: 30px;
        width: 80%;
    }
    .testi-slider .slick-prev:before,
    .testi-slider .slick-next:before {
        width: 50px;
        height: 50px;
    }
    .testi-slider .slick-prev {
        left: 5%;
    }
    .testi-slider .slick-next {
        right: auto;
        left: 14%;
    }
    .news-letter {
        padding: 25px 0;
        width: 85%;
        padding-left: 70px;
    }
    .news-letter:before {
        font-size: 40px;
    }
    .newsletter-email button {
        width: 35%;
    }
    .foot-bottom p {
        padding-right: 80px;
    }
    ul.foot-timing {
        width: 80%;
    }
    footer:before {
        right: 80px;
    }
    a.top-navigator {
        width: 80px;
    }
    .inner-banner .carousel-item>img {
        height: 60vh;
    }
    .misvis-img-box:before {
        left: 25px;
        transform: skewX(-12deg);
    }
    .misvis-img-box:after {
        right: 30px;
        height: 250px;
        transform: skewX(-12deg);
    }
    .misvis-img-box span {
        width: 80px;
        top: -20px;
        right: -20px;
    }
    .reverse-row .misvis-img-box:before {
        left: auto;
        right: 25px;
        transform: skewX(12deg);
    }
    .reverse-row .misvis-img-box:after {
        left: 25px;
        transform: skewX(12deg);
    }
    .reverse-row .misvis-img-box span {
        left: -20px;
    }
    .serv-img-b {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    h1 {
        font-size: 41px;
    }
    .banner_text {
        padding-left: 30px;
    }
    .carousel-item>img {
        height: 70vh;
    }
    .menuSec ul li a {
        padding: 10px 6px;
    }
    .banner_text .btn-theme {
        margin-top: 10px;
    }
    .abt-img-box {
        width: 80%;
        height: 400px;
    }
    .abt-img-box>span {
        width: 55px;
    }
    section.abt-sec:before {
        width: 38%;
        height: 40%;
    }
    h2 {
        font-size: 50px;
    }
    section.abt-sec:after {
        height: 144px;
        bottom: -68px;
    }
    .service-sec {
        height: 900px;
        margin: 50px 0;
    }
    img.service-sec-back {
        clip-path: polygon(0 0, 15% 0, 25% 10%, 75% 10%, 85% 0, 100% 0, 100% 90%, 80% 90%, 75% 100%, 20% 100%, 15% 90%, 0% 90%);
    }
    .service-sec:before {
        clip-path: polygon(26% 10%, 74% 10%, 84% 0, 100% 0, 100% 100%, 0 100%, 0 0, 16% 0);
    }
    .service-box-img {
        height: 300px;
        padding: 10px;
    }
    .service-box-content h3 {
        font-size: 27px;
    }
    .chose-img-box {
        height: 550px;
    }
    .choose-cards>div {
        padding: 10px;
    }
    .choose-card-img {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin-bottom: 10px;
    }
    .choose-cards h3 {
        font-size: 15px;
    }
    .choose-cards p {
        font-size: 11px;
    }
    .choose-sec .col-lg-6.col-md-6.col-sm-12.col-12 {
        width: 100%;
    }
    .chose-img-box:before {
        display: none;
    }
    .completed-work h2 {
        font-size: 35px;
    }
    .ptb-100 {
        padding: 50px 0;
    }
    .testi-big-img {
        width: 75%;
        height: 80%;
    }
    .testi-content {
        padding: 30px;
        width: 80%;
    }
    .testi-slider .slick-prev:before,
    .testi-slider .slick-next:before {
        width: 40px;
        height: 40px;
    }
    .testi-slider .slick-prev {
        left: 4%;
    }
    .testi-slider .slick-next {
        right: auto;
        left: 14%;
    }
    .news-letter {
        padding: 25px 0;
        width: 85%;
        padding-left: 60px;
    }
    .news-letter:before {
        font-size: 40px;
    }
    .newsletter-email button {
        position: unset;
        width: 100%;
        height: 60px;
        margin-top: 40px;
    }
    .foot-bottom p {
        text-align: start;
        font-size: 13px;
    }
    ul.foot-timing {
        width: 60%;
    }
    footer:before {
        right: 60px;
    }
    a.top-navigator {
        width: 60px;
    }
    .inner-banner .carousel-item>img {
        height: 60vh;
    }
    .misvis-img-box:before {
        left: 25px;
        transform: skewX(-12deg);
    }
    .misvis-img-box:after {
        right: 30px;
        height: 250px;
        transform: skewX(-12deg);
    }
    .misvis-img-box span {
        width: 80px;
        top: -20px;
        right: -20px;
    }
    .reverse-row .misvis-img-box:before {
        left: auto;
        right: 25px;
        transform: skewX(12deg);
    }
    .reverse-row .misvis-img-box:after {
        left: 25px;
        transform: skewX(12deg);
    }
    .reverse-row .misvis-img-box span {
        left: -20px;
    }
    .service-sec-inner .row::before {
        display: none;
    }
    .middel {
        flex-direction: column-reverse;
    }
    .serv-img-b {
        margin-bottom: 20px;
    }
    form.contact-pg-form {
        padding: 20px;
    }
}

@media only screen and (min-width:520px) and (max-width:767px) {
    .foot-bottom p {
        text-align: center;
    }
    .choose-cards>div {
        padding: 10px;
    }
    .carousel-item>img {
        height: 450px;
    }
    html {
        overflow-x: hidden;
    }
    h1 {
        font-size: 32px;
    }
    .banner_img {
        display: none;
    }
    .banner_text p {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 0;
    }
    .banner_text .btn-theme {
        margin-top: 20px;
    }
    .btn-theme {
        padding: 0 30px;
        height: 45px;
    }
    .btn-theme-1 {
        width: 170px;
        margin-top: 10px;
    }
    .btn-theme-1:before {
        width: 170px;
    }
    .banner-bottom-shape {
        position: absolute;
        bottom: 0px;
        right: 0;
        left: 0;
        margin: auto;
        width: 85%;
        height: 35px;
        z-index: 1;
    }
    .banner-bottom-shape:before {
        bottom: -1px;
        top: auto;
    }
    .main_slider {
        overflow: hidden;
    }
    .bars {
        width: 10px;
    }
    .banner_text {
        padding-left: 30px;
        width: 75%;
    }
    .menuSec img {
        width: 60px;
        height: 60px;
    }
    .abt-img-box {
        width: 80%;
        height: 300px;
        margin-bottom: 40px;
    }
    section.abt-sec:before {
        width: 75%;
        height: 18%;
    }
    h2 {
        font-size: 40px;
        margin: 0 0 10px;
    }
    .abt-list li div>h5 {
        font-size: 18px;
    }
    .ptb-100 {
        padding: 40px 0;
    }
    section.abt-sec:after {
        display: none;
    }
    ul.abt-list {
        width: 90%;
    }
    .service-sec {
        height: fit-content;
        margin: 40px 0 0 0;
        padding: 40px 0;
    }
    img.service-sec-back {
        clip-path: unset;
    }
    .service-sec h2 {
        margin-bottom: 0px;
        color: white;
    }
    .service-box {
        margin-bottom: 40px;
    }
    .service-box-img {
        height: 300px;
        padding: 10px;
    }
    .chose-img-box {
        height: 450px;
        margin-top: 40px;
    }
    .chose-img-box:before {
        display: none;
    }
    .completed-work .row:nth-child(2) {
        margin-top: 30px;
    }
    .completed-work h2 {
        font-size: 32px;
        text-align: center;
    }
    .completed-work:before {
        height: 70px;
        width: 100%;
        top: 40px;
    }
    .com-big-box,
    .com-medium-box,
    .com-small-box {
        width: 100%;
    }
    .sec-col {
        margin-top: 0px;
    }
    .sec-col .col-lg-7.col-md-7.col-sm-12.col-12 .com-small-box {
        height: inherit;
        margin-top: 20px;
        width: 100%;
    }
    .ptb-50 {
        padding: 40px 0;
    }
    .slide-quantity {
        display: none;
    }
    .testi-box {
        height: fit-content;
    }
    .testi-content {
        position: unset;
        padding: 20px;
        width: 100%;
    }
    .testi-big-img {
        width: 100%;
        height: 200px;
    }
    .testi-slider .slick-prev:before,
    .testi-slider .slick-next:before {
        width: 30px;
        height: 30px;
        font-size: 25px;
    }
    .testi-slider .slick-prev,
    .testi-slider .slick-next {
        bottom: auto;
        transform: none;
        top: -10%;
    }
    .testi-slider .slick-next {
        right: 10%;
        left: auto;
    }
    .testi-slider .slick-prev {
        left: auto;
        right: 19%;
    }
    .testi-content h5 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .news-letter {
        padding: 25px 0;
        width: 90%;
        margin-bottom: -65px;
        padding-left: 100px;
    }
    .news-letter h2 {
        margin-bottom: 10px;
        font-size: 23px;
    }
    .news-letter p {
        line-height: 1.2;
        font-size: 12px;
    }
    .newsletter-email button {
        width: 30%;
    }
    .newsletter-email input[type="email"] {
        height: 40px;
        font-size: 17px;
    }
    a.req-btn {
        margin-bottom: 40px;
    }
    .social-links {
        text-align: center;
        margin-bottom: 10px;
    }
    footer:before {
        display: none;
    }
    a.top-navigator {
        display: none;
    }
    .misvis-img-box {
        height: 350px;
    }
    .misvis-img-box:after {
        right: 62px;
        width: 50%;
        height: 200px;
    }
    .misvis-img-box span {
        width: 40px;
        height: 40px;
        top: -10px;
        right: -5px;
    }
    .misvis-img-box:before {
        left: 55px;
    }
    .reverse-row .misvis-img-box:before {
        right: 55px;
        left: auto;
    }
    .reverse-row .misvis-img-box:after {
        left: 40px;
        right: auto;
    }
    .reverse-row .misvis-img-box span {
        left: -5px;
    }
    .serv-img-b {
        height: 250px;
        padding: 10px;
        margin: 20px 0;
    }
    .service-sec-inner h2 {
        font-size: 32px;
    }
    .service-sec-inner .row::before {
        display: none;
    }
    .middel {
        flex-direction: column-reverse;
    }
    .service-sec-inner p {
        font-size: 14px;
        line-height: 1.5;
    }
    .ser-det-img {
        height: 300px;
        margin-bottom: 30px;
        padding: 10px;
    }
    .ser-det-box h3 {
        font-size: 32px;
    }
    .contact-pg:before {
        top: 2%;
    }
    form.contact-pg-form {
        padding: 20px;
    }
    form.contact-pg-form h3 {
        font-size: 40px;
    }
    .map {
        margin-top: 50px;
    }
}

@media only screen and (min-width:300px) and (max-width:519px) {
    html {
        overflow-x: hidden;
    }
    h1 {
        font-size: 32px;
    }
    .banner_img {
        display: none;
    }
    .banner_text p {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 0;
    }
    .banner_text .btn-theme {
        margin-top: 20px;
    }
    .btn-theme {
        padding: 0 30px;
        height: 45px;
    }
    .btn-theme-1 {
        width: 100%;
        height: 45px;
    }
    .btn-theme-1:before {
        width: 100%;
        height: 39px;
    }
    .banner-bottom-shape {
        position: absolute;
        bottom: 0px;
        right: 0;
        left: 0;
        margin: auto;
        width: 85%;
        height: 35px;
        z-index: 1;
    }
    .banner-bottom-shape:before {
        bottom: -1px;
        top: auto;
    }
    .main_slider {
        overflow: hidden;
    }
    .bars {
        width: 10px;
    }
    .banner_text {
        padding-left: 20px;
    }
    .menuSec img {
        width: 70px;
        height: 80px;
    }
    .abt-img-box {
        width: 80%;
        height: 300px;
        margin-bottom: 40px;
    }
    section.abt-sec:before {
        width: 75%;
        height: 18%;
    }
    h2 {
        font-size: 40px;
        margin: 0 0 10px;
    }
    .abt-list li div>h5 {
        font-size: 18px;
    }
    .ptb-100 {
        padding: 40px 0;
    }
    section.abt-sec:after {
        display: none;
    }
    ul.abt-list {
        width: 90%;
    }
    .service-sec {
        height: fit-content;
        margin: 40px 0 0 0;
        padding: 40px 0;
    }
    img.service-sec-back {
        clip-path: unset;
    }
    .service-sec h2 {
        margin-bottom: 0px;
        color: white;
    }
    .service-box {
        margin-bottom: 40px;
    }
    .service-box-img {
        height: 250px;
        padding: 10px;
    }
    .choose-cards {
        display: block;
    }
    .chose-img-box {
        height: 250px;
        margin-top: 40px;
    }
    .chose-img-box:before {
        display: none;
    }
    .completed-work .row:nth-child(2) {
        margin-top: 30px;
    }
    .completed-work h2 {
        font-size: 32px;
        text-align: center;
    }
    .completed-work:before {
        height: 100px;
        width: 100%;
    }
    .com-big-box,
    .com-medium-box,
    .com-small-box {
        width: 100%;
    }
    .sec-col {
        margin-top: 0px;
    }
    .sec-col .col-lg-7.col-md-7.col-sm-12.col-12 .com-small-box {
        height: inherit;
        margin-top: 20px;
        width: 100%;
    }
    .ptb-50 {
        padding: 40px 0;
    }
    .slide-quantity {
        display: none;
    }
    .testi-box {
        height: fit-content;
    }
    .testi-content {
        position: unset;
        padding: 20px;
        width: 100%;
    }
    .testi-big-img {
        width: 100%;
        height: 200px;
    }
    .testi-slider .slick-prev:before,
    .testi-slider .slick-next:before {
        width: 30px;
        height: 30px;
        font-size: 25px;
    }
    .testi-slider .slick-prev,
    .testi-slider .slick-next {
        bottom: auto;
        transform: none;
        top: -10%;
    }
    .testi-slider .slick-next {
        right: 10%;
        left: auto;
    }
    .testi-slider .slick-prev {
        left: auto;
        right: 25%;
    }
    .testi-content h5 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .news-letter {
        padding: 25px 0 0 0;
        width: 90%;
        margin-bottom: -65px;
        padding-left: 0px;
    }
    .news-letter h2 {
        margin-bottom: 10px;
        font-size: 23px;
    }
    .news-letter p {
        line-height: 1.2;
        font-size: 12px;
    }
    .news-letter:before {
        display: none;
    }
    .newsletter-email button {
        position: unset;
        width: 100%;
        height: 40px;
        margin-top: 30px;
    }
    .newsletter-email input[type="email"] {
        height: 40px;
        font-size: 17px;
    }
    a.req-btn {
        margin-bottom: 40px;
    }
    .social-links {
        text-align: center;
        margin-bottom: 10px;
    }
    footer:before {
        display: none;
    }
    a.top-navigator {
        display: none;
    }
    .misvis-img-box {
        height: 250px;
    }
    .misvis-img-box:after {
        right: 42px;
        width: 50%;
        height: 100px;
    }
    .misvis-img-box span {
        width: 40px;
        height: 40px;
        top: -10px;
        right: -5px;
    }
    .misvis-img-box:before {
        left: 25px;
    }
    .reverse-row .misvis-img-box:before {
        right: 25px;
        left: auto;
    }
    .reverse-row .misvis-img-box:after {
        left: 40px;
        right: auto;
    }
    .reverse-row .misvis-img-box span {
        left: -5px;
    }
    .serv-img-b {
        height: 250px;
        padding: 10px;
        margin: 20px 0;
    }
    .service-sec-inner h2 {
        font-size: 32px;
    }
    .service-sec-inner .row::before {
        display: none;
    }
    .middel {
        flex-direction: column-reverse;
    }
    .service-sec-inner p {
        font-size: 14px;
        line-height: 1.5;
    }
    .ser-det-img {
        height: 300px;
        margin-bottom: 30px;
        padding: 10px;
    }
    .ser-det-box h3 {
        font-size: 32px;
    }
    .contact-pg:before {
        top: 2%;
    }
    form.contact-pg-form {
        padding: 20px;
    }
    form.contact-pg-form h3 {
        font-size: 40px;
    }
    .map {
        margin-top: 50px;
    }
}


/* media-query */


.contact-pg-form .gfield{
	position:relative;
	margin-bottom: 0;
}

.contact-pg-form .gfield:before{
	content:'';
	position:absolute;
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	color: #8c1528;
    font-size: 15px;
	left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.contact-pg-form .gfield.contact_name:before{content: "\f007";}

.contact-pg-form .gfield.contact_phone:before{
	content: "\f2a0";
}

.contact-pg-form .gfield.contact_email:before{
	content: "\f0e0";
}

.contact-pg-form .gfield.contact_location:before{
	content: "\f3c5";
}

.contact-pg-form .gfield.contact_message:before{
	content: "\f1d8";
	top: 21px;
}


.contact-pg-form .gfield.contact_bname:before{
	content: "\f0b1";
}

.contact-pg-form .gfield.contact_list:before{
	content: "\f03a";
}

.contact-pg-form .gsection {
	border:0 !important;
}

#input_2_5 {
	width:100% !important;
}

.quote-form .ginput_container_time {
	min-width: 126px !important;
}


.service_top_text p{
	padding: 0 230px;font-size: 22px;
}