@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=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

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

@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 {
    font-family: 'Headlines';
    src: url(../font/Headlines-SemiBold.otf);
}

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;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.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;
}

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

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
    font-family: "Montserrat", sans-serif;
}

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;
}

p {
    font-weight: 500;
    line-height: 25px;
    margin: 0;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: #000;
    opacity: 80%;
}

h1 {
    font-family: 'Headlines';
    font-size: 108px;
    line-height: 1.1;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'Headlines';
    font-size: 80px;
    line-height: 1.1;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: 'Headlines';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-family: 'Headlines';
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'Headlines';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'Headlines';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

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

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

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

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

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

/*---------------------------------------------------- Tabs Section Start ----------------------------------------------------------- */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/*---------------------------------------------------- Tabs Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Carousel Section 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 [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;
}

/*---------------------------------------------------- Carousel Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Button Section Start ----------------------------------------------------------- */

.theme_btn {
    padding: 16px 32px;
    border: unset;
    border-radius: 6px;
    color: #ffffff;
    z-index: 1;
    background: transparent;
    position: relative;
    font-size: 17px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    clip-path: polygon(11% 0%, 70% 0%, 100% 0, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 34%);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    justify-content: center;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 6px;
    background-color: #19add2;
    z-index: -1;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    clip-path: polygon(11% 0%, 70% 0%, 100% 0, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 34%);
}

.theme_btn:hover {
    color: #fff;
}

.theme_btn:hover::before {
    width: 100%;
}

.theme_btn:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: url(../images/btn-border.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

/*---------------------------------------------------- Button Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 15px 0;
    border-bottom: 1px solid #ffffff40;
}

.menuSec img {
    margin: 0;
}

.menuSec a.theme_btn {
    background: #1674e6;
}

.menuSec a.theme_btn:after {
    background-image: unset;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    margin-left: 70px;
}

.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;
    color: #fff;
    padding: 10px 28px;
    font-size: 15px;
    font-style: italic;
}

.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: #1674e6;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: -60px;
    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 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: 160px;
    top: 0;
    width: 120px;
}

.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;
}

.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;
}



/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */

.banner-sec {
    position: relative;
    padding: 100px 0 160px;
    margin-bottom: 80px;
}

.banner-sec:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 190%;
    background: #081729;
    z-index: -1;
}

.banner-sec.iner {
    padding: 60px 0 140px;
}

.banner-sec.iner:after {
    background-position: center;
    height: 77%;
}

.banner-sec.iner .baner-headng-main {
    background-size: cover;
    border-radius: 10px;
}

.banner-sec.iner .baner-headng-main h1 {
    font-size: 80px;
}

.banner-sec:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
/*     background-image: url(../images/banner.jpg); */
    height: 65%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}

.baner-headng-main {
    background-image: url(../images/baner-txt-back.png);
    background-repeat: no-repeat;
    background-size: auto;
    padding: 60px 60px;
    width: 100%;
}

.baner-headng-main h1 {
    font-style: italic;
    margin-bottom: 22px;
}

.banner-text p {
    color: #fff;
    opacity: 70%;
    font-size: 15px;
    font-weight: 400;
}

.banner-text h4 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1674e6;
    font-style: italic;
}




/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

a.top-navigator {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 80px;
    font-size: 18px;
    color: white;
    background: #1674e6;
    font-family: "FontAwesome";
}

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

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

footer {
    padding: 80px 0 0 0;
    position: relative;
    z-index: 0;
    background: #03060b;
}

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

.foot-bottom {
    background: #0e488e;
    margin-top: 40px;
    padding: 20px 0px;
}

footer h5 {
    position: relative;
    font-size: 25px;
    color: #fff;
    padding-left: 23px;
    text-transform: capitalize;
    line-height: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: "Oswald", sans-serif;
}

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

footer p {
    color: #fff;
    line-height: 27px;
    font-weight: 300;
    padding-right: 40px;
    opacity: 60%;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff66;
    background: transparent;
    border: 1px solid #ffffff66;
    border-radius: 50%;
    font-size: 14px;
    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: #1674e6;
    color: #fff;
    border-color: #1674e6;
    opacity: 1;
}

.quick-links a {
    font-size: 14px;
    font-family: "Montserrat";
    color: #fff;
    line-height: 31px;
    opacity: 60%;
}

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

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

.foot-number:hover {
    color: var(--primary);
}

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

a.req-btn:hover {
    background: var(--primary);
}

.foot-bottom p {
    text-align: end;
    opacity: 60%;
}

footer .visa {
    position: relative;
    margin-top: 30px;
}

footer ul.quick-links {
    margin-left: 4px;
}

footer ul.ft-connect {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin: 38px 0px 0px;
}

