@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/*  font-family: "Montserrat", sans-serif;
 font-family: "Bebas Neue", sans-serif;*/

/***** 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;
}


/***** 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
}
@font-face {
    src: url(../fonts/Probert.otf);
    font-family: Probert;
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.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: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000!important;
    text-align: center;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000!important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000!important;
    color: #fff!important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.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: "Probert";
    font-size: 79.77px;
    line-height: 88.23px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-size: 19.28px;
    line-height: 23.21px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 0;
    font-family: Probert;
    text-transform: uppercase;
}

h3 {
    font-family: "Probert";
    font-size: 48.98px;
    line-height: 77.23px;
    color: #000000;
    font-weight: 400;
    margin: 0 0 0px;
    text-transform: uppercase;
}

h4 {
    font-family: "Probert";
    font-size: 43px;
    line-height: 52.23px;
    color: #393939;
    font-weight: 400;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #000000;
    font-weight: 600;
    margin: 12px 0 12px;
    text-transform: uppercase;
}


h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #b1b1b1;
    font-size: 14px;
    line-height: 21.46px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin: 0px;
}

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 */
.banner .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    flex-direction: column;
    position: absolute;
    right: 10%;
    top: 59%;
}
.header-btn a {
    background-color: #000;
    padding: 2px;
    display: flex;
    justify-content: end;
    height: 49px;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    gap: 16px;
    width: 87%;
}
.banner-text h1 span{
    color: #e61717;
}
.header-btn a img {
    background-color: #fff;
    padding: 5px;
}
.menuSec {
    padding: 15px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}
.menuSec ul li:not(:first-child) a{
    color: #fff;
}
.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 0 36px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}
/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}
*/
.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.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: #28b16d;
}

.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 */
.banner {
    padding: 3% 0;
}
.banner-text {
    position: absolute;
    background: #fff;
    bottom: -25%;
    padding: 50px 0;
    width: 43%;
}
.banner-text h1{
    position: relative;
}
.banner-text h1::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 1px;
    background-color: #e61717;
    bottom: 0px;
    right: auto;
    left: -70%;
}

.banner-text p {
    width: 64%;
}
.banner-social {
    position: absolute;
    right: 42%;
}
.banner-social ul li a {
    color: #ffffff78;
    height: 40px;
    width: 40px;
    border: 1px solid #ffffff;
    display: flex;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}
.banner-social {
    position: absolute;
    right: 28%;
    bottom: -13%;
}
.banner-social ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.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-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*/

/*about-us-sec-start*/

section.about-us {
    padding: 15% 0 0;
    position: relative;
}
section.about-us::before{
    content: '';
    position: absolute;
    width: 70%;
    background-color: #f5f5f5;
    height: 50%;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.about_btn.text-end a {
    padding: 0 !important;
}
.ab-img img {
    height: 700px;
    object-fit: cover;
    width: 100%;
}
.about_page .ab-img img{
    position: relative;
    z-index: 99;
}
.ab-content h3{
    text-transform: uppercase;
    font-size: 56px;
}
.ab-content h4{
    color: #e61717;
    text-transform: uppercase;
}
.banner-text.inner h1::before {
    display: none;
}
.ab-content p {
    width: 100%;
    margin: 20px 0;
    color: #b1b1b1;
    padding-right: 40px;
}
/*.ab-content a.btn {
    float: right;
}*/
a.btn {
    font-size: 14.77px;
    font-family: 'Probert';
    text-transform: uppercase;
    background-color: #ffff;
}
.ab-content {
    padding-left: 50px;
    background: #fff;
    position: relative;
}
a.btn img {
    height: 59px;
    width: 63px;
    background-color: #e61717;
    object-fit: scale-down;
}
/*about-us-sec-end*/

/*Why-Us-start*/

.why-content ul {
    display: flex;
    margin-bottom: 0;
}
.why-content ul li{
    position: relative;
}
.why-content ul li:not(:last-child):before{
    content: '';
    position: absolute;
    width: 2px;
    height: 30%;
    background-color: #feeaeb;
    right: 0;
    top: 0;
} 
.why-img {
    height: 80px;
    width: 80px;
    border: 1px solid #e6171736;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin:auto;
}
.why {
    text-align: center;
    padding: 0 27px;
}
.whyus-head {
    background: #e61717;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 23% 0;
}

.whyus-head h3 {
    color: #ffffff;
}

/*Why-Us-End*/

/*job-start*/
.j-text h5 {
    font-size: 24.56px;
    font-family: 'Bignoodle';
}

.j-text p {
    color: #000;
}

.j-img {
    height: 100px;
    width: 100px;
    border: 1px solid #a17754;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 21px;
}

.job {
    padding: 48px;
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
}
section.job-sec {
    border-bottom: 1px solid #dbdbdb;
}
section.support {
    background-color: #000000;
    padding: 24px;
    width: 82%;
    position: relative;
}


.sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sp-text h5 {
    color: #ffff;
    font-family: 'Probert';
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 29.39px;
    font-weight: 400;
    padding-left: 107px;
}

.get-sp ul {
    display: flex;
    align-items: center;
    gap: 23px;
}

.g-sp-txt p {
    font-size: 18px;
    line-height: 40px;
    color: #fff;
}

.g-sp-txt a {
    color: #fff;
    font-family: 'Probert';
    font-size: 27px;
    font-weight: 300;
}

.get-sp ul {
    margin: 0;
    position: relative;
    padding-left: 30px;
}
section.support:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 28.8%;
    background-color: #e61717;
    top: 0;
    right: 0;
}

