* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Sora';
    src: url('../fonts/Sora-SemiBold.woff2') format('woff2'),
        url('../fonts/Sora-SemiBold.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sora';
    src: url('../fonts/Sora-Bold.woff2') format('woff2'),
        url('../fonts/Sora-Bold.woff') format('woff');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sora';
    src: url('../fonts/Sora-Regular.woff') format('woff'),
        url('../fonts/Sora-Regular.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

dl,
ol,
ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style: none;
}

p,
li {
    font-family: 'Sora';
    font-size: 15px;
    color: #171717;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora';
    color: rgb(0, 0, 0);
    line-height: 1.4;
    font-weight: 600;
}

a {
    font-family: 'Sora';
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: all 0.4s ease 0s;
}

:root {
    --first-clr: #ff7e45;
    --black-clr: #000;
    --white-clr: #fff;
}

img {
    width: auto;
    max-width: 100%;
    transition: all 0.4s ease 0s;
}

.padd {
    padding: 60px 0px;
}

.top-bar {
    background: var(--first-clr);
    padding: 7px 0px;
}

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

.top-contact {
    display: flex;
    gap: 25px;
    padding-left: 24%;
    justify-content: flex-end;
}

.top-social ul {
    display: flex;
    align-items: center;
}

.top-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-icon i {
    color: rgb(255, 255, 255);
}

.top-icon a {
    color: rgb(0, 0, 0);
}

.top-social ul li a {
    font-size: 17px;
    clip-path: polygon(50% 0, 100% 23%, 100% 76%, 51% 100%, 0 78%, 0 24%);
    background: #fff;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    margin: 0 4px;
}

.top-social ul li a:hover {
    color: var(--first-clr);
}

.bottom-bar {
    border-bottom: 2px solid var(--first-clr);
}




a.navbar-brand {
    background-color: rgb(255 255 255);
    margin: -70px 15px -16px;
    padding: 32px 20px 32px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    z-index: 99;
    clip-path: polygon(50% 0, 100% 23%, 100% 76%, 51% 100%, 0 78%, 0 24%);
    border-bottom: 2px solid var(--first-clr);
    width: 200px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 18px 13px;
    color: #000;
    font-size: 16px;
}

.clk_btn {
    position: absolute;
    top: 15px;
    right: 0px;
    z-index: 99;
    cursor: pointer;
    color: #000;
}

li.nav-item {
    position: relative;
}

ul.dropdown-menu {
    position: absolute;
    width: 300px;
    border: none;
    background: var(--first-clr);
    padding: 0;
}

ul.dropdown-menu li a {
    color: #fff;
    width: 100%;
    display: block;
}

ul.dropdown-menu li:hover {
    background: #fff;
}

ul.dropdown-menu li:hover a {
    color: #000;
    transform: translateX(10px);
}

ul.dropdown-menu li {
    padding: 5px 10px;
}


ul.navbar-nav li.nav-item:hover ul.dropdown-menu {
    display: block;
}



.btn a {
    background: #000;
    padding: 13px 25px;
    border-radius: 4px;
    font-size: 17px;
    color: rgb(255, 255, 255);
}


.sticky {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    animation: slidetop 1s ease-in-out backwards;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    bottom: inherit;
    background: #fff;
    background-image: inherit;
}

@keyframes slidetop {
    from {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}


.sticky a.navbar-brand {
    width: 130px;
    margin: 0;
    padding: 5px;
    clip-path: inherit;
    box-shadow: none;
    border: none;
}

.btn a:hover {
    background: var(--first-clr);
    color: #000;
}

.slide {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0px;
    height: 560px;
    position: relative;
    z-index: 9;
}

.title-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 3px 0px;
}

.title-flex p {
    margin: 0px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--first-clr) !important;
}

.slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, black, #00000000);
    top: 0px;
    z-index: -1;
}

.slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 65%;
    background: url("../imgs/bottom.png") no-repeat;
    bottom: -11px;
    z-index: -1;
}

.content h2 {
    font-size: 46px;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.content h2 span {
    font-weight: bolder;
}

.content p {
    color: #000000;
    width: 100%;
}

.form-banner {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
}

.form-banner h4 {
    color: var(--first-clr);
    font-size: 28px;
    margin: 10px 0px;
}

.form-banner input,
.form-banner select,
.form-banner textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 10px;
    border: none;
    background: #f7f7f7;
    border-radius: 5px;
    color: rgb(117, 117, 117);
    font-size: 15px;
    font-family: 'Sora';
}