footer ul.ft-connect li a {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer ul.ft-connect li a span {
    color: #fff;
    opacity: 60%;
    font-family: "Montserrat";
    font-size: 13px;
}

footer ul.ft-connect li a img {
    width: 18px;
}

.quick-site-main-link {
    padding-left: 40px;
}

.serv-site-main-link {
    margin-left: -10px;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */


/*---------------------------------------------------- Testimonial Section Start ------------------------------------------------------------- */

.test-txt-top {
    text-align: center;
    margin-bottom: 5px;
}

.testimonials .headtext h2 span {
    color: #003a37;
}

.testimonials .headtext p {
    color: #003a37;
    font-weight: 500;
}

.testimonials .item .box {
    display: flex;
    box-shadow: 6px 8px 20px 7px #44444417;
    box-sizing: border-box;
    padding: 40px 30px 30px 10px;
    position: relative;
    border-radius: 20px;
    background: #fff;
    margin: 40px 10px;
}

.testimonials .item .box .author {
    width: 60%;
    padding: 0px 10px;
    position: relative;
}

.testimonials .item .box .author-text {
    position: relative;
    padding-top: 18px;
    padding-bottom: 20px;
    transition: 2s;
    margin-bottom: 10px;
}

.testimonials .item .box .author-text h4 {
    transition: 1s;
}

.testimonials .item .box .author-text span {
    font-weight: 500;
    color: #1e2024;
    font-size: 14px;
    transition: 1s;
    font-family: 'Montserrat';
}

.testimonials .item .box p {
    position: relative;
    transition: 1s;
    display: inline;
    color: #000;
    font-family: "Roboto", sans-serif;
    line-height: 30px;
    font-weight: 400;
    opacity: 80%;
}

.testimonials .item .box .des {
    padding-left: 10px;
    padding-bottom: 30px;
}

.testimonials .item .box p:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 14px;
    left: -23px;
    top: -4px;
    background-image: url(../images/topQuote.png);
    background-size: 100% 100%;
    transition: 2s;
    opacity: 100%;
}

.testimonials .item .box p:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 14px;
    right: -20px;
    bottom: -1px;
    background-image: url(../images/btm-quote.png);
    background-size: 100% 100%;
    transition: 2s;
}

.testimonials .item .box:hover p::before {
    filter: brightness(0) invert(1);
}

.testimonials .item .box:before {
    position: absolute;
    content: "";
    width: 12%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 14px;
    transition: 1s;
    background-color: #1674e6;
}

.testimonials .item .box:hover p {
    color: #fff;
}

.testimonials .item .box .author img {
    transition: 2s;
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
}

.testimonials .item .box:hover .author-text {
    color: #fff;
}

.testimonials .item .box:hover .author-text span {
    color: #fff;
}

.testimonials .item .box:hover .author-text h4 {
    color: #fff;
}

.testimonials .item .box:hover:before {
    width: 100%;
}

.heading.text-center p {
    width: 58%;
    margin: 0 auto;
    color: #000;
    opacity: 80%;
    margin-top: 10px;
}

.testimonials {
    position: relative;
    margin-bottom: 80px;
}

.clientsslid .slick-active {
    opacity: 1.5;
}

.testimonials .heading-services h2 {
    color: #fff;
}

.testimonials .heading-services p {
    color: #ffffff7a;
}

.testimonials .item .box:hover p:after {
    filter: brightness(0) invert(1);
}