.g-sp-txt {}

.get-sp {
    position: relative;
    z-index: 1;
}
.get-sp ul:after {content: "";position: absolute;height: 80px;width: 5px;background-color: #fff;left: 0;}
/*job-end*/

/*Gallery css Ends */
section.gallery {
    padding-top: 80px;
}
        .gallery-image img {
            border-radius: 0;
            margin: 10px;
        }

        .gallery-slider-txt ul li img {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 5%;
        }

        .gallery-txt {
            position: relative;
            top: -113px;
            margin-top: 37px;
        }
        .gallery-txt h4 {
            text-align: left;
            font-size: 54.56px;
            line-height: 81px;
            margin: -26px 0 30px 53px;
            color: #000;
            text-transform: uppercase;
        }        

        .gallery-txt img.slider-bg {
            position: absolute;
            width: 100%;
            height: 530px;
        }

        .gallery-slider-txt ul {
            background-color: #4dffc400;
            padding: 17px 0px;
            width: 90%;
        }

        .slider-holder {
    position: relative;
    top: 0px;
}

        .slider-holder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e61717d6;
    width: 90%;
    height: 300px;
    z-index: 0;
}

        .gallery-slider-txt p {
            font-size: 14px;
            line-height: 33px;
            color: white;
            margin: 5px 0 5px 20px;
        }
        
        button.slick-prev.slick-arrow {
            position: absolute;
            top: 252px;
            left: 176px;
        }

        button.slick-next.slick-arrow {
            position: absolute;
            top: 252px;
            right: 286px;
        }

        .slick-prev:before {
            content: '\f177';
            font-family: 'Font Awesome 5 Pro';
            font-size: 30px;
            color: #fff;
        }

        .slick-next:before {
            content: '\f178';
            font-family: 'Font Awesome 5 Pro';
            font-size: 30px;
            color: #fff;
        }
        

.gallery-slider-txt ul li {
    display: flex;
    justify-content: start;
    align-items: center;
}
.slides-numbers {
    position: absolute;
    z-index: 2;
    bottom: 0%;
    left: 7%;
}

.slides-numbers span {
    font-family: 'Probert';
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

span.active {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}
    /*Gallery css Ends */

    /* testi start */

section.people-say {
  background-image: url(../images/business-mission-back.png);
  width: 100%;
  height: 100%;
  padding-bottom: 10%;
  padding: 8% 0;
  position: relative;
}
section.people-say:after {
    content: "";
    background-image: url(../images/f-p-des.png);
    background-repeat: no-repeat;
    position: absolute;
    height: 292px;
    width: 333px;
    top: 26px;
}

.peopl-hed {
  text-align: center;
  margin-bottom: 5%;
}

.peopl-hed h3 {
  font-size: 118px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #414141;
}
.no-padding {
  padding: 0;
}
.testi-slider {
  position: relative;
}

.testi-slider:before {
    content: "";
    position: absolute;
    top: 0;
    left: -38px;
    width: 106%;
    height: 125%;
    background: #fff;
    box-shadow: 0 0 10px #0003;
    z-index: -1;
}
.peopl-hed p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 14px;
  width: 47%;
  margin: 0 auto;
}

.test-box p {
  font-weight: 400;
  font-size: 14px;
  color: #8a8a8a;
  width: 90%;
  margin-bottom: 5%;
}
.test-box ul p {
    font-family: 'Probert';
    font-size: 14.65px;
    line-height: 22.64px;
    font-weight: 600;
    color: #000;
    width: 100%;
    margin: 0;
    text-transform: uppercase;
}