input[type="submit"] {
    background: #000;
    color: rgb(255, 255, 255);
    width: 100%;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 16px;
    border-radius: 4px;
    outline: none;
    border: none;
}

.title h2 {
    font-size: 36px;
    font-weight: bolder;
}

.title h2 span {
    color: var(--first-clr);
}

.ab-text ul li {
    padding-left: 30px;
    position: relative;
    margin: 8px 0px;
    width: 48%;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.ab-text ul li::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: url("../imgs/list-img.png") no-repeat;
    left: 0px;
    top: 10px;
    background-size: contain;
}

.ab-img {
    position: relative;
    width: 48%;
    /* padding-right: 20px; */
    overflow: hidden;
    border-radius: 10px;
}

.ab-main {
    display: flex;
    align-items: center;
    width: 98%;
    position: relative;
}

.ab-img-2 {
    width: 50%;
    overflow: hidden;
    margin: auto;
    text-align: center;
}

.ab-main img {
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    object-fit: cover;
}

.ab-img-2 img {
    height: 230px;
    width: 90%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.ab-img-2 img:hover {
    transform: scale(1.05);
}

@keyframes scaleAnimation {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.ab-flex {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    border-radius: 10%;
    background-image: linear-gradient(to right, #ff8142, #ff7e44, #ff7b46, #ff7949, #ff764b, #ff744d, #fe714e, #fe6f50, #fe6c52, #fe6a54, #fd6756, #fd6558);
    text-align: center;
}

.ab-flex h5 {
    margin: 0px;
    color: var(--first-clr);
    font-size: 30px;
    line-height: normal;
}

.ab-flex img {
    padding-right: 10px;
}

.title-flex-2 p {
    color: #ffffff !important;
}

.service-sec {
    background-image: linear-gradient(to right, #ff8142, #ff7e44, #ff7b46, #ff7949, #ff764b, #ff744d, #fe714e, #fe6f50, #fe6c52, #fe6a54, #fd6756, #fd6558);
}

.service-box {
    width: 100%;
    transition: all 0.4s ease 0s;
    padding: 10px;
}

.ser-img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
}

.ser-txt {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.ser-txt h3 {
    font-size: 22px;
    margin: 10px 0px;
    color: #000;
}

.ser-txt p {
    color: #000;
}

/*a.read-mr {*/
/*    font-size: 15px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 15px;*/
/*}*/

.service-box:hover .ser-img img {transform: scale(1.1);}

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

.service-box:hover::before {
    opacity: 1;
    z-index: 9;
}

.service-box:hover h3,
.service-box:hover p,
.service-box:hover a {
    color: rgb(255, 255, 255);
}

.service-box:hover .ser-txt {
    border-color: #fff;
}


.btn {
    padding: 0px;
}

.why-sec {
    background: #000;
}


.blog-box {
    position: relative;
    text-align: center;
    padding: 10px;
}

.blog-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    position: relative;
}


.blog-box h3 {
    font-size: 19px;
    transition: .4s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.blog-box:hover img {
    transform: scale(1.1);
}


.blog-box:hover h3 {
    color: var(--first-clr);
}

.blog-txt {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    width: 90%;
    margin: -65px auto 0;
    position: relative;
    min-height: 315px;
}

.blog-txt a.read-mr {
    justify-content: center;
}

.blog-box:hover .blog-txt {
    background-image: linear-gradient(to right, #ff8142, #ff7e44, #ff7b46, #ff7949, #ff764b, #ff744d, #fe714e, #fe6f50, #fe6c52, #fe6a54, #fd6756, #fd6558);
}

.blog-box:hover h3, .blog-box:hover a.read-mr {
    color: #fff;
}


.date {
    display: flex;
    justify-content: space-between;
    margin: 10px 0px;
}

.date i , .date span {
    color: #7e7e7e;
    font-size: 15px;
    font-weight: bold;
}

.blog-box:hover .date i, .blog-box:hover .date span {
    color: #000;
}

.blog-upper .back-text {
    top: 13%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer {
    width: 100%;
    background: #000;
    padding: 140px 0 12px;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer_box img {
    width: 147px;
    margin-bottom: 20px;
    /* margin: auto; */
    height: auto;
}

.footer_box p , .footer_box a {
    margin: 0;
    color: #fff;
}


.footer_icon ul {
    display: flex;
    justify-content: flex-start;
    padding: 0
}

.footer_icon ul li a {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    margin: 0 10px 0 0;
    font-size: 16px;
    color: var(--first-clr);
    background-color: var(--first-clr);
    transition: .4s ease;
    cursor: pointer;
    clip-path: polygon(50% 0, 100% 23%, 100% 76%, 51% 100%, 0 78%, 0 24%);
}

.footer_icon ul li a:hover {
    color: #fff;
}

.footer_icon ul li a>div {
    background-color: #000000;
    cursor: pointer;
    clip-path: polygon(50% 0, 100% 23%, 100% 76%, 51% 100%, 0 78%, 0 24%);
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
}

.footer_icon ul li a:hover>div {
    background-color: var(--first-clr);
}

.footer_box h4 {
    display: inline-block;
    font-size: 24px;
    margin: 0 0 20px;
    padding: 0 0 10px;
    position: relative;
    color: #ffffff;
}

.footer_box h4::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40%;
    height: 3px;
    background-color: var(--first-clr);
}

.footer_links {
    padding: 0
}

.footer_links li {
    position: relative;
    padding: 0 0 0 10px;
    list-style: none
}

.footer_links li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 10px;
    background: url(../imgs/list-arrow.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}

button.slick-prev.slick-arrow {
    background: black;
    color: white;
    padding: 11px;
    left: 0%;
    position: relative;
    top: 0;
}

button.slick-next.slick-arrow {
    position: absolute;
    top: 0px;
    background: #000000;
    color: white;
    padding: 11px;
    left: 5%;
}
.footer_links li a {
    display: inline-block;
    margin: 0 0 0px 12px;
    color: #fff;
}

.footer_links li a:hover {
    color: #fff;
    letter-spacing: 1px
}

.footer_contact {
    padding: 0
}

.footer_contact li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 20px
}

.link-icon {
    display: grid;
    place-items: center;
    font-size: 13px;
    background: var(--first-clr);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: unset;
    clip-path: polygon(50% 0, 100% 23%, 100% 76%, 51% 100%, 0 78%, 0 24%);
}

.link-text {
    width: 85%
}

.link-text span {
    color: #ffffff;
    transition: all .5s;
    font-size: 16px;
}

.link-text a:hover {
    color: #ffffff;
    letter-spacing: 1px
}

.link-text span:hover {
    color: #ffffff;
    letter-spacing: 1px
}

.footer_box.footer-second {
    padding-left: 50px
}

section.copyright p,
section.copyright a {
    margin: 0;
    color: #fff;
}


.copyright {
    background: #000;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #fff;
}


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

.process-box {
    text-align: center;
    position: relative;
    z-index: 90;
    transition: .4s ease;
}

.pro-icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    transition: .4s ease;
    clip-path: polygon(50% 0, 100% 23%, 100% 76%, 51% 100%, 0 78%, 0 24%);
    background: var(--first-clr);
    display: grid;
    place-content: center;
}

.process-box h4 {
    font-size: 19px;
}

.process-box:after {
    width: 100%;
    height: 1px;
    position: absolute;
    content: "";
    background: var(--first-clr);
    right: -110px;
    top: 30%;
    z-index: -1;
    display: none;
}

.col-md-3:last-child .process-box:after {
    display: none;
}

.process-box:hover .pro-icon {
    border-color: var(--first-clr);
}

.process-box:hover .pro-icon img {
    opacity: 1;
}

.testimonial-sec {
    background-image: linear-gradient(to left, #ff8142, #ff7e44, #ff7b46, #ff7949, #ff764b, #ff744d, #fe714e, #fe6f50, #fe6c52, #fe6a54, #fd6756, #fd6558);
}

.testimonial-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.test-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.title-flex img {
    width: 20px;
}

.test-cont {
    text-align: left;
    width: 80%;
}

.test-img {width: 20%;position: relative;}

.test-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.test-main .back-text {
    top: auto;
    left: auto;
    font-size: 65px;
    right: 0;
    bottom: -25px;
}
.test-cont h4 {font-size: 18px;margin: 0;}


.test-main {
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 100%;
    left: 30%;
    background: #fff;
    border-radius: 10px;
}

.test-icon img {
    width: 30px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.test-icon {
    position: absolute;
    top: 0;
    left: -5px;
}

.testimonial-box {
    width: 100%;
    padding: 30px;
}

.ab-img:hover img {
    transform: scale(1.09);
}

.ab-img:hover .ab-rotate {
    background: var(--second-clr);
}

.col-md-3:first-child .process-box .pro-icon img {
    opacity: 1;
}

.content .btn a {
    color: var(--first-clr);
    border: 2px solid var(--first-clr);
}

.content .btn a:hover {
    color: #000;
}

.back-text {
    position: absolute;
    font-size: 115px;
    line-height: normal;
    letter-spacing: 3px;
    display: block;
    text-transform: uppercase;
    top: -46px;
    z-index: -1;
    font-weight: bold;
    left: 40px;
    opacity: .2;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ff7e45;
}

.ab-text {
    padding-top: 30px;
}

.ab-flex h3 {
    color: #fff;
    font-size: 34px;
    margin: 0;
}

.ab-flex p {
    font-weight: bold;
    font-size: 16px;
}

.ab-flex hr {
    color: #fff;
    opacity: 1;
}

.bottom-box {
    text-align: center;
    padding: 20px;
    background: #fcfcfc;
    min-height: 190px;
    display: grid;
    place-content: center;
    place-items: center;
    transition: .4s ease;
    margin-top: -80px;
    position: relative;
}

.bottom-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.bottom-box h4 {
    font-size: 20px;
    margin: 5px 0;
}

.col-md-4:nth-child(2) .bottom-box,
.bottom-box:hover {
    background-image: linear-gradient(to right, #ff8142, #ff7e44, #ff7b46, #ff7949, #ff764b, #ff744d, #fe714e, #fe6f50, #fe6c52, #fe6a54, #fd6756, #fd6558);
}

.col-md-4:nth-child(2) .bottom-box img,
.bottom-box:hover img {
    filter: brightness(0);
}

.col-md-4:nth-child(2) .bottom-box p,
.bottom-box:hover p {
    color: #fff;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: #fff;
}

.modal-header .btn-close {
    background: #000;
    opacity: 1;
    color: #fff;
    line-height: 0;
    font-size: 18px;
}

.modal-title {
    font-size: 25px;
}

.title-flex-2 img {
    filter: brightness(1000);
}

.ser-title .back-text {
    z-index: 9;
    right: px;
    left: inherit;
    top: 0;
    -webkit-text-stroke-color: #ffffff;
    opacity: .2;
}

section {
    position: relative;
}

.ser-title p {
    border-left: 2px solid #000;
    padding-left: 30px;
    color: #000;
    font-size: 16px;
    position: relative;
    z-index: 9;
}

.pro-icon>div {
    clip-path: polygon(50% 0, 100% 23%, 100% 76%, 51% 100%, 0 78%, 0 24%);
    background: #fff;
    width: 120px;
    height: 120px;
    display: grid;
    place-content: center;
}

.request-text {
    padding-top: 25px;
}

.title-2 h2 {
    background-image: linear-gradient(to right, #ff8142, #ff7e44, #ff7b46, #ff7949, #ff764b, #ff744d, #fe714e, #fe6f50, #fe6c52, #fe6a54, #fd6756, #fd6558);
    -webkit-background-clip: text;
    background-clip: text ;
    -webkit-text-fill-color: transparent;
}

.why-box .back-text {
    left: inherit;
    right: auto;
    z-index: 9;
    -webkit-text-stroke-color: #fff;
    text-align: left;
    top: 0;
    opacity: .1;
}

.why-box {
    padding-top: 10%;
    padding-left: 40px;
    padding-right: 40px;
}

.why-box p {
    color: #fff;
}

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

.choos-flex {
    display: flex;
    align-items: center;
    background: #242528;
    padding: 13px;
    border-radius: 10px;
    width: 48%;
    margin-bottom: 29px;
    transition: .4s ease;
}

.choos-flex img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}

.choos-flex h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.choos-flex:hover {
    background-image: linear-gradient(to right, #ff8142, #ff7e44, #ff7b46, #ff7949, #ff764b, #ff744d, #fe714e, #fe6f50, #fe6c52, #fe6a54, #fd6756, #fd6558);
}

.why-img {
    position: relative;
}

.wh-cont {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 30px;
    background-image: linear-gradient(to right, #ff8142, #ff7e44, #ff7b46, #ff7949, #ff764b, #ff744d, #fe714e, #fe6f50, #fe6c52, #fe6a54, #fd6756, #fd6558);
    text-align: center;
    animation: tp-pulse 1.7s infinite alternate;
}

@keyframes tp-pulse {
    0% {
        box-shadow: 0 0 0 0 #fe806538;
    }
    70% {
        box-shadow: 0 0 0 45px #fe7f6645;
    }
    100% {
        box-shadow: 0 0 0 0 hsl(0deg 78.01% 62.55% / 11%);
    }
}

.wh-cont:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 115%;
    width: 108%;
    opacity: .6;
    transform: translate(-50%, -50%);
    background-color: #fe8d71;
    z-index: -1;
}

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

.bg-sec{
    background: url(../imgs/bg-1.jpg);
    padding: 70px 0px;
    text-align: center;
    position: relative;
    z-index: 9;
}

.bg-sec:before {
    position: absolute;
    content: "";
    background: #000000a3;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.bg-content p {
    color: #fff;
    margin: 20px 0px;
}

.bg-content {
    width: 80%;
    margin: auto;
}

.bg-content .btn a {
    background: transparent;
    border: 2px solid var(--first-clr);
    color: var(--first-clr);
}

.testimonial-slider ul.slick-dots {
    display: flex;
    justify-content: flex-end;
    position: relative;
    bottom: 50px;
    right: 30px;
}

.testimonial-slider ul.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border: none;
    background: #ddd;
    border-radius: 100%;
    margin: 0 3px;
}

.testimonial-slider ul.slick-dots li.slick-active button {
    background: #000;
}


.new-box {
    background: #f5f5f5;
    padding: 20px;
    position: relative;
    bottom: -44px;
    z-index: 9;
}

.new-form {
    display: flex;
    align-items: unset;
    width: 100%;
    border-bottom: none;
    justify-content: space-between;
}

.new-form input[type="email"] {
    padding: 5px;
    border: none;
    outline: none;
    background: transparent;
    width: 75%;
}

.new-form input[type="submit"] {
    width: 25%;
}

.new-box h4 {
    font-size: 30px;
}

.modal-content {
    background: var(--first-clr);
}

section{
    scroll-margin-top: 150px;
}

.bottom-bar.sticky img {
    width: 100px;
    clip: unset;
    height: auto;
}
section#contact {
    background: #efefef;
    padding: 30px 0px;
}

/* RESPONSIVE QUERY______ */

@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 991px) {
.process-box:after{
	display : none;
}
	.footer_box {
    margin-top: 24px;
}
	div#navbarSupportedContent {
    margin-bottom: 60px;
    margin-top: 20px;
    border-top: 1px solid #d2d2d2;
    padding-top: 30px;
}
	.navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 4px;   
    font-size: 16px;
}
	div#navbarSupportedContent .btn {
    margin-top: 20px;
}
	.top-icon {
    display: none;
}
	.ab-text ul li {   
    width: 100%;   
}
	.request-img {
    display: none;
}
	.why-img img {
    width: 100%;
    height: 400px;
    object-position: right;
}
	a.navbar-brand {
    background-color: rgb(255 255 255);
    margin: initial;
    padding: 0px;
    box-shadow: none;
    position: relative;
    z-index: 99;
    clip-path: none;
    border-bottom: none;
    width: 100px;
    height: auto;
}
	a.navbar-brand img {
    width: 100px;
    height: auto;
}
	.ab-img-2 img {  
    width: 100%;   
}
form.wpcf7-form.init input {
    margin: 3px;
}
	  .container, .container-sm {
        max-width: 96%;
    }
	
	button.slick-prev.slick-arrow {
    background: black;
    color: white;
    padding: 11px;
    left: 0%;
    position: relative;
    top: 0;
}

button.slick-next.slick-arrow {
    position: absolute;
    top: 0px;
    background: #000000;
    color: white;
    padding: 11px;
    left: 12%;
}
}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 767px) {
.bottom-box {  
	margin-top: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
	.top-icon {
    display: none;
}
	.request-img img {
    width: 200px;
    display: none;
}
	.why-img img {
    width: 100%;
    height: 360px;
}
	.bg-content {
    width: 100%;
    margin: auto;
}
	.test-main {
    position: relative;
    transform: none;
    top: -60px;
    width: 100%;
    left: 0px;
    background: #fff;
    border-radius: 10px;
}
	section.newsletter .container {
    width: 100% !important;
    max-width: 100%;
    padding: 20px;
}
	.footer_box.footer-second {
    padding-left: 0px;
}
	.footer_box.footer-second {
    padding-left: 0px;
    /* margin-bottom: 24px; */
    margin-top: 24px;
}
	.footer_box {
    margin-top: 20px;
}
	.footer_contact li {
    justify-content: flex-start;
    margin: 0px 0px 10px;
}
	.link-icon {       
    margin-right: 20px;
}
	 h1 { font-size: 32px !important; }
    h2 { font-size: 28px!important; }
    h3 { font-size: 24px!important; }
    h4 { font-size: 20px!important; }
    h5 { font-size: 20px!important; }
    h6 { font-size: 18px!important; }
    p { font-size: 15px!important; }
    span, a, li, label { font-size: 14px!important; }
	.back-text {   
    font-size: 95px; 
		top: -10px;
}
	  
		.content p { 
    width: 100%;
}
	.wh-cont {   
    width: 80%;
}
	.why-box {
    padding-top: 14%;
    padding-left: 12px;
    padding-right: 12px;
}
	.blog-upper {
    position: relative;
}
	.new-form input[type="submit"] {
    width: 50%;
}
	.new-form input[type="email"] {
    padding: 17px;
    border: none;
    outline: none;
    background: transparent;
    width: 99%;
    border: 1px solid #323232;
    margin-bottom: 20px;

}
	.form-banner { 
    padding: 0px;
}
	.new-box {   
    bottom: 0px;   
}
	.choos-flex {   
    width: 100%;   
}
	.footer_icon {
    display: none;
}
	.content h2 span {
    font-weight: bolder;
    font-size: 24px !important;
}
}
@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 500px) {

}

@media only screen and (max-width: 480px) {

 h1 { font-size: 32px !important; }
    h2 { font-size: 24px!important; }
    h3 { font-size: 22px!important; }
    h4 { font-size: 18px!important; }
    h5 { font-size: 18px!important; }
    h6 { font-size: 16px!important; }
    p { font-size: 15px!important; }
    span, a, li, label { font-size: 14px!important; }
	.back-text {
    font-size: 75px;
    top: -10px;
    left: 0px;
 }
	.blog-txt {   
    padding: 8px;   
    width: 96%;
    margin: -65px auto 0;
    position: relative;
    min-height: 315px;
}
	nav.navbar.navbar-expand-lg .container-fluid {
    padding: 0px;
}
	.padd {
    padding: 40px 0px !important;
}
.test-flex {
    flex-direction: column;
}
	.test-img {
    width: auto; 
}
	.test-cont {   
    width: 100%;
}
	 .container, .container-sm {
        max-width: 100%;
    }
	section.newsletter .container {      
        padding: 0px;
    }
	form.wpcf7-form.init input {
        margin: 3px;
        border-radius: 9px;
        padding: 10px;
    }
	.content h2 span {
    font-weight: bolder;
    font-size: 24px !important;
}

.footer {  
    padding: 40px 0 12px;   
}
}

@media only screen and (max-width: 414px) {

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}
button.show-more-btn {
    background: #000000;
    color: white;
    border: navajowhite;
    padding: 6px 16px;
    margin-top: 10px;
    border-radius: 6px;
}
  .content {
        max-height: 100px; /* Set initial height */
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
.content-area h2 {
    color: white !important;
}

.content-area p {
    color: white !important;
}
span.wpcf7-spinner {
    display: none;
}

.new-form p {
    margin: 0;
}

.content-area {
    width: 67%;
}