.heading-services {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials_sldier .slick-slide {
    margin: 0px 10px;
}

.testimonials_sldier .slick-active {
    opacity: 1;
}

.test-txt-top h3 {
    font-size: 90px;
    line-height: 80px;
    color: #fff;
}

.test-txt-top p {
    font-size: 15px;
    width: 50%;
    margin: 0 auto;
    color: #fff;
    font-family: 'Roboto';
    line-height: 26px;
}

/* INNER PAGE START  */

.testimonials .item.inr .box:before {
    background: unset;
    display: none;
}

.item.inr .box:hover .author-text h4 {
    color: #000;
}

.item.inr .box:hover .author-text span {
    color: #1e2024;
}

.testimonials .item.inr .box:hover p {
    color: unset;
}

.testimonials .item.inr .box:hover p::before {
    filter: unset;
}

.testimonials .item.inr .box:hover p::after {
    filter: unset;
}

.testimonials .item.inr .box {
    margin: 0 20px 0 0px;
    gap: 10px;
    padding: 20px 30px 30px 10px;
}

/*---------------------------------------------------- Testimonial Section End ------------------------------------------------------------- */

/*---------------------------------------------------- About Section Start ------------------------------------------------------------- */

section.about-sec {
    margin-bottom: 100px;
}

.about-text p {
    width: 93%;
    margin-bottom: 35px;
}

.about-text ul {
    column-count: 2;
    width: 80%;
}

.counter-about-txt {
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    /* box-shadow: 0px 18px 35px 0px rgb(20 20 20); */
    box-shadow: 0px 18px 35px 0px rgba(20, 20, 20, 0.09);
    padding: 26px 60px 20px;
    width: max-content;
    margin-bottom: 20px;
}

.counter-about-txt span {
    font-size: 46px;
    font-family: 'Montserrat';
    color: #1674e6;
    font-weight: 600;
}

.counter-about-txt p {
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    margin: unset;
    margin-top: 5px;
}

.about-text h2 {
    margin-bottom: 6px;
}

.about-img {
    position: relative;
    background: #1674e6;
    padding: 40px 40px 45px;
    border-radius: 30px;
}

.about-img-cover:before {
    background-image: url(../images/abt-border.png);
    width: 100%;
    height: 413px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-cover img {
    clip-path: polygon(0 0, 70% 0%, 100% 0, 100% 70%, 100% 100%, 39.7% 100%, 0 55%, 0% 30%);
    width: 100%;
    height: 408px;
    border-radius: 30px;
    object-fit: cover;
}

.about-img-cover {
    position: relative;
    padding: 3px 2px 3px 5px;
    overflow: hidden;
}

.about-counter {
    position: absolute;
    bottom: 10%;
    left: 34px;
}

.counter-about {
    font-size: 58px;
    color: #fff;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 18px;
}

.about-counter p {
    color: #fff;
    opacity: 100%;
}

.about-text {
    margin-top: 15px;
}

/*---------------------------------------------------- About Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Services Section Start ------------------------------------------------------------- */

.serv-head {
    text-align: center;
    margin-bottom: 50px;
}

.service-sec {
    margin-bottom: 100px;
    position: relative;
    padding-bottom: 160px;
    background: #081728;
    overflow: hidden;
    z-index: 1;
}

.serv-head p {
    width: 58%;
    margin: 14px auto 0;
    font-size: 14.5px;
}

.serv-main {
    padding: 40px 30px 30px;
    clip-path: polygon(0 0, 84% 0%, 100% 20%, 100% 70%, 100% 100%, 0 100%, 0 43%, 0% 30%);
    border-radius: 23px;
    box-shadow: 0px 34px 81px 0px rgb(0 0 0 / 39%);
    background: #fff;
    position: relative;
}

.serv-text h4 {
    margin-bottom: 10px;
    font-size: 32px;
}

.serv-slider .slick-slide {
    opacity: 1;
    margin: 20px 20px;
}

.serv-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.7s all;
}

.serv-main:hover .serv-image img {
    transform: scale(1.3);
    filter: brightness(0.5);
}

.serv-image {
    overflow: hidden;
    clip-path: polygon(0 0, 82% 0, 100% 0, 100% 72%, 74% 100%, 0 100%, 0 54%, 0% 30%);
    border-radius: 25px;
}

.serv-text {
    height: 225px;
}

.serv-main a {
    width: 43px;
    height: 43px;
    background: #1674e6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 21px;
    bottom: 30px;
}

.serv-main a i {
    color: #fff;
    transform: rotate(45deg);
    font-size: 19px;
}

.service-sec:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    background: #fff;
    width: 125%;
    height: 140%;
    clip-path: circle(73% at 44% -6%);
    top: -43%;
    z-index: -1;
}

.serv-slider button.slick-prev:before, button.slick-next:before {
    border: 1px solid #ffffff73;
    content: '\f054';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    opacity: 1 !important;
    color: #ffffff73;
    font-family: 'FontAwesome';
    transition: 0.5s all;
}

.serv-slider button.slick-prev:before {
    content: '\f053'
}

.serv-slider button.slick-prev {
    top: 105%;
    left: 35%;
}

.serv-slider button.slick-next {
    top: 105%;
    right: 35%;
    z-index: 5;
}

.serv-slider button.slick-prev:hover:before, button.slick-next:hover:before {
    background: #1674e6;
    border-color: #1674e6;
    color: #fff;
}

/*---------------------------------------------------- Services Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Why Choose Section Start ------------------------------------------------------------- */

.whychose-main img {
    width: 90%;
    height: 520px;
    object-fit: cover;
    border-radius: 50px;
    clip-path: polygon(0 0, 70% 0%, 100% 0, 100% 70%, 100% 100%, 22% 100%, 0 54%, 0% 30%);
}

.whychose-main h2 {
    margin-bottom: 30px;
    margin-left: 10px;
}

.whychose-text {
    width: 48%;
    padding: 130px 100px 70px 65px;
    background: #f2f2f2;
    border-radius: 50px;
    clip-path: polygon(0 0, 73% 0%, 100% 38%, 100% 70%, 100% 100%, 0 100%, 0 43%, 0% 30%);
    margin: 0 0 0 auto;
    position: absolute;
    top: -20px;
    right: 8%;
}

.whychose-check {
    width: 35px;
    height: 31px;
    background: #dce5f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.whychose-check img {
    width: auto;
    height: auto;
    border-radius: unset;
}

.whychoose-sec {
    padding: 70px 0 100px;
    position: relative;
}

.whychose-text h3 {
    font-size: 45px;
    color: #1674e6;
    margin-bottom: 10px;
}

.whychose-text p {
    opacity: unset;
    margin-bottom: 25px;
}

.whychose-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.whychse-txt-point h6 {
    font-size: 22px;
    color: #000;
}

.whychse-txt-point p {
    opacity: 70%;
    margin: unset;
    line-height: 23px;
    margin-top: 4px;
}

