/*Main Css */
:root {
    --primary: #2ea7fe;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;

    --font-heading: "Poppins", sans-serif;
    --font-accent: "Poppins", sans-serif;
    --font-body: "Poppins", sans-serif;

    --icon: "Font Awesome 6 Pro", sans-serif;
}

::selection {
    background: #ff5e14;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #ff5e14;
}


/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 2;
    color: rgba(34, 34, 34, 0.6);
}

body.inner-header {
    padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 700;
    color: #333333;
    line-height: 1.31;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}

.pad-l-zero {
    padding-left: 0px;
}

.pad-r-zero {
    padding-right: 0px;
}

.ovr-hiddn {
    overflow: hidden;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}

.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/

header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: fixed;
    background: transparent;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}

header.sticky {
    background: white;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
}

header.sticky .logo img {
    max-width: 90px;
}

.menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}

.logo {
    display: inline-block;
}

.logo img {
    display: block;
    max-width: 140px;
    margin: 20px 0 10px;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 24px;
    /* padding: 35px 14px; */
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu>li {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 30px;
}

.menu>li>a {
    display: block;
    font-size: 18px;
    color: #999999;
    /* text-transform: uppercase; */
    font-weight: 600;
}

.header-btn {
    background: var(--primary);
    color: white !important;
    font-weight: 600 !important;
    padding: 12px 1.5em;
    border-radius: 10px;
    box-shadow: 0 10px 15px 0 rgba(1, 115, 153, 0.2);
    /* background-image: linear-gradient(103deg, #1982fd -1%, #029 93%); */
    background: #25b6a2;
}

.header-btn:hover {
    transform: scale(1.03);
}

.menu>li :hover>a,
.menu>li .active>a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@keyframes scale-display--reversed {
    0% {
        display: inline-flex;
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    99% {
        display: inline-flex;
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        display: none;
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
    }
}

/* Menu Dropdown CSS */

.has-child {
    position: relative;
    z-index: 1;
}

.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 10px 20px;
}

.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.chev.rotate {
    transform: rotate(180deg);
}

.chev {
    transition: .5s ease;
}

/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }

    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }

    100% {
        top: 40px;
        opacity: 1;
    }
}

.topbar {
    /* background-image: linear-gradient(91deg, #1982fd -3%, #029 93%); */
    background: #25b6a2;
    padding: 12px 0;
}

.head-details a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.head-details i {
    color: #fff;
    margin-right: 10px;
}

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

.main-head .top-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.left-margin {
    margin-left: 30px;
    margin-right: -48px;
}

/* Main Banner CSS */
.mainBanner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 860px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainBanner.inner-pages {
    height: 700px;
}

.banner-content {
    padding: 22% 0 10%;
}

.banner-content.inner {
    padding: 25% 0 10%;
}

h1.banner-heading {
    font-size: 65px;
    line-height: 1.31;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}

p.banner-text {
    margin-bottom: 2rem;
}

.banner-img {
    margin-right: -114px;
}

.small-1 {
    position: absolute;
    top: 27%;
    right: 40%;
}

.small-2 {
    position: absolute;
    top: 23%;
    right: 31.6%;
}

.small-3 {
    position: absolute;
    right: 31.5%;
    top: 42%;
}

.small-4 {
    position: absolute;
    top: 42%;
    right: 45.5%;
}

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}

.sec-heading.center {
    text-align: center;

}

.sec-heading h2 {
    font-size: 55px;
    line-height: 1.31;
    text-transform: capitalize;
}

.sec-heading.white h2 {
    color: white
}

.sec-heading p {
    margin: 1rem 0;
}

.sec-heading .sub-heading {
    margin-bottom: 1rem;
    /* background-image: linear-gradient(99deg, #1982fd -2%, #029 93%); */
    background: #25b6a2;
    font-family: Poppins;
    font-size: 22px;
    font-weight: normal;
    line-height: 1.31;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}

.padding {
    padding-top: 3rem;
}

/* Sec Headings */

/* sections */
section {
    padding: 6rem 0;
    position: relative;
}

.padding-2 {
    padding: 1rem 0;
}

/* sections */

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}