.test-box ul li {
  font-size: 14px;
  font-weight: 400;
  color: #8a8a8a;
}

.test-box ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.test-box ul i {
  color: #f9a332;
}

section.people-say .slick-prev,
section.people-say .slick-next {
  bottom: 41%;
  top: unset;
}

section.people-say .slick-prev:before {
  content: "";
  opacity: 1;
  background-image: url(../images/left.png);
  background-size: cover;
  width: 55px;
  height: 18px;
  position: absolute;
  background-repeat: no-repeat;
    background-size: contain;
}


section.people-say .slick-next:before {
  content: "";
  opacity: 1;
  background-image: url(../images/right.png);
  background-size: cover;
  width: 55px;
  height: 18px;
  position: absolute;
   background-repeat: no-repeat;
    background-size: contain;
}

section.people-say .slick-next {
  right: -17%;
}
.testi-slider:after {
  content: "";
  position: absolute;
  bottom: -54px;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/testi2.png);
  z-index: -1;
}
section.people-say .slick-prev {
  left: -90%;
  z-index: 1;
  opacity: 1;
}

.test-box {
  margin-top: 12%;
  position: relative;
}

section.people-say .slick-slide {
  margin-left: 0;
}

.sldr-img2 {
    border-left: 7px solid #bf242c;
}

.test-box img {
  width: inherit;
  margin-bottom: 5%;
}
.test-box::before {
  content: "";
  position: absolute;
  background-image: url(../images/p-bg.png);
  width: 104px;
  height: 71px;
  background-repeat: no-repeat;
  z-index: -1;
  left: 30%;
  top: 80px;
}

.test-header{
    padding: 0px 0 30px;
}
.test-header h3 {
    font-size: 66.78px;
    line-height: 78.59px;
    color: #000000;
}
.test-header p {
    width: 50%;
    margin: auto;
}
/* testi end */
/* we are here for help */