/*---------------------------------------------------- Why Choose Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Request Section Start ------------------------------------------------------------- */

.request-sec {
    position: relative;
    padding: 120px 0;
    z-index: 0;
    margin-bottom: 90px;
}

.request-sec:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #081729;
    z-index: -1;
}

.request-sec:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/request-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: bottom;
    filter: grayscale(1);
    z-index: -1;
}

.request-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.request-img img {
    width: 100%;
    height: 395px;
    object-fit: cover;
}

.request-heading {
    position: relative;
    z-index: 1;
}

.request-sec .row {
    align-items: end;
}

.request-form {
    position: relative;
    z-index: 1;
    background: #1674e6;
    padding: 50px 42px;
    border-radius: 30px;
    margin-right: 30px;
    clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 70%, 100% 100%, 0 100%, 0 54%, 0% 30%);
}

.request-form .theme_btn:after {
    background-size: cover;
    border-right: 1px solid #fff;
    border-radius: 10px;
}

.request-form input, .request-form select, .request-form input, .request-form textarea {
    color: #fff;
    width: 100%;
    height: 52px;
    padding: 10px 15px;
    border: 1px solid #ffffff66;
    border-radius: 10px;
    background-color: transparent;
    margin-bottom: 15px;
}

.request-form input::placeholder {
    font-size: 13px;
    color: #ffffffba;
}

.request-heading h1 {
    font-style: italic;
}

.request-form textarea {
    height: 110px;
    resize: none;
}

.request-form textarea::placeholder {
    color: #fff;
}

.request-form select {
    font-size: 13px;
    color: #ffffffba;
}

.request-form textarea::placeholder {
    font-size: 13px;
    color: #ffffffba;
}

.request-form button {
    margin-left: 10px;
}


/*---------------------------------------------------- Request Section End ------------------------------------------------------------- */

/*-------------------------------------------------------- Contact Us Page Start --------------------------------------------------------------------*/

.contact-us {
    margin-bottom: 100px;
}

.contact-head {
    text-align: center;
    margin-bottom: 50px;
}

.contact-head h2 {
    text-transform: capitalize;
    font-size: 60px;
}

.cntct-head h2 {
    margin: 0 0 20px;
    font-size: 50px;
    text-transform: capitalize;
}

.contact-input {
    position: relative;
}

.contact-input::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 47px;
    top: 0px;
    left: 53px;
    background: url(../images/contact-input.png) no-repeat;
    background-size: cover;
}

.contact-input input {
    width: 100%;
    height: 50px;
    border: 1px solid #c1c1c1;
    margin-bottom: 20px;
    padding: 10px 20px 10px 80px;
    background: transparent;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #000;
    border-radius: 5px;
}

.contact-input textarea {
    width: 100%;
    height: 140px;
    border: 1px solid #c1c1c1;
    margin-bottom: 20px;
    padding: 12px 20px 12px 20px;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #000;
    display: block;
    align-content: end;
    border-radius: 5px;
    resize: none;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #909091;
}

.contact-input i {
    position: absolute;
    top: 16px;
    left: 20px;
    color: #1674e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.send-btn {
    background-color: var(--lblue);
    padding: 0 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    text-transform: uppercase;
    width: 22%;
    border: 0;
}

.send-btn .image {
    background: #fffbff;
    padding: 12px 12px;
    border: 2px solid #e1e1e1;
}

.send-btn:hover img {
    transform: translateX(8px);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 34px 30px;
    border: 1px solid #c1c1c1;
    margin: 0px 0 15px;
    background: #1674e6;
    border-radius: 7px;
}

.cntct-info-icon {
    width: 55px;
    height: 55px;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
}

.cntct-info-icon i {
    font-size: 28px;
    color: var(--lblue);
    transition: 0.5s all;
}

.contact-info-item:hover i {
    transform: rotate(360deg);
    transition: 0.5s all;
}

.contact-info-item-details h5 {
    font-size: 21px;
    color: #fff;
    text-transform: uppercase;
}

.contact-info-item-details a,
.contact-info-item-details p {
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat';
}

.cntct-info-icon i {
    font-size: 28px;
    color: var(--lblue);
    transition: 0.5s all;
}

.cntct-info-icon i {
    color: #1674e6;
}

.contact-downside {
    position: relative;
}

.contact-downside select {
    width: 100%;
    margin-bottom: 15px;
    height: 50px;
    border: 1px solid #c1c1c1;
    color: #676767;
    position: relative;
}

.footerSec.inner {
    padding-top: 60px;
    padding-bottom: 70px;
}

.copy-txt.iner {
    height: 90%;
}

.contact-downside:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 47px;
    top: 2px;
    left: 93%;
    background: url(../images/contact-input.png) no-repeat;
    background-size: cover;
    z-index: 1;
    transform: rotate(180deg);
}

.contact-input.i:before {
    background: unset;
}

.get-in-touch.cntct-head button {
    background: #1674e6;
}