.btn-wrap .theme-btn {
    color: white;
    font-size: 16px;
    font-weight: var(--font-medium);
    /* border: 2px solid transparent; */
    transition: .5s ease;
    padding: 15px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 15px 0 rgba(1, 115, 153, 0.2);
    /* background-image: linear-gradient(102deg, #1982fd -1%, #029 93%); */
    background: #25b6a2;
}

.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: var(--black);
}

.btn-wrap .theme-btn:hover {
    transform: scale(1.03);
}

/* Theme Buttons */


/* -------------------------counter CSS------------------------  */
/* ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
} */
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}

ul#counter li div {
    font-weight: 700;
    font-size: 30px;
    color: #197df854;
    flex-shrink: 0;
}

ul#counter li.t-white div {
    color: #fff;
}

ul#counter li .text {
    font-size: 20px;
    color: #333333;
    text-transform: capitalize;
}

ul#counter li {
    width: 100%;
    margin-bottom: 1rem;
    padding: 24px 13px 37px 18px;
    border-radius: 10px;
    box-shadow: 7px 4px 10px 0 rgba(1, 50, 107, 0.15);
    background-color: #fff;
    transition: 0.3s ease;
}

ul#counter li .count-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.counter-wrap li .counter {
    /* display: flex; */
    align-items: center;
    gap: 1rem;
    justify-content: space-evenly;
}

ul#counter li.bg-blue {
    border-radius: 10px;
    box-shadow: 7px 4px 10px 0 rgba(1, 50, 107, 0.15);
    background-image: linear-gradient(129deg, #1982fd 9%, #029 93%);
}

.fw-400 {
    font-weight: 400;
    margin-bottom: 8px;
}

.fw-normal {
    font-weight: 400;
    line-height: 1.6;
}

ul#counter li p {
    color: rgba(34, 34, 34, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

ul#counter li:hover {
    background-image: linear-gradient(129deg, #1982fd 9%, #029 93%);
}

ul#counter li:hover,
ul#counter li:hover .text,
ul#counter li:hover p,
ul#counter li:hover div {
    color: #fff;
}

ul#counter li:hover img {
    filter: brightness(9.5);
}

ul#counter li:hover.active {
    background-image: linear-gradient(129deg, #1982fd 9%, #029 93%);
}