button.btn img {
    background-color: #fff;
    padding: 5px;
}
.we-help-img {
    border: 6px solid #e61717;
    border-right: 0;
}
.we-help-head h4 { text-transform:uppercase;font-size: 41.9px;font-family: 'Probert';font-weight: 400;color: #000000;position: relative;}

.we-help-head {margin-bottom: 5%;}
.we-help-sec {
  background: #fff;
}

.we-help-sec form input {width: 100%;border: 1px solid #00000040;height: 55px;margin-bottom: 25px;padding: 10px;}

.we-help-sec form textarea {width: 100%;height: 150px;border: 1px solid #00000040;padding: 10px;margin-bottom: 25px;}

.we-help-sec form button {transition: .5s ease-in-out;background-color: #e61717;padding: 2px;display: flex;justify-content: end;height: 49px;align-items: center;color: #fff;text-transform: uppercase;gap: 16px;width: 24%;}

.we-help-sec form {padding: 0 30px 0 10px;}

.we-help-sec .row {align-items: center;}
.we-help-img img {
  width: 100%;
transition: .4s ease-in-out;}
/* we are here for help end */

/* foter start */
footer {
  background: url('../images/foter.jpg');
  width: 100%;
  background-size: cover;
  padding-top: 4%;
  background-attachment: fixed;
  background-color: #141516;
}
section.we-help {margin-bottom: -12%;padding-top: 4%;}

footer h3 {font-family: 'Probert';font-weight: 400;color: #fff;font-size: 20px;letter-spacing: .3px;margin-bottom: 20px;line-height: 40px;}

ul.contcs-lnks li a {font-size: 14px;color: #c1c1c3;}

ul.contcs-lnks li {margin-bottom: 6%;}

ul.contcs-lnks li i {font-size: 22px;color: #e61717;margin-right: 5%;width: 20px;display: inline-flex;align-items: center;justify-content: center;transition: .4s ease-in-out;}

.socils-fot ul {display: flex;gap: 4%;}

.socils-fot ul li {width: 40px;height: 40px;border: 1px solid #fff;display: flex;align-items: center;justify-content: center;border-radius: 50%;transition: .2s ease-in-out;}

.socils-fot ul li a {color: #fff;font-size: 19px;transition: .5s ease-in-out;}

.contct-fot {position: relative;}

.contct-fot:after {content: '';position: absolute;height: 83%;width: 1px;right: 12%;background: #ffffff3d;top: 6px;}

.quuic-fot ul a {font-size: 15.11px;color: #d2d2d2;transition: .2s ease-in-out;}

.quuic-fot ul li {margin-bottom: 5%;}
.srvs-fot ul a {font-size: 15.11px;color: #d2d2d2;transition: .2s ease-in-out;}

.srvs-fot ul li {margin-bottom: 5%;}

.quuic-fot {position: relative;}

.quuic-fot:after {content: '';
    position: absolute;
    height: 83%;
    width: 1px;
    right: 13%;
    background: #ffffff3d;
    top: 6px;}

.srvs-fot {position: relative;}

.srvs-fot:after {content: '';
    position: absolute;
    height: 103.1%;
    width: 1px;
    right: 26%;
    background: #ffffff3d;
    top: 6px;}

.newsltr-fot p {font-size: 13px;color: #d2d2d2;width: 60%;margin-bottom: 10px;}

.subscrbe {position: relative;}

.subscrbe input {width: 100%;border: none;border-radius: 0;height: 45px;padding: 15px;}

.subscrbe button {position: absolute;background: #e61717;border: none;color: #fff;width: 62px;right: 4px;top: 2px;height: 88%;border-radius: 0;font-size: 17px;}
.copy-rit {
    border-top: 1px solid #434343;
    padding: 18px 0;
    margin-top: 2%;
}

.copy-rit p {text-align: center;margin-bottom: 0;font-size: 13px;color: #ffffffba;}

.socils-fot ul li:hover {background: #c9a277;transform: scale(1.2);}

ul.contcs-lnks li:hover a {color: #c9a277;}

ul.contcs-lnks li:hover i {transform: scale(1.4);}

.quuic-fot ul li:hover a {color: #c9a277;margin-left: 3%;}

.srvs-fot ul li:hover a {color: #c9a277;margin-left: 2%;}

.socils-fot ul li:hover a {transform: rotate(360deg);}

.subscrbe button:hover i {transform: scale(1.3);}

.subscrbe button i {transition: .2s ease-in-out;}
.quuic-fot ul {
    column-count: 2;
}
/* foter end */

/*services-sec-start*/
.ser-head{
    text-align: center;
}
.ser-head p{
    width:70%;
    margin:0 auto 40px;
}
.ser-img img {
    height: 361px;
    width: 100%;
    object-fit: cover;
}
.ser-text h5 {
    font-family: 'Probert';
}

.ser-text a {
    transition: .5s ease-in-out;
    background-color: #e61717;
    padding: 2px;
    display: flex;
    justify-content: end;
    height: 49px;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    gap: 16px;
    width: 59%;
}

.ser-text a img {
    background-color: #fff;
    padding: 5px;
    object-fit: scale-down;
    height: 45px;
    width: 53px;
}
.ser-slide .slick-active {
    opacity: 1.5;
}
.ser-slide .slick-slide{
    margin: 0 5px;
}
.ser-text p {
    margin-bottom: 20px;
}
.ser-slide .slick-dots li button:before {
    font-family: 'slick';
    font-size: 9px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #e61717;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    -moz-osx-font-smoothing: grayscale;
}
.ser-slide .slick-dots li.slick-active button:before {
    opacity: 1.75;
    color: #e61717;
}
.ser-slide .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    border: 1px solid #b4b4b4;
    border-radius: 100%;
}
.ser-slide .slick-dots {
    position: absolute;
    bottom: -75px;

}
.ser-card{
    position: relative;
}

.service_hover{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: 0.5s ease-in-out;
    height: 0%;
    overflow: hidden;
}
.ser-card:hover .service_hover{
    height: 100%;
    overflow: visible;
    transition: 0.5s ease-in-out;
}
.service_hover img {
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 3;
}
.service_hover_content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,e61717+100&0+0,0.75+100 */
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(230,23,23,0.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding: 20px;
}
.service_hover_content a {
    color: #fff;
    padding: 0;
    background: transparent;
    height: auto;
    width: auto;
    line-height: 1.2;
}
.service_hover_content h4 {
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}
.service_hover_content p{
    font-weight: 400;
    line-height: 1.5;
}
/*services-sec-end*/
/*inner*/
section.main_slider.inner:before {
    z-index: 2;
    content: "";
    position: absolute;
    height: 2px;
    width: 50%;
    background-color: #e72d2e45;
    bottom: 0%;
} 
section.main_slider.inner:after {
    content: "";
    position: absolute;
    background-image: url(../images/banner-bg.jpg);
    height: 791px;
    width: 50%;
    background-size: cover;
    top: -13%;
    right: 0;
    z-index: -1;
}
.banner-text.inner {
    position: absolute;
    background: #fff;
    bottom: -8%;
    padding: 65px 0;
    width: 43%;
}
.ab-content.inner p{
    width: 100%;
}

/*service-detail-start*/
.ser-det-text h5 {
    font-size:33px;
    font-family: 'Probert';
    line-height: 60.42px;
    color: #000;
}
.ser-det-text p {
    color: #000;
    margin: 20px 0;
}
section.service-detail {
    padding: 8% 0;
}
.ser-det-text {
    padding-top: 30px;
}
/*testimonial*/


.ts-page {
    display: flex;
    gap: 28px;
}

.ts-page .sldr-img2 img {
    height: 324px;
    width: 878px;
    object-fit: cover;
}

/*contact */
.contact-header h1{
        font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 65.81px;
    line-height: 117.47px;
    text-transform: uppercase;
    text-align: center;
}
.contact-header {
    padding: 0 0 50px;
}
.contact-form form {
    position: relative;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-group::after {
    content: '';
    height: 53px;
    width: 10px;
    position: absolute;
    left: 40px;
    top: 5px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-form form input.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 55px;
    border: 2px solid #c6c6c6;
    line-height: 0;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    display: flex;
    border-radius: inherit;
    width: 100%;
}

.contact-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 8px;
    height: 47px;
    background-repeat: no-repeat;
    left: 40px;
    top: 5px;
}

.contact-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 50px;
    height: 50px;
}



.contact-form form input.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;

}

.contact-form form textarea.form-control {
    font-size: 15px;
    padding-left: 55px;
    padding-top: 13px;
    border: 2px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    resize: none;
    background-color: transparent;
    margin-top: 20px;
    color: #000000;
    border-radius: inherit;
    width: 100%;
}

.contact-form .email {
    padding: 0;
}

.contact-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}


.contact-form form textarea.form-control::placeholder {
    color: #909091;
}



.contact-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909091;
}

.contact-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-form :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-form :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 2px solid #e61717;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: #e61717;
}

.cicle-icon img {
    margin: 0 auto;

}

.contact-info {
    background: transparent;
    width: 100%;
    display: inline-block;
    padding: 14px;
    margin-bottom: 10px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 10px;
    border: 1px solid #c6c6c6;
    
}


.contact-main-sec h4 {
    /* margin: 0; */
   font-family: 'Montserrat', sans-serif;
  font-weight: 500;
    font-size: 24.43px;
    line-height: 40.72px;
    text-transform: uppercase;
}

.contact-main-sec p span {
    display: block;
}

.contact-main-sec p {
    font-size: 16px;
    color: #000;
    margin-bottom: -5%;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 19.44px;
    color: #000000;
    font-weight: 600;
    line-height: 30px;
    font-family: 'Montserrat', sans-serif;
}

.contact_text {
    padding-top: 0px;
}

.contact_text p {
    font-size: 16px;
    line-height: 25px;
    color: #8b8b8b;
    padding-top: 0px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.contact_text p a {
    font-size: 16px;
    color: #8b8b8b;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    margin-top: 3px;
    display: block;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}


.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #8b8b8b;
}

.contact_text p a.email-text {
    font-size: 15px;
    color: #8b8b8b;
    font-family: 'Montserrat', sans-serif;
}

.contact_text p a.email-text:hover {
    color: #8b8b8b;
}

.contact-us {
    padding: 6% 0;
}

.contact-head {
    text-align: center;
}

.contact-head h2 {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.lg-btn {
    width: 100%;
}

.cp {
    font-size: 17px;
    line-height: 27px;
}

.contact_heading {
    margin-bottom: 30px;
}

.contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-side-bar {
    padding-top: 43px;
}

.contact-main-sec {
     padding: 10% 0 80px;
}

.contact-main-sec .them-btn-1 {
    margin-top: 20px;
    border: none;
    padding: 12px 20px;
    background-color: #ff0000;
    color: white;
    border-radius: 25px;
}

.b-img img {
    border-radius: 20px;
}

.contact-form .form-group i {
    position: absolute;
    top: 20px;
    left: 13px;
    font-size: 20px;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color:#8f8f8f;
}

.contact-form {
    margin-top: 23px;
}


.contact-form .head-book.btnn {
    width: 20%;
    padding: 0;
    padding-left: 14px;
    margin-top: 20px;
    transition: .5s ease-in-out;
    background-color: #e61717;
    padding: 2px;
    display: flex;
    justify-content: end;
    height: 49px;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    gap: 16px;
    border: 0;
}

button.theme_btn img {
    width: 30%;
}
button.head-book.btnn img {
    background-color: #fff;
    padding: 5px;
}
footer.inner-footer {
    padding-top: 4%;
}
/*contact end*/
/* search box css */

.nav-tabs .nav-link.active:after {
    content: "";
    position: absolute;
    background-image: url(../images/des.png);
    height: 50px;
    width: 122px;
    background-repeat: no-repeat;
    left: -97%;
}
.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    font-size: 14px;
    font-family: 'Probert';
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #ffffff;
    background-color: #fff0;
    border-color: #dee2e600 #dee2e600 #fff0;
}
.nav-link {
    color: #ffffff;
}
.nav-tabs .nav-link:hover{
    color: #fff;
    border: 0;
}
.nav-tabs{
    border: 0;
}
section.main_slider {
    position: relative;
}
section.main_slider:after {
    content: "";
    position: absolute;
    background-image: url(../images/banner-bg.jpg);
    height: 903px;
    width: 50%;
    background-size: cover;
    top: -13%;
    right: 0;
    z-index: -1;
}
.top-shipping ul li {
    margin-right: 15px;
}

.top-shipping ul {
    align-items: baseline !important;
}

body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0;
    font-size: 50px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font: 18px;
    opacity: 1 !important;
    width: 50px;
    height: 50px;
}

.close:hover {
    background: #e21d1a;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000b0;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.search-box.search-elem .inner {
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.search-box.search-elem label {
    color: white;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.search-box.search-elem button.submit {
    outline: none;
    position: absolute;
    top: 0;
    right: 15px;
    height: 70px;
    color: #ffffff;
    width: 171px;
    height: 55px;
    background: #000000;
    font-family: 'Poppins';
    font-size: 22px;
    cursor: pointer;
    border: 0;
}

.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: linear-gradient(to top, #e70e0e 0%, #f66565 100%);
    display: inline-block;
}

.search-box.search-elem input[type=text] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 300;
    border: none;
    border-bottom: solid 2px #e21d1a;
    transition: border 0.3s;
    border-radius: 0;
}

.search-box.search-elem input[type=text]:focus {
    border-bottom: solid 2px #55cd6c;
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: 'Poppins';
    color: #999;
    transition: all 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.search-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    padding: 0 10px;
    display: inline-block;
    color: white;
}


.about_page{
    position: relative;
}
.about_page:before{
    content: '';
display: none;
}

/* .search-btn:hover {
  color: #00A896;
} */


/* end search box css */

/*Media Query Start*/
@media only screen and (min-width: 1366px) and (max-width: 1920px){}

@media only screen and (min-width: 1291px) and (max-width: 1365px){}

@media only screen and (min-width: 992px) and (max-width: 1290px){
    html {
    overflow-x: hidden !important;
}
.menuSec ul li a {
    padding: 0 12px;
}
.header-btn a {
    gap: 5px;
    width: 100%;
    font-size: 12px;
}
h1 {
    font-size: 57.77px;
}
section.main_slider:after {
    height: 800px;
}
.ab-content h4 {
    font-size: 37px;
}
section.about-us {
    padding: 25% 0 0;
}
.why {
    text-align: center;
    padding: 0 10px;
}
.why-txt p {
    font-size: 12px;
}
.why-img {
    height: 60px;
    width: 60px;
}
section.support {
    padding: 10px;
    width: 100%;
}
.sp-text h5 {
    font-size: 24px;
    padding-left: 0;
}
section.support:after {
    width: 36.8%;
}
.gallery-txt h4 {
    font-size: 40px;
    margin: 0 0 10px 0;
}
.slider-holder:before {
    width: 100%;
    height: 110%;
}
.gallery button.slick-next.slick-arrow {
    position: absolute;
    top: auto;
    right: 216px;
    bottom: 0;
}
.gallery button.slick-prev.slick-arrow {
    position: absolute;
    top: auto;
    left: 206px;
    bottom: 0;
}
.test-box {
    margin-top: 0;
    padding: 20px;
}
.we-help-head h4 {
    font-size: 36px;

}
.we-help-sec form input {
    margin-bottom: 0;
}
.we-help-sec textarea.wpcf7-form-control.wpcf7-textarea {
    padding: 10px 10px 0;
    margin: 18px 0;
}
.we-help-sec form button {
    width: 35%;
}
footer .subscrbe input {
    width: 300px !important;
}
section.ser-sec .col-md-3 {
    width: 50%;
}
.banner-text.inner h1 {
    font-size: 50px !important;
}
.testimonial-page {
    padding: 200px 0 50px;
}

.testimonial-page .col-md-6 {
    width: 100%;
}
.contact-form .head-book.btnn {
    width: 35% !important;
}
.cicle-icon i {
    height: 60px;
    width: 60px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px){
        html {
    overflow-x: hidden !important;
}
.header-logo h2 {
    font-size: 14px !important;
}
.menuSec ul li a {
    padding: 0 12px;
}
.header-btn a {
    gap: 5px;
    width: 140%;
    font-size: 12px;
    margin-left: -10px;
}
.banner-social {
    right: 30px;
    bottom: -13%;
}
.banner .nav {
  top: 45%;
        right: 0;
}
h1 {
    font-size: 42px;
    line-height: 60px;
}
section.main_slider:after {
        height: 590px !important;
        width: 61% !important;
        top: -100px !important;
}
.ab-content {
    padding-left: 20px;
}
.ab-content h4 {
    font-size: 30px;
}
.ab-content p {
    margin: 10px 0;
    padding-right: 10px;
}
section.about-us {
    padding: 25% 0 0;
}
.whyus-head h3 {
    font-size: 40px;
}
.why h5 {
    font-size: 13px;
    line-height: 15px;
    margin: 5px 0;
}
.why {
    text-align: center;
    padding: 0 10px;
}
.why-txt p {
    font-size: 12px;
}
.why-img {
    height: 50px;
    width: 50px;
}
.ser-img img {
    height: 270px;
}
section.support {
    padding: 10px;
    width: 100%;
}
.ser-text p {
    font-size: 12px;
}
.ser-text a {
        width: fit-content;
        padding: 6px 5px 6px 20px;
}
section.main_slider.inner::after {
    height: 500px !important;
}
.sp-text h5 {
    font-size: 18px;
    padding-left: 0;
}
.g-sp-txt a {
    font-size: 17px;
}
.get-sp ul {
    margin: 0;
    padding-left: 10px;
    gap: 10px;
}
section.support:after {
    width: 34%;
}
.get-sp ul:after {
    left: -10px;
}
.gallery-txt h4 {
    font-size: 40px;
    margin: 0 0 10px 0;
}
.slider-holder:before {
    width: 100%;
    height: 110%;
}
.gallery button.slick-next.slick-arrow {
    position: absolute;
    top: auto;
    right: 216px;
    bottom: 0;
}
.gallery button.slick-prev.slick-arrow {
    position: absolute;
    top: auto;
    left: 206px;
    bottom: 0;
}
.gallery-image img {
    border-radius: 0;
    margin: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.gallery-txt {
    position: relative;
    top: 0;
    margin-top: 37px;
}
section.gallery {
    padding-top: 80px;
    padding-bottom: 70px;
}
.gallery-txt img.slider-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    /* position: relative; */
}
.test-header h3 {
    font-size: 40px;
    line-height: 50px;
}
.test-box {
    margin-top: 0;
    padding: 20px;
}
.testi-slider:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.test-box ul p {
    font-size: 13px;
}
.sldr-img2 img {
    height: 100%;
    object-fit: cover;
}
.sldr-img2 {
    border-left: 7px solid #bf242c;
    height: 100%;
}
.sldr-img3 img {
    height: 270px;
    object-fit: cover;
}

.sldr-img1 img {
    height: 270px;
    object-fit: cover;
}
.test-box p {
    font-size: 12px;
    width: 100%;
    margin-bottom: 10px;
    text-align: justify;
    line-height: 20px;
}
.we-help-head h4 {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 30px;

}
.we-help-head {
    margin-bottom: 0;
}
.we-help-sec form input {
          margin: 5px 0;
}
.we-help-sec textarea.wpcf7-form-control.wpcf7-textarea {
padding: 10px 10px 0;
    margin: 5px 0;
    height: 130px;
}
.we-help-sec form button {
    width: 55%;
}
footer .subscrbe input {
    width: 340px !important;
}
.newsltr-fot p {
    width: 100%;
}
section.ser-sec .col-md-3 {
    width: 50%;
}
.banner-text.inner h1 {
    font-size: 40px !important;
}
.testimonial-page {
    padding: 200px 0 50px;
}

.testimonial-page .col-md-6 {
    width: 100%;
}
.testimonial-page .sldr-img2 img {
    height: 250px;
}
.contact-form .head-book.btnn {
 width: fit-content;
        padding: 5px 5px 5px 15px;
}
.cicle-icon i {
    height: 60px;
    width: 60px;
}
.contact-side-bar {
    padding-top: 0;
}
.contact-form {
        margin-top: 0;
        margin-bottom: 80px;
}
.contact-main-sec .col-md-6 {
    width: 100%;
}
.contact-main-sec {
    padding:80px 0;
}
.contact-form form .col-md-6 {
    width: 50%;
}
.inner .bann-img {
    width: 80%;
}
.bann-img {
    width: 85%;
}
}

@media only screen and (min-width: 520px) and (max-width: 767px){}

@media only screen and (min-width: 300px) and (max-width: 519px){
    html {
    overflow-x: hidden;
}
.header-logo {
    text-align: center;
    margin-bottom: 10px;
}
.header-btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.main_slider:after {
        height: 100% !important;
        width: 100% !important;
        top: 0 !important;
        right: 0 !important;
        z-index: -1 !important;
}
.banner-text {
        position: relative !important;
        background: #fff !important;
        bottom: 0 !important;
        padding: 20px 10px !important;
        width: 100% !important;
        margin-left: 0px !important;
}
.banner-text h1 {
        position: relative;
        font-size: 40px;
        line-height: 50px;
        margin: 0 !important;
}
.banner-text p {
    width: 100%;
}
.banner .nav {
    position: relative;
    right: 0;
    top: 0;
}
.ab-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.ab-content {
    padding-left: 10px;
    margin-top: 30px;
}
.ab-content h4 {
    font-size: 28px;
}
.ab-content p {
    width: 100%;
    margin: 10px 0;
    padding-right: 0;
    font-size: 12px;
}
.about_btn.text-end a {
    border: 1px solid #000;
    padding: 3px 5px !important;
}
.whyus-head {
    padding: 6% 0;
}
.why-content ul {
    display: grid;
    gap: 20px;
    margin: 13px 0;
}
section.whyus.pb-8 {
    padding-bottom: 40px;
}
.ser-head h3 {
    font-size: 30px;
}
.ser-img img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
.sp {
    display: block;
}
section.support {
    padding: 10px;
    width: 100%;
}
section.support:after{
    display:none;
}
.sp-text h5 {
    font-size: 18px;
    font-weight: 400;
    padding-left: 0;
    text-align: center;
}
.g-sp-txt a {
    font-size: 20px;
}
.get-sp ul {
    margin: 0;
    padding-left: 0;
    gap: 10px;
}
.get-sp ul:after{
    display:none;
}
section.gallery {
    padding: 50px 0 50px;
}
    .gallery-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin: 5px auto;
    }
    .gallery-txt {
    position: relative;
    top: 0;
    margin-top: 50px;
}
.gallery-txt h4 {
    font-size: 30px;
    line-height: 40px;
}
.gallery-txt img.slider-bg {
    position: relative;
    width: 100%;
    height: 100%;
}
.sldr-img2 img {
    width: 100%;
    object-fit: cover;
}
.slider-holder:before {
    width: 100%;
    height: 100%;
}
.gallery button.slick-prev.slick-arrow {
    top: auto;
    bottom: 0;
    left: auto;
    right: 50px;
}
.gallery button.slick-next.slick-arrow {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 120px;
    left: auto;
}
section.people-say {
    padding: 0 0 50px !important;
}
section.people-say:after{
    display:none;
}
.test-box {
    margin-top: 12%;
    padding: 10px;
}
.test-header h3 {
    font-size: 40px;
    line-height: 50px;
    color: #000000;
}
.sldr-img1 {
    display: none;
}

.sldr-img3 {
    display: none;
}
.testi-slider:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.we-help-head h4 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 30px;
}
.we-help-sec form input {
 margin:5px 0;
}
.we-help-sec textarea.wpcf7-form-control.wpcf7-textarea {
    padding: 10px 10px 0;
    margin: 5px 0;
    height: 120px;
}
.we-help-sec form {
    padding: 0;
}
.we-help-sec form button {
    width: fit-content;
}
.btn{
      width: fit-content !important;
}
section.we-help {
    margin-bottom: 0;
    padding-top: 4%;
}
.quuic-fot:after{
    display:none;
}
.contct-fot:after{
    display:none;
}
.newsltr-fot p {
    width: 100%;
}
footer .subscrbe input {
    width: 100% !important;
}
.header-btn a {
    width: fit-content;
    padding: 10px 5px 10px 20px;
}
section.service-detail {
    padding: 8% 14px;
}
.testimonial-page .test-box {
    padding: 0;
    margin: 0;
}
.testimonial-page .ts-page {
    display: flex;
    gap: 13px;
    align-items: center;
}
.contact-form .head-book.btnn {
    width: fit-content;
    padding: 5px 5px 5px 15px;
}
.contact-info {
    justify-content: flex-start;
    gap: 10px;
}
}
/*Media Query End*/



.page-id-7 footer {
    padding-top: 17% !important;
}