.get-in-touch.cntct-head button.theme_btn:after {
    width: unset;
}


/*--------------------------------------------------------* Contact Us Page End --------------------------------------------------------------------*/


.slider-counter {
    margin-top: -70px;
    position: relative;
    z-index: 12;
}

span.current-slides {
    font-size: 47px;
    font-family: 'Montserrat';
    color: #fff;
    font-weight: 500;
}

span.total-slides {
    font-size: 19px;
    font-family: 'Montserrat';
    color: #fff;
    letter-spacing: 4px;
    font-weight: 500;
}

span.prev-slides {
    font-size: 19px;
    font-family: 'Montserrat';
    color: #fff;
    letter-spacing: 4px;
    font-weight: 500;
}

.slider-count {
    position: relative;
    bottom: -100px;
    left: 40%;
    width: max-content;
}

.slide-in-count:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 87px;
    background: #9193a0;
    width: 110px;
    height: 1.5px;
}

.slide-in-count {
    display: flex;
    align-items: center;
    gap: 140px;
    width: max-content;
}

/*--------------------------------------------------------* Team Member Page Start --------------------------------------------------------------------*/

.team-member-sec {
    margin-bottom: 100px;
}

.team-member-form input, .team-member-form textarea, .team-member-form select {
    width: 100%;
    height: 55px;
    border: 1px solid #c1c1c1;
    margin-bottom: 20px;
    padding: 10px 20px 10px 25px;
    background: transparent;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 400;
    color: #000;
    border-radius: 5px;
}

.team-member-form input:focus {
    outline: unset;
    box-shadow: unset;
    border-color: #000;
}

.team-member-form label {
    color: #000;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 15px;
}

.team-member-form select:focus {
    outline: unset;
    box-shadow: unset;
    border-color: #000;
}

.team-member-sec button {
    background: #1674e6;
    margin: 15px auto 0;
}

.team-member-sec .theme_btn:after {
    background: unset;
}

/*--------------------------------------------------------* Team Member Page End --------------------------------------------------------------------*/



.team-member-sec .upload-container:hover {
    border-color: #c0250e;
}

.team-member-sec .upload-icon {
    font-size: 50px;
    margin-bottom: 10px;
    text-align: center;
}

.team-member-sec .upload-text {
    font-size: 25px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 400;
    font-family: 'Montserrat';
    text-align: center;
}

.team-member-sec .upload-subtext {
    font-size: 13px;
    color: #8a8a8a;
    font-family: 'Montserrat';
    text-align: center;
}

.team-member-sec .divider {
    display: flex;
    align-items: center;
    width: 30%;
    margin: 20px auto 20px;
    font-family: 'Montserrat';
    font-size: 20px;
    color: #000;
    font-weight: 400;
}

.team-member-sec .divider::before,
.team-member-sec .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.team-member-sec .divider:not(:empty)::before {
    margin-right: 0.5em;
}

.team-member-sec .divider:not(:empty)::after {
    margin-left: .5em;
}

.team-member-sec .upload-btn {
    background: #e5e5e5;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat';
    font-size: 15px;
    color: #000;
}

.team-member-sec .upload-btn:hover {
    background: #eee;
}

.team-member-sec input[type="file"] {
    display: none;
}

.resum-label-job {
    border: 1px solid #ddd;
    width: max-content;
    margin: 0 auto;
    padding: 5px 23px;
    background: #e5e5e5;
}

.team-member-sec .upload-icon img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(64%) saturate(2862%) hue-rotate(205deg) brightness(96%) contrast(89%);
}

.team-member-sec .row.filevhty {
    border: 1px solid #00000036;
    padding: 40px;
    border-radius: 15px;
    margin: 10px 0px 20px;
}

.team-member-form textarea {
    height: 120px;
    resize: none;
}


.request-sec {
    margin-top: 110px;
}

.author-profile {
    display: none;
}

.testimonials .item .box .author {
    width: 20%;
}

.about-img-cover img {
    height: 818px;
}


.page-template-About section.testimonials.sec {
    margin-top: 210px;
}


.page-template-About section.testimonials.sec {
    margin-top: 210px;
}

.whychose-main h2 {
    width: 40%;
    font-size: 66px;
}


footer.entry-footer {
    display: none;
}

.our_services-template-default h1.entry-title {
    color: black;
    font-size: 62px;
    margin-bottom: 20px;
}

.our_services-template-default .post-thumbnail {
    margin-bottom: 20px;
}

.our_services-template-default .entry-content {
    margin-bottom: 20px;
}



header.entry-header {
    display: none;
}


.entry-content {
    margin: 40px 0px;
}

.menuSec ul li a {
    padding: 0px 14px;
}

.banner-sec.iner .baner-headng-main h1 {
    font-size: 64px;
}

.banner-sec.iner .col-lg-5 {
    width: 90%;
}



.post-template-default .post-thumbnail img {
    width: 100%;
    object-fit: cover;
    height: 550px;
}



.post-template-default .entry-content p {
    margin-bottom: 10px;
}




div#comments {
    display: none;
}



.rt-col-md-4 h3.entry-title a {
    font-family: 'Headlines';
}


.menuSec li:hover>ul {
    top: 26px;
}







@media only screen and (min-width: 1777px) and (max-width: 1999px) {
    .service-sec:before {
        clip-path: circle(62% at 39% -9%);
        width: 140%;
        height: 170%;
    }

}

@media only screen and (min-width: 2000px) and (max-width: 2500px) {
    .service-sec:before {
        clip-path: circle(58% at 37% -22%);
        width: 160%;
        height: 300%;
    }
}

@media only screen and (min-width: 1454px) and (max-width: 1599px) {
    .service-sec:before {
        clip-path: circle(77% at 44% -6%);
    }

    .whychose-text {
        width: 40%;
        right: 7%;
    }

    .whychose-text h3 {
        font-size: 53px;
    }

    .foot-bottom p {
        margin-right: 25px;
    }
}


@media only screen and (min-width: 1200px) and (max-width: 1399px){
.menuSec ul {
    margin-left: 40px;
}
.serv-head p {
    width: 78%;
}
.serv-text h4 {
    margin-bottom: 10px;
    font-size: 23px;
}
.about-text ul .counter-about-txt {
    width: 100% !important;
    padding: 30px 14px !important;
}
.whychose-text {
    padding: 90px 70px 40px 35px;
}
.page-template-About section.testimonials.sec {
    margin-top: 10px;
}
.testimonials .item.inr .box {
    margin-bottom: 20px;
}
.contact-info-item {
    gap: 10px;
    padding: 24px 14px;
}
.contact-info-item-details {
    width: 80%;
}
	
}

	

@media only screen and (min-width: 992px) and (max-width: 1199px) {
html {
    overflow-x: hidden;
}
h2 {
    font-size: 50px;
}
.menuSec ul li a {
    padding: 0px 8px;
    font-size: 14px;
}
.menuSec ul {
    margin-left: 7px;
}
.baner-headng-main h1 {
    font-size: 62px  !important;
}
.banner-sec {
    padding: 50px 0 50px;
    margin-bottom: 50px;
}
.serv-head p {
    width: 100%;
}
.whychose-main h2 {
    width: 40%;
    font-size: 36px;
}
.whychose-text {
    padding: 30px 20px 20px 20px;
    clip-path: unset;
    border-radius: 10px;
}
.whychose-text h3 {
    font-size: 35px;
}
.whychose-check {
    width: 45px;
    height: 31px;
    padding: 4px;
}
.whychse-txt-point h6 {
    font-size: 16px;
}
.whychse-txt-point p {
    font-size: 11px;
}
footer:before {
    content: unset;
}
.foot-bottom p {
    text-align: end;
    opacity: 100%;
    font-size: 12px;
}
.testimonials .item.inr .box {
    margin-bottom: 10px;
}
.theme_btn {
    padding: 9px 12px;
    font-size: 12px;
    clip-path: unset;
    gap: 8px;
}
a.top-navigator {
    width: 70px;
}
.counter-about-txt {
    padding: 22px 12px !important;
    width: 100% !important;
    height: 140px !important;
    border-radius: 10px;
}
.about-img-cover img {
    height: 608px;
}
.counter-about {
    font-size: 48px;
}
.about-counter p {
    font-size: 11px;
}
.about-img-cover:before {
    height: 279px;
}
.serv-main {
    padding: 30px 10px 20px;
}
.serv-text h4 {
    font-size: 20px;
}
.serv-image img {
    height: 250px;
}
.serv-main a {
    width: 33px;
    height: 33px;
    right: 9px;
    bottom: 30px;
}
.serv-main a i {
    font-size: 15px;
}
.serv-slider button.slick-next {
    right: 29%;
}
h1 {
    font-size: 90px;
}
footer ul.ft-connect li a span {
    font-size: 12px;
}
html footer ul.ft-connect li a {
    gap: 10px !important;
}
html footer ul.ft-connect li a img {
    width: 13px !important;
}
footer p {
    padding-right: 0px;
	
}
.contact-info-item {
    display: block;
    padding: 24px 20px;
}
.cntct-info-icon {
    margin-bottom: 10px;
}




}

@media only screen and (min-width: 768px) and (max-width: 991px) {
html {
    overflow-x: hidden;
}
h2 {
    font-size: 50px;
}
.menuSec ul li a {
    padding: 0px 4px;
    font-size: 11px;
}
.menuSec ul {
    margin-left: 7px;
}
.baner-headng-main h1 {
    font-size: 72px  !important ;
}
.banner-sec {
    padding: 50px 0 50px;
    margin-bottom: 50px;
}
.serv-head p {
    width: 100%;
}
.whychose-main h2 {
    width: 40%;
    font-size: 36px;
}
.whychose-text {
    padding: 30px 20px 20px 20px;
    clip-path: unset;
    border-radius: 10px;
}
.whychose-text h3 {
    font-size: 35px;
}
.whychose-check {
    width: 45px;
    height: 31px;
    padding: 4px;
}
.whychse-txt-point h6 {
    font-size: 18px;
}
.whychse-txt-point p {
    font-size: 11px;
}
footer:before {
    content: unset;
}
.foot-bottom p {
    text-align: end;
    opacity: 100%;
    font-size: 12px;
}
.testimonials .item.inr .box {
    margin-bottom: 10px;
}
.theme_btn {
    padding: 9px 12px;
    font-size: 12px;
    clip-path: unset;
    gap: 8px;
}
a.top-navigator {
    width: 70px;
}



    
}