/* -------------------------counter CSS------------------------  */
section.sec2 {
    background-image: linear-gradient(94deg, #1982fd -2%, #029 93%);
    padding: 45px 0 35px;
}

.card1 {
    text-align: center;
    background: transparent;
    border: 1px solid transparent;
    /* padding: 1rem; */
}

.btn-wrap.slide-btn {
    position: absolute;
    bottom: -32px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.slide-1 .btn-wrap {
    display: none;
}

.slide-1:hover.slide-1 .btn-wrap {
    display: block;
}

.card1 p {
    width: 70%;
    max-width: 100%;
    margin: 0 auto;
}

.card1 h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.slide-1 {
    text-align: center;
    border-radius: 20px;
    position: relative;
    max-width: 100%;
    margin: 30px 0 30px;
}

.slide-1:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: #fff;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(123deg, #25b6a2 6%, #25b6a2 93%);
    border-image-slice: 1;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(127deg, #25b6a2 8%, #25b6a2 93%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ser-image {
    /* position: absolute;
    top: -100px;
    left: 0;
    right: 0; */
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

.ser-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    padding: 26px 0 26px;
}

.ser-content {
    padding: 54px 18px 30px;
    min-height: 280px;

}

a.arrow-btn {
    position: relative;
}

a.arrow-btn.left {
    position: absolute;
    top: 50%;
    left: -5%;
}

a.arrow-btn.right {
    position: absolute;
    top: 50%;
    right: -5%;
}

.txt-size-45 {
    font-size: 45px !important;
}

.max-wid {
    max-width: 96%;
}

.call-btn i {
    color: white;
    font-size: 22px;
    font-weight: var(--font-medium);
    /* border: 2px solid transparent; */
    transition: .5s ease;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 15px 0 rgba(1, 115, 153, 0.2);
    /* background-image: linear-gradient(102deg, #1982fd -1%, #029 93%); */
    background: #25b6a2;
}

a.call-btn {
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Testimonials 2 */

.testi-slider-2 .testi-slide {
    padding: 20px 25px;
}

.testi-slider-2 .testi-slide p {
    color: #525252;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.44;
    font-style: italic;
}

.testi-slider-2 .testi-slide .bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.testi-slider-2 .testi-slide .client {
    display: flex;
    /* align-items: center; */
    gap: 2rem;
    flex-flow: column;
}

.testi-slider-2 .testi-slide .client .det .name {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.95;
    color: #525252;
    display: block;
}

.testi-slider-2 .testi-slide .client .det .des {
    font-size: 16px;
    color: #525252;
}

.slide-wid {
    max-width: 100%;
}

.testi-slider-2 .testi-slide .client .det {
    width: 100%;
}

a.arrow-btn2 {
    /* background-image: linear-gradient(134deg, #1982fd 11%, #029 93%); */
    background: #25b6a2;
    font-family: FontAwesome5Free-Solid;
    font-size: 30px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-weight: 700;
}

a.arrow-btn2.left {
    position: absolute;
    top: -33%;
    right: 76px;
}

a.arrow-btn2.right {
    position: absolute;
    top: -33%;
    right: 0;
}

.circle-bg {
    position: absolute;
    right: 0;
    top: 0;
}

section.sec5 {
    background-repeat: no-repeat;
    height: 540px;
    position: relative;
}

/* Testimonials 2 */

/* footer */
footer {
    background: #151515;
    padding: 0rem 0 1rem;
    position: relative;
    z-index: 0;
}

footer:before {
    content: "";
    display: block;
    height: 98px;
    width: 100%;
    position: absolute;
    /* background-image: linear-gradient(93deg, #1982fd -2%, #029 93%); */
    background: #25b6a2;
    top: 0;
    z-index: -1;
}

.copyright2 {
    background: #151515;
    padding: 1.5rem 0;
    border-top: 1px solid #ffffff69;
}

.copyright {
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
    /* border-top: 1px solid #fff; */
}

.copyright p,
.copyright a {
    color: white;
    text-align: center;
}

ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}

.footer-details h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5rem;
}

.fmenu li a {
    color: #fff;
    line-height: normal;
    padding: 10px 0;
}

.footer-sec p {
    padding-top: 2rem;
    max-width: 80%;
    font-size: 14px;
}

.footer-sec {
    /* max-width: 78%; */
}

.footer-sec .logo img {
    margin: 0;
}

.contact-detail li i {
    width: 63px;
    height: 63px;
    flex-grow: 0;
    margin: 0 14px 0 0;
    padding: 23px 21px 25px 22px;
    /* background-image: linear-gradient(127deg, #1982fd 8%, #029 93%); */
    background: #25b6a2;
    color: #fff;
    border-radius: 50px;
    font-size: 20px;
}

.contact-detail li {
    display: flex;
    align-items: center;
    gap: 0rem;
    margin: 2rem 0;
}

.contact-detail h5 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.contact-detail a {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.input-div input {
    width: 317px;
    height: 60px;
    flex-grow: 0;
    margin: 0 0 20px;
    padding: 21px 30px;
    border-radius: 10px;
    border: solid 1px #ededed;
    background: transparent;
}

.input-div button {
    color: white;
    font-size: 16px;
    transition: .5s ease;
    padding: 15px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 15px 0 rgba(1, 115, 153, 0.2);
    /* background-image: linear-gradient(104deg, #1982fd -1%, #029 93%); */
    background: #25b6a2;
    border: none;
}

.input-div {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.footer-sec a.logo {
    background: #151515;
    padding: 34px 14px;
}

.footer-details {
    margin-top: 36px;
}

.contact-us .form-check {
    padding-left: 0;
}

.contact-us .form-check label {
    padding-left: 5px;
}

/* footer */
.input-field input,
.input-field textarea,
.input-field select {
    cursor: pointer;
    height: 50px;
    width: 100%;
    font-size: 16px;
    color: rgba(34, 34, 34, 0.6);
    padding-left: 1rem;
    outline: none !important;
    text-transform: capitalize;
    border-radius: 10px;
    background-color: #f4f4f4;
    margin-bottom: 40px;
    box-shadow: 0 16px 24px 0 rgba(189, 196, 205, 0.13);
    border: solid 1px transparent;
}

.input-field textarea {
    height: 93px;
}

.send button {
    padding: 0 40px;
    height: 65px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: .4s ease;
    border: 1px solid var(--primary);
    text-transform: capitalize;
    border-radius: 10px;
    box-shadow: 0 10px 15px 0 rgba(1, 115, 153, 0.2);
    background-image: linear-gradient(101deg, #1982fd -1%, #029 93%);
}

.send {
    text-align: center;
}

.sec-heading h4 {
    font-size: 36px;
    text-transform: capitalize;
}

.del-Div h4 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.del-Div a,
p {
    color: rgba(34, 34, 34, 0.6);
}

.del-Div {
    margin-bottom: 34px;
}

.Bxitems {
    text-align: center;
    position: relative;
    padding: 2rem 2rem;
    min-height: 360px;
}

.Bxitems:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: #fff;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    /* border-image-source: linear-gradient(123deg, #1982fd 6%, #029 93%); */
    border-image-source: linear-gradient(123deg, #25b6a2 6%, #25b6a2 93%);
    border-image-slice: 1;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(127deg, #25b6a2 8%, #25b6a2 93%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

}

.Bxitems h3 {
    font-size: 22px;
    margin-bottom: 1rem;
}

.Bxitems p {
    font-size: 15px;
    line-height: normal;
}

.lists {
    list-style: disc;
    padding-left: 20px;
}

.bggrey {
    background: #f4f4f4;
}

footer ul.contact-detail {
    margin: 10rem 0 0 5rem;
}

.posSystem b {
    font-weight: bold;
    color: #333333;
    font-size: 1.75rem;
    margin-top: 2rem;
    display: block;
}

.submitBtn input[type="submit"] {
    color: white;
    font-size: 16px;
    font-weight: var(--font-medium);
    transition: .5s ease;
    padding: 12px 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 15px 0 rgba(1, 115, 153, 0.2);
    background: #25b6a2;
    border: unset;
    outline: unset;
}

.submitBtn {
    margin-top: 2rem;
}


@media (max-width: 1440px) {}

@media (max-width: 1200px) {
    header {
        padding: 1rem 0;
    }

    .btns {
        margin: 1.5rem 0;
    }

    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }

    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }

    .form-head .form-heading {
        white-space: normal;
        font-size: 20px;
    }

    .form-head {
        padding: 1rem;
    }

    .btn-normal {
        padding: 10px 8px;
    }

    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }

    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }

    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }

    .menuWrap .menu:first-child {
        padding-left: 0;
        width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .menu-Bar {
        display: block;
        top: 0px;
    }

    .menuWrap.open {
        display: flex;
        left: 0px;
    }

    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }

    ul.menu>li {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }

    ul.menu>li>a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }

    .container {
        position: relative;
    }

    header .main-header ul.menu>li>a {
        color: #333;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }

    header .main-header ul.menu>li>a:before {
        display: none;
    }
}