@media only screen and (min-width: 520px) and (max-width: 767px) {

html {
    overflow-x: hidden;
}
h1 {
    font-size: 70px;
}
h2 {
    font-size: 44px;
}
p {
    font-size: 14px;
}


.baner-headng-main {
    padding: 10px 10px;
    width: 100%;
}
.baner-headng-main h1 {
    font-size: 60px !important;
}
.banner-sec {
    padding: 20px 0 50px;
    margin-bottom: 60px;
}
.banner-text h4 {
    font-size: 39px;
    margin-bottom: 0px;
}
.banner-text p {
    margin-top: 10px !important;
    opacity: 1 !important;
    font-size: 14px !important;
    font-weight: 700;
}
.about-text p {
    width: 100%;
    margin-bottom: 20px;
    font-size: 12px;
}
.about-text ul {
    column-count: 2;
    width: 100%;
}
.about-text ul .counter-about-txt {
    width: 100% !important;
    padding: 30px 18px 20px !important;
    height: auto !important;
    margin: 0 auto !important;
    margin-bottom: 10px !important;
}
.about-img-cover img {
    height: 300px;
}
.about-img-cover:before {
    height: 160px;
}
.counter-about {
    font-size: 26px;
    margin-bottom: 08px;
}
.about-counter p {
    width: 100%;
}
.about-img {
    padding: 20px 20px 75px;
    border-radius: 30px;
}
.serv-head p {
    font-size: 14px;
    width:100%;
} 
section.about-sec {
    margin-bottom: 40px;
}

.service-sec:before {
    top: -40% !important;
}
.serv-text h4 {
    font-size: 32px;
    margin-bottom: 4px;
}

.serv-main {
    padding: 15px 15px;
    border-radius: 10px;
    clip-path: unset;
}
.serv-image img {
    height: auto;
}
.serv-main a {
    width: 30px;
    height: 30px;
    right: 8px;
    bottom: 26px;
}
.serv-main a i {
    font-size: 12px;
}

.whychose-text {
    width: 100%;
    padding: 20px 10px 0px 10px;
    border-radius: 12px;
    clip-path: unset;
    position: relative;
    top: 20px;
    right: 0%;
}
.whychose-text h3 {
    font-size: 45px;
}
.whychose-check img {
    width: 20px;
    height: 15px;
}
.whychose-check {
    width: 100px;
    height: 30px;
    border-radius: 4px;
}
.whychse-txt-point h6 {
    font-size: 22px;
    color: #000;
}
.request-sec {
    margin-top: 0px;
    padding: 50px 0px 30px;
    margin-bottom: 60px;
}
.request-form {
    padding: 15px 15px;
    border-radius: 6px;
    margin-right: 0px;
    clip-path: unset;
}
.request-heading {
    margin-top: 20px;
}
.heading.text-center p {
    width: 100%;
}
.testimonials .item .box:before {
    width: 3%;
}
.testimonials .item .box {
    padding: 10px 10px 10px 10px !important;
    border-radius: 10px;
    margin: 20px 10px !important;
}
.testimonials .item .box .author {
    width: 0%;
}
.testimonials .item .box .des {
    padding-left: 0px;
    padding-bottom: 20px;
}
.testimonials .item .box .author-text {
    padding-bottom: 10px;
    margin-bottom: 0px;
}
footer:before {
   display:none;
}
footer p {
    padding-right: 0px;
}
.quick-site-main-link {
    padding-left: 0px;
}
footer ul.ft-connect li a {
    gap: 16px;
}
footer ul.ft-connect li a img {
    width: 18px;
}
.foot-bottom p {
    text-align: center;
}
footer ul.ft-connect li a span {
    font-size: 14px;
}
.social-links {
    text-align: center;
}
.whychose-main h2 {
    width: 100%;
    font-size: 52px;
}
.whychose-main > img {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    clip-path: unset;
}
.whychoose-sec {
    padding: 0px 0 100px;
}
.service-sec {
    margin-bottom: 30px;
}
.page-template-About section.testimonials.sec {
    margin-top: 0px;
}
.contact-info-item {
    display: block;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    height: 170px;
    flex-direction: row;
}
.cntct-info-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.contact-info-item-details a, .contact-info-item-details p {
    font-size: 12px;
}
.entry-content ol {
    padding-left: 15px;
}    
.contact-info {
    column-count: 2;
}
.team-member-sec .row.filevhty {
    padding: 10px;
    border-radius: 8px;
}    
html .upload-container {
    margin-bottom: 20px !important;
}
.team-member-sec .upload-subtext {
    font-size: 14px;
}
    
    

}

@media only screen and (min-width: 300px) and (max-width: 519px) {
	.slide-in-count:before{
		display:none;
	}
html {
    overflow-x: hidden;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 22px;
}
p {
    font-size: 12px;
}

.menuSec .col-md-2.col-sm-6.col-6 {
    width: 100%;
    display: flex;
    justify-content: center;
}
.baner-headng-main {
    padding: 10px 10px;
    width: 100%;
}
.baner-headng-main h1 {
    font-size: 50px !important;
}
.banner-sec {
    padding: 20px 0 50px;
    margin-bottom: 60px;
}
.banner-text h4 {
    font-size: 22px;
    margin-bottom: 0px;
}
.banner-text p {
    margin-top: 10px !important;
    opacity: 1 !important;
    font-size: 12px !important;
    font-weight: 800;
}
.about-text p {
    width: 100%;
    margin-bottom: 20px;
}
.about-text ul {
    column-count: 1;
    width: 100%;
}
.about-text ul .counter-about-txt {
    width: 100% !important;
    padding: 30px 18px 20px !important;
    height: auto !important;
    margin: 0 auto !important;
    margin-bottom: 10px !important;
}
.about-img-cover img {
    height: 300px;
}
.about-img-cover:before {
    height: 160px;
}
.counter-about {
    font-size: 26px;
    margin-bottom: 08px;
}
.about-counter p {
    width: 70%;
}
.about-img {
    padding: 20px 20px 75px;
    border-radius: 30px;
}
.serv-head p {
    font-size: 11px;
    width:100%;
} 
section.about-sec {
    margin-bottom: 40px;
}

.service-sec:before {
    top: -40% !important;
}
.serv-text h4 {
    font-size: 24px;
    margin-bottom: 4px;
}

.serv-main {
    padding: 15px 15px;
    border-radius: 10px;
}
.serv-image img {
    height: auto;
}
.serv-main a {
    width: 30px;
    height: 30px;
    right: 8px;
    bottom: 26px;
}
.serv-main a i {
    font-size: 12px;
}
.slider-count {
    left: 0%;
	width:100%;
	justify-content:space-between;
}
.whychose-text {
    width: 100%;
    padding: 20px 10px 0px 10px;
    border-radius: 12px;
    clip-path: unset;
    position: relative;
    top: 20px;
    right: 0%;
}
.whychose-text h3 {
    font-size: 25px;
}
.whychose-check img {
    width: 20px;
    height: 15px;
}
.whychose-check {
    width: 100px;
    height: 30px;
    border-radius: 4px;
}
.whychse-txt-point h6 {
    font-size: 16px;
    color: #000;
}
.request-sec {
    margin-top: 0px;
    padding: 50px 0px 30px;
    margin-bottom: 60px;
}
.request-form {
    padding: 15px 15px;
    border-radius: 6px;
    margin-right: 0px;
    clip-path: unset;
}
.request-heading {
    margin-top: 20px;
}
.heading.text-center p {
    width: 100%;
}
.testimonials .item .box:before {
    width: 3%;
}
.testimonials .item .box {
    padding: 10px 10px 10px 10px !important;
    border-radius: 10px;
    margin: 20px 10px !important;
}
.testimonials .item .box .author {
    width: 0%;
}
.testimonials .item .box .des {
    padding-left: 0px;
    padding-bottom: 20px;
}
.testimonials .item .box .author-text {
    padding-bottom: 10px;
    margin-bottom: 0px;
}
footer:before {
   display:none;
}
footer p {
    padding-right: 0px;
	text-align: center !important;
}
.quick-site-main-link {
    padding-left: 0px;
}
footer ul.ft-connect li a {
    gap: 10px;
}
footer ul.ft-connect li a img {
    width: 12px;
}
footer ul.ft-connect li a span {
    font-size: 11px;
}
.social-links {
    text-align: center;
}
.whychose-main h2 {
    width: 100%;
    font-size: 35px;
}
.whychose-main > img {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    clip-path: unset;
}
.whychoose-sec {
    padding: 0px 0 100px;
}
.service-sec {
    margin-bottom: 30px;
}
.page-template-About section.testimonials.sec {
    margin-top: 0px;
}
.contact-info-item {
    display: block;
    padding: 16px 16px;
}
.cntct-info-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
}
.contact-info-item-details a, .contact-info-item-details p {
    font-size: 12px;
}
.entry-content ol {
    padding-left: 15px;
}


.team-member-sec .row.filevhty {
    padding: 10px;
    border-radius: 8px;
}    
html .upload-container {
    margin-bottom: 20px !important;
}
.team-member-sec .upload-subtext {
    font-size: 12px;
}

	.slide-in-count{
		    justify-content: space-between;
    width: 100%;
	}
	a.top-navigator {
		bottom: 107px;
	}
    
}

@media only screen and (min-width: 0px) and (max-width: 299px) {}