@media (max-width: 1199px) {
    h1.banner-heading {
        font-size: 3.5rem;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .small-3.small-3 {
        right: 17%;
    }

    .sec-heading h2 {
        font-size: 2.5rem !important;
    }

    .sec-heading {
        margin-bottom: 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .Bxitems {
        padding: 1rem 1rem;
    }

    .left-margin {
        margin: 0 0;
    }

    .testi-slider-2 .testi-slide p {
        font-size: 16px;
    }

    .testi-slider-2 .testi-slide {
        padding: 1rem 1rem;
    }

    .testi-slider-2 .testi-slide .client {
        gap: 1rem;
    }

    .testi-slider-2 .testi-slide .client .det .name {
        font-size: 18px;
    }

    .footer-sec p {
        padding-top: 0;
    }
}

@media (max-width : 1025px) {
    .btn-wrap .theme-btn {
        font-size: 16px;
    }

    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

@media (max-width: 991px) {
    .banner-img {
        margin: 0;
    }

    h1.banner-heading {
        font-size: 3rem;
        margin-top: 9rem;
    }

    .btn-wrap {
        margin-bottom: 0;
    }

    .sub-small-images {
        display: none;
    }

    header {
        padding: 0;
    }

    .logo img {
        margin: 10px 0;
        max-width: 100px;
    }

    section {
        padding: 3rem 0;
    }

    .posSystem b {
        font-size: 1.5rem;
        margin-top: 0rem;
    }

    footer ul.contact-detail {
        margin: 0 0;
    }
}

@media (max-width: 767px) {
    .sec-heading h2 {
        font-size: 2rem !important;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
    /* Styles */
}

/* iPads (landscape) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
    /* Styles */
}

/* iPads (portrait) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
    /* Styles */
}


/* iPhone 6-8 Plus */
@media only screen and (min-width : 414px) and (max-width : 736px) and (orientation : portrait) {
    /* Styles */
}

@media only screen and (min-width : 414px) and (max-width : 736px) and (orientation : landscape) {
    /* Styles */
}


/* iPhone 6-8  */
@media only screen and (min-width : 375px) and (max-width : 667px) and (orientation : portrait) {
    /* Styles */
}

@media only screen and (min-width : 375px) and (max-width : 667px) and (orientation : landscape) {
    /* Styles */
}


/* Android (Pixel 2) */
@media only screen and (min-width : 412px) and (max-width : 684px) and (orientation : portrait) {
    /* Styles */
}

@media only screen and (min-width : 412px) and (max-width : 684px) and (orientation : landscape) {
    /* Styles */
}

/* Iphone X */
@media only screen and (min-width : 375px) and (max-width : 734px) and (orientation : portrait) {}

@media only screen and (min-width : 320px) and (max-width : 767px) {
    .pkg-list {
        grid-template-columns: repeat(1, 1fr);
    }

    header {
        padding: 1rem 0;
    }

    .banner-content {
        padding: 100px 0 20px;
    }


    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }

    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
        margin-top: 0;
    }

    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 25px;
    }

    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .banner-content .btn-wrap {
        align-items: flex-start;
    }

    .btn-wrap a {
        width: initial;
        text-align: center;
        padding: 10px 25px;
    }

    .banner-img {
        display: none;
    }

    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }

    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }

    .copyright {
        flex-direction: column;
        gap: 12px;
    }

    .topbar {
        display: none;
    }

    .logo-text {
        font-size: 20px;
    }

    .mainBanner {
        height: initial;
    }

    .mainBanner .col-lg-7 {
        display: none;
    }

    a.arrow-btn.right {
        right: 0;
        transform: translateY(-50%);
    }

    a.arrow-btn.left {
        left: 0;
        transform: translateY(-50%);
    }

    #services {
        padding: 3rem 0;
    }

    .txt-size-45 {
        font-size: 30px !important;
    }

    section {
        padding: 2rem 0;
    }



    .Bxitems {
        min-height: initial;
        margin-bottom: 1rem;
    }

    section.sec5 {
        height: 350px;
    }

    .circle-bg {
        display: none;
    }

    .input-field input,
    .input-field textarea,
    .input-field select {
        margin-bottom: 1rem;
    }

    .contact-detail li {
        margin: 1rem 0;
    }

    .copyright2 {
        padding: 1rem 0;
    }

    .left-margin {
        margin-left: 0;
        margin-right: 0;
    }

    .testi-slider-2 .testi-slide p {
        font-size: 16px;
    }

    .footer-details h4 {
        margin-bottom: 2rem;
    }

    .logo img {
        max-width: 72px;
        margin: 5px 0 10px;
    }

    .banner-content {
        padding: 150px 0 20px;
    }

    header.sticky {
        padding: 0;
    }

    header.sticky .logo img {
        max-width: 70px;
        margin: 10px 0 10px;
    }

    .btn-wrap .theme-btn {
        padding: 12px 2rem;
    }

    .slide-1 {
        margin: 1rem 0;
    }

    .footer-sec a.logo {
        padding: 20px 14px;
    }

    a.arrow-btn.right img {
        width: 40px;
    }

    .contact-detail li i {
        width: 50px;
        height: 50px;
        display: grid;
        place-items: center;
        padding: 0;
    }

    .footer-sec p {
        max-width: 100%;
    }

    a.arrow-btn.left img {
        width: 40px;
    }

    .sec-heading h2 {
        font-size: 1.75rem !important;
    }

    .copyright p {
        font-size: 14px;
        line-height: 1.5;
    }

}