@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

:root {
    --theme1: rgb(0, 110, 191);
}

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #1b1b1b;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--theme1);
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 25px;
    color: #747474;
    font-size: 14px;
    margin-bottom: 30px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    border-radius: 40px;
    color: #fff;
    z-index: 1;
    position: relative;
    font-size: 13px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    border: 1px solid #fff;
    text-transform: uppercase;
    height: 53px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7px 0px 15px;
    font-weight: 500;
    gap: 20px;
    background: var(--theme1);
    justify-content: center;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: transparent;
    z-index: -1;
    transition: all 250ms;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.theme_btn:hover {
    border: 1px solid rgb(0 110 191);
    color: rgb(0 110 191) !important;
    background: #fff;
}

.theme_btn:hover::before {
    width: 100%;
}

.theme_btn i {
    background: var(--theme1);
    width: 17px;
    height: 16px;
    font-size: 16px;
    clip-path: polygon(40% 50%, 25% 10%, 100% 50%, 25% 90%);
}

.theme_btn:hover i {
    background: #fff;
}

.theme_btn span {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme_btn:hover span {
    background: var(--theme1);
}


.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: 'Montserrat';
    font-size: 13px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
    background: #1a5e8c;
    padding: 15px 20px;
    width: fit-content;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

h2 {
    font-family: "Barlow", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #222222;
    font-weight: 500;
    margin: 0 0 20px;
    text-transform: uppercase;
}

h3 {
    font-family: "Barlow", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 20px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */


.menuSec {
    padding: 14px 0 5px 0;
    background: #fff;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.menuSec ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}

.menuSec li:hover ul {
    opacity: 1;
    visibility: visible;
}


.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #1b1b1b;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s;
    text-transform: uppercase;
}

.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: var(--theme1);
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #fff;
    left: 0;
    width: 240px;
    text-align: left;
    opacity: 0;
    transition: 0.2s ease-in-out;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
    box-shadow: 0 0 10px #ccc;
    column-count: 2;
    display: flex;
    padding: 10px 0;
    visibility: hidden;
    top: 60px;
}

.menuSec li:hover ul {
    transition: 0.2s ease-in-out;
    top: 60px;
    z-index: 999;
}

.menuSec li>ul:after {
    position: absolute;
    content: "";
    background: #606060;
    width: 20px;
    height: 20px;
    top: -20px;
    left: 10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 999;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    /* color: #fff !important; */
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
    width: 100%;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.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;
}


/*banner css end*/

/* ++++++++++++++++++++++++++++++++++++++ Home START ++++++++++++++++++++++++++++++++++++++ */
header {
    margin: 0 20px;
}

header .container-fluid {
    padding: 0 6%;
}

.banner-wrap {
    position: relative;
    background-image: url(../images/banner.png);
    background-size: cover;
    background-color: #064888;
    margin: 20px;
    border-radius: 20px;
    padding: 0;
}

.banner-wrap:after {
    position: absolute;
    content: '';
    background: #ffffffa3;
    width: 30%;
    height: 1px;
    top: 56%;
    right: 46%;
}

.banner-wrap .container-fluid {
    padding: 0 5%;
}

.banner-wrap .row {
    align-items: center;
}

.ban-img img {
    width: 70%;
    margin: 0 auto;
}


.ban-text h2 {
    font-size: 67px;
    color: #fff;
    text-transform: uppercase;
}

.ban-text h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 45px;
    margin-bottom: 60px;
}


.ban-text p {
    color: #fff;
}

.ban-text {
    margin-top: 90px;
}

.slider-nav .slick-list.draggable {
    padding: 0 !important;
}

.slider-nav .slick-slide {
    opacity: 1;
}

.slider-nav .slick-dots li button:before {
    background: transparent;
    border: 1px solid #fff;
    position: absolute;
    content: '';
    border-radius: 50%;
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.slider-nav .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #fff;
    border: 3px solid #064888;
    outline: 1px solid #fff;
}

.slider-nav .slick-dots li.slick-active {
    opacity: 1;
}

.slider-nav .slick-dots li {
    width: auto;
    height: auto;
}

.slider-nav {
    margin: 0 !important;
}

.slider-nav ul.slick-dots {
    width: fit-content;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 16px;
}

.slider-nav .slick-dots li button {
    empty-cells: initial;
    height: auto;
    padding-left: 20px;
}

.slider-nav li.slick-active button {
    padding-left: 50px;
    position: relative;
}

.slider-nav li.slick-active:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 3px;
}

.slider-nav li.slick-active:last-child:before {
    display: none;
}

section.banner:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 24%;
    top: 55%;
    border: 5px solid #19538b;
    outline: 1px solid #fff;
    z-index: 9;
}

section.banner {
    position: relative;
}

.banner-wrap:before {
    position: absolute;
    content: '';
    background: #fff;
    right: 0;
    width: 48%;
    height: 44%;
    bottom: 0;
    border-radius: 20px 0 0 0;
}

.slider-for .slick-next:before,
.slider-for .slick-prev:before {
    position: absolute;
    content: '';
    background-image: url(../images/arr.png);
    width: 38px;
    height: 17px;
    background-repeat: repeat;
}

.slider-for .slick-prev:before {
    transform: rotate(180deg);
}

.slider-for .slick-next:hover:before,
.slider-for .slick-prev:focus,
.slider-for .slick-prev:hover:before,
.slider-for .slick-next:focus {
    filter: brightness(0) saturate(100%) invert(77%) sepia(0%) saturate(1%) hue-rotate(6deg) brightness(91%) contrast(88%);
}

.slider-for .slick-next {
    top: 73%;
}

.slider-for .slick-prev {
    left: unset;
    right: -24px;
    top: 81%;
}

section.about {
    padding: 80px 0;
}

.abt-text {
    position: relative;
    background: #f9f9f9;
    padding: 70px;
    border-radius: 0 10px 10px 0;
}

section.about .row {
    align-items: center;
}

.abt-img img {
    width: 100%;
    border-radius: 10px;
}

.abt-text ul li {
    font-size: 17px;
    color: #222222;
    text-transform: uppercase;
    font-family: 'Barlow';
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.abt-text:before {
    position: absolute;
    content: '';
    background: var(--theme1);
    width: 90%;
    height: 116%;
    left: 0;
    top: -8%;
    z-index: -1;
    border-radius: 0 10px 10px 0;
}

section.services {
    position: relative;
    padding: 90px 0;
    background-image: url(../images/ser-main.png);
    background-size: cover;
    background-color: #006ebf;
    z-index: 0;
}

section.services:before {
    position: absolute;
    content: '';
    background: url(../images/ser-bg.png);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.top-heading {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.top-heading h2 {
    color: #fff;
}

.top-heading h3 {
    color: #fff;
}

.top-heading p {
    color: #ffffffc7;
}

.ser-wrap img {
    width: 100%;
    border-radius: 12px;
    height: 420px;
    object-fit: cover;
    transition: 0.5s;
}

.ser-box {
    background: #fff;
    padding: 30px 30px;
    margin-top: -40px;
    z-index: 99;
    position: relative;
    margin-left: 10%;
    border-radius: 8px;
    width: 100%;
    transition: 0.54s;
    box-shadow: 0 0 10px #ccc;
}

.ser-box h3 {
    font-size: 23px;
    text-transform: uppercase;
    color: #222;
}

.ser-wrap {
    width: 90%;
}

.ser-slider .slick-slide {
    opacity: 1;
}

.ser-wrap:hover img {
    border: 1px solid #fff;
    box-shadow: 0 0 10px #fff;
}

.ser-wrap:hover .ser-box {
    background: var(--theme1);
    border: 1px solid #fff;
}

.ser-wrap:hover .ser-box * {
    color: #fff;
}

/* vnding  locaiton */
section.vending-locations.loc-home {
    padding-bottom: 20px;
}

.locatoin-text {
    width: 70%;
    margin-top: 50px;
}

section.vending-locations.loc-home .location-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

section.vending-locations.loc-home .location-card img {
    height: 240px;
}

section.vending-locations.loc-home .location-card .content {
    padding: 30px 10px;
}

section.vending-locations.loc-home .location-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

section.vending-locations.loc-home h2 {
    margin-bottom: 30px;
}


/* Testimonial */

.testimonial-box {
    background: #fff;
    box-shadow: 0px 0px 10px -2px;
    border-radius: 20px;
    position: relative;
    padding: 32px 40px;
    margin-top: 6px;
    margin-bottom: 6px;
    height: 350px;
}

section.testimonials:before {
    position: absolute;
    content: '';
    background: url(../images/ser-bg.png);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.test-cont p {
    color: #000;
}


.testimonial-box::before {
    background: url(../images/testbg.png) no-repeat;
    position: absolute;
    margin: auto;
    width: 240px;
    content: '';
    right: 10px;
    height: 71%;
    bottom: 0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.test-cont {
    position: relative;
    margin-top: 25px;
}

.client-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.test-bk {
    width: 50%;
    text-align: end;
}

.test-cont h3 {
    text-transform: capitalize;
    font-size: 22px;
    margin: 10px 0;
    font-weight: 500;
}

ul.test-bk li i {
    color: #FFC107;
    font-size: 19px;
    Z-INDEX: 99;
    position: relative;
}

.test-cont h4 {
    color: #000000;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}


.testi_slider a {
    color: #000;
}

.testi_slider .slick-next:before {
    position: absolute;
    content: '';
    background-image: url(../images/arr2.png);
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    left: 0;
    bottom: 0;
    background-size: contain;
}

.testi_slider .slick-prev:before {
    position: absolute;
    content: '';
    background-image: url(../images/arr1.png);
    background-repeat: no-repeat;
    left: -45px;
    bottom: 0;
    background-size: contain;
    width: 70px;
    height: 70px;
}

.testi_slider .slick-prev,
.testi_slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 60%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.testi_slider .slick-next {
    right: -30px;
}

.testi_slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

.test-head p {
    font-size: 14px;
    text-align: center;
    color: gray;
}

.client-img img {
    width: 99px;
    height: 100px;
    border-radius: 50px;
    background: var(--theme1);
    padding: 0px 9px 7px 0px;
}

.testimonialBoxs {
    margin-top: 15px;
    margin-bottom: 15px;
}

.container-fluid {
    padding: 0 5%;
}


section.testimonials {
    position: relative;
    padding: 90px 0;
    background-image: url(../images/ser-main.png);
    background-size: cover;
    background-color: #006ebf;
    z-index: 0;
}


/* end */
/* footer start */
.footer-links.footer-links-contact li {
    margin: 20px 0;
    gap: 20px;
    display: flex;
    align-items: center;
}

.footer-links.footer-links-contact li a {
    color: #ffffff8a;
    font-family: 'Montserrat';
    font-size: 13px;
}


.footer-links.footer-links-contact li i {
    color: white;
}

footer {
    position: relative;
    padding: 70px 0 0 0;
    background-image: url(../images/ser-main.png);
    background-size: cover;
    background-color: #006ebf;
    z-index: 0;
}

.ftr_logo a img {
    width: 230px;
    margin-bottom: 20px;
    background: #fff;
}

footer .row {
    align-items: center;
}

.ftr-right-bar .row {
    align-items: start;
}


.bar {
    display: block;
    margin: 0 0 10px 0;
    color: #000;
    padding: 0 0 20px 0;
    position: relative;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Barlow';
}

.ftr_box {
    position: relative;
    z-index: 2;
    padding: 16px 10px 40px 50px;
    height: 281px;
}

.ftr_logo {
    padding-left: 14px;
    position: relative;
    height: 281px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ftr_logo:before {
    position: absolute;
    height: 100%;
    width: 1px;
    content: '';
    background-color: #ffffff4d;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.ftr_logo:after {
    position: absolute;
    content: '';
    width: 114%;
    height: 1px;
    left: 0;
    top: 0;
    z-index: 9;
    background: #ffffff4d;
}


.ftr_box.ftr_box1 {
    padding-left: 30px;
}

.ftr_box::before {
    position: absolute;
    height: 80%;
    width: 1px;
    content: '';
    background-color: #ffffff4d;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.ftr_box1::after {
    position: absolute;
    height: 100%;
    width: 1px;
    content: '';
    background-color: #ffffff4d;
    bottom: 0;
    right: 0;
}

.ftr_logo p {
    width: 100%;
    margin: 0 0 10px 0px;
    color: #ffffffa1;
}

.ftr_logo h5 {
    color: #fff;
}

ul.footer_social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

ul.footer_social li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ffffffa1;
    transition: 0.3s ease-in-out;
}

ul.footer_social li a:hover i {
    transition: 0.3s ease-in-out;
    color: #fff;

}

ul.footer_social li a:hover {
    transition: 0.3s ease-in-out;
    background: -webkit-linear-gradient(#006ebf, #006ebf);
}

ul.footer_social li a i {
    color: #ffffffa1;
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

ul.services a {
    font-size: 14px;
    margin: 0 0 12px 0;
    transition: 0.3s ease-in-out;
}

ul.services {
    column-count: 1;
}

.ftr_box a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #ffffff8a;
    display: block;
    width: fit-content;
    margin: 15px 0;
}

.footer-links.footer-links-contact ul li img {
    object-fit: scale-down;
    width: auto;
}

.copy_right p {
    margin: 0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ffffff4d;
    color: #ffffff8a;
}


ul.our-happy-box-ul img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 1px 1px 7px 4px #00000029;
}

.ftr-right-bar {
    position: relative;
    z-index: 6;
}

.ftr-right-bar::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: #fff;
    content: '';
    z-index: 2;
}

.footer-links.footer-links-contact a {
    margin: 0px 0;
}


ul.services a:hover {
    padding: 0 0 0 15px;
    transition: 0.3s ease-in-out;
}

ul.quick a {
    transition: 0.3s ease-in-out;
}

ul.quick a:hover {
    padding: 0 0 0 15px;
    transition: 0.3s ease-in-out;
}

footer:before {
    position: absolute;
    content: '';
    background: url(../images/ser-bg.png);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

/* footer end */
section.smart-matching {
    padding: 80px 0 180px;
}

.smart-img img {
    width: 84%;
    margin: 0 0 0 auto;
    display: block;
    height: 600px;
}

.counter-box {
    padding: 30px;
    box-shadow: 0 0 8px #ccc;
    border-radius: 7px;
    background: #fff;
}

.plus {
    font-size: 52px;
    color: #006ebf;
    font-family: 'Barlow';
    font-weight: 500;
    line-height: 1.1;
    width: fit-content;
    border-bottom: 3px solid #006ebf;
    padding-bottom: 10px;
}

.counter-box h3 {
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 10px 0 20px 0;
}

.counter-box p {
    margin: 0;
}

.counter-wrap {
    margin-top: -260px;
}

section.book-service {
    padding: 80px 0;
}

.book-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-img ul li span img {
    width: auto;
    height: auto;
}

.book-wrap {
    background: #f1f1f1;
    padding: 50px;
    border-radius: 0 10px 10px 0;
}

.inp-box input,
.inp-box select,
.inp-box textarea {
    width: 100%;
    height: 50px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-size: 14px;
    text-transform: uppercase;
    color: #767676;
    margin-bottom: 20px;
    padding: 10px;
}

.inp-box {
    position: relative;
}

.inp-box i {
    position: absolute;
    top: 23px;
    right: 0;
    color: #767676;
    font-size: 16px;
}

.inp-box input::placeholder {
    color: #767676;
}

.inp-box textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #ccc;
    padding: 10px;
    align-content: end;
    border-radius: 6px;
}

.book-img {
    z-index: 99;
    height: 500px;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px 0px 0px 10px;
}

.book-img ul li span {
    width: 60px;
    height: 60px;
    background: var(--theme1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    outline: 13px solid #fff;
}

.book-img ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.book-img h6 {
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.book-img h5 {
    font-size: 36px;
    color: #fff;
    margin: 0;
}

/* ++++++++++++++++++++++++++++++++++++++ Home END ++++++++++++++++++++++++++++++++++++++ */



/* ++++++++++++++++++++++++++++++++++++++ Inner Pages ++++++++++++++++++++++++++++++++++++++ */

section.banner.inner-banner .banner-wrap:before {
    display: none;
}

section.banner.inner-banner .banner-wrap {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
}

section.banner.inner-banner .ban-text {
    margin: 0;
}

section.banner.inner-banner .ban-text h1 {
    text-align: center;
    width: 100%;
    font-size: 70px;
    background: transparent;
    padding: 0;
    margin: 0;
}

.miss-img {
    position: relative;
    z-index: 0;
}

.miss-img img {
    width: 434px;
    margin: 0 0 0 auto;
    display: block;
    height: 370px;
}

section.miss-vis .row {
    align-items: center;
}

.miss-img:before {
    position: absolute;
    content: '';
    background: -webkit-linear-gradient(-90deg, #006ebf 0%, rgb(0 110 191 / 47%) 100%);
    z-index: -1;
    right: -20px;
    width: 60%;
    height: 110%;
    top: -5%;
    border-radius: 0;
    z-index: -1;
}

.miss-img.vis-img img {
    margin: 0;
}

.miss-img.vis-img:before {
    right: unset;
    left: -4%;
}

section.miss-vis {
    padding: 80px 0;
}

.miss-text h2 {
    color: #000;
}

.miss-text p {
    color: #000;
}

section.miss-vis .row.mt-5 {
    margin-top: 80px !important;
}

section.services.inner-ser:before {
    display: none;
}

section.services.inner-ser {
    background: unset;
}

section.services.inner-ser .top-heading * {
    color: #000;
}

section.ser-detail {
    padding: 80px 0 50px;
}

section.ser-detail .row {
    align-items: center;
}


.ser-det-img img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
}

section.ser-detail .ser-box-det h3 {
    font-size: 40px;
    text-transform: uppercase;
}

.ser-box-det ul li {
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 24px;
}

.ser-box-det ul li:before {
    position: absolute;
    content: '';
    background: #5b585b;
    width: 8px;
    height: 7px;
    border-radius: 60%;
    left: 0;
    top: 9px;
}

section.ser-detail .ser-text p {
    margin: 0;
}

/*Inner Contact Us Start*/

.inner-contact-us-sec {
    padding: 100px 0;
}

.inner-contact-us-have-any-question p {
    color: #000;
    font-weight: 600;
}

.inner-contact-us-have-any-question h2 {
    margin-bottom: 5px;
}

.inner-contact-us-have-any-question ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
    font-weight: 500;
}

.inner-contact-us-have-any-question ul li span {
    background: var(--theme1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border-radius: 10px 0 10px 0;
    height: 50px;
    font-size: 18px;
    color: #fff;
}

.inner-contact-us-have-any-question ul {
    line-height: 80px;
}

.inner-contact-us-have-any-question i.fas.fa-phone-alt {
    transform: rotate(95deg);
}

.inner-contact-us-form {
    margin-left: 30px;
}

.inner-contact-us-form input {
    width: 100%;
    height: 55px;
    padding: 0 15px;
    border: 2px solid #d4d1d1;
    margin-bottom: 20px;
    background: #ffff;
    border-radius: 20px 0;
}

.inner-contact-us-form textarea {
    width: 100%;
    height: 150px;
    padding: 15px 15px;
    border: 2px solid #d4d1d1;
    resize: none;
    margin-bottom: 20px;
    border-radius: 20px 0;
}

.inner-contact-us-form button {
    border: none;
}

.inenr-contact-us-row iframe {
    width: 100%;
    height: 500px;
    border: 2px solid #006ebf !important;
    border-radius: 30px;
}

.inenr-contact-us-row {
    margin-top: 55px;
}

section.banner.inner-banner:before,
section.banner.inner-banner .banner-wrap:after {
    display: none;
}

/*Inner Contact Us Ends*/
/* Quote */

section.booking-wrap {
    padding: 100px 0;
}

.booking-in input {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #80808080;
    background: transparent;
    height: 55px;
    padding: 15px;
    color: #ababab;
    border-radius: 0;
    font-size: 13px;
    text-transform: unset;
}

.booking-in input::placeholder {
    color: #ababab;
    font-weight: 500;
}

.booking-in textarea::placeholder {
    color: #ababab;
    font-weight: 500;
}

.booking-in textarea {
    width: 100%;
    margin-bottom: 1%;
    border: 1px solid #80808080;
    padding: 15px 10px;
    height: 150px;
    background: transparent;
    border-radius: 0;
    font-size: 13px;
}

.booking-in input::placeholder,
.booking-in textarea::placeholder {
    text-transform: uppercase;
}

.booking-btn {
    text-align: center;
}

section.booking-wrap button.theme-btn {
    border: unset;
}

.apointment-head {
    text-align: center;
    margin-bottom: 3%;
}

.booking-in {
    position: relative;
    border-radius: 10px;
}

.booking-in i {
    position: absolute;
    right: 1px;
    width: 15%;
    height: 53px;
    display: inline-flex;
    color: white;
    align-items: center;
    justify-content: center;
    background: var(--theme1);
    font-size: 26px;
    top: 1px;
    pointer-events: none;
    border-radius: 0;
}

.booking-in select {
    width: 100%;
    height: 55px;
    border: 1px solid #80808080;
    padding-left: 15px;
    color: #ababab;
    border-radius: 0;
    font-size: 13px;
    text-transform: uppercase;
}

.header-btn {
    width: fit-content;
    margin: 0 auto;
}

/* end */
/* Locatoin */
.vending-locations {
    position: relative;
    padding: 80px 0;
    color: white;
}


.vending-locations h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sub-text {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    opacity: .8;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.location-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    color: #222;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: .4s;
}

.location-card:hover {
    transform: scale(1.05) translateY(-8px);
}

.location-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.location-card .content {
    padding: 30px 20px;
}

.location-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-card p {
    font-size: 15px;
    margin-bottom: 10px;
}

.location-card .content ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-transform: capitalize;
    font-size: 17px;
}

.location-card .content ul li a img {
    width: auto;
    height: auto !important;
    filter: brightness(0.5);
}

.location-card .content ul li a span {
    border-bottom: 1px solid #02458b;
}

.location-card .content ul {
    margin: 0;
}

/* end */
section.privacy {
    padding: 80px 0;
}

section.privacy h3 {
    font-size: 22px;
    font-weight: 600;
}

section.privacy ul li {
    line-height: 35px;
    padding-left: 30px;
    color: #000;
    list-style: inside disc;
    font-size: 16px;
    font-weight: 500;
}

section.privacy p {
    font-size: 16px;
}

/* ++++++++++++++++++++++++++++++++++++++ Inner Pages Start ++++++++++++++++++++++++++++++++++++++ */

html {
    overflow-x: hidden;
}

.abt-img {
    height: 500px;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.abt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {

    header .container-fluid {
        padding: 0 0%;
    }

    .theme_btn {
        font-size: 12px;
    }

    .ban-text {
        margin-top: 40px;
        margin-bottom: 70px;
    }



}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .ser-slider .slick-slide {
        opacity: 1;
        margin: 0px 5px;
    }

    .ser-box {
        padding: 20px 20px;
    }

    .ser-box h3 {
        font-size: 20px;
    }

    .abt-text {
        padding: 30px;
    }

    h2 {
        font-size: 45px;
    }

    header .container-fluid {
        padding: 0 0%;
    }

    .menuSec ul {
        gap: 15px;
    }

    .theme_btn {
        font-size: 12px;
        height: 45px;
        padding: 0 7px 0px 15px;
        gap: 10px;
    }

    .theme_btn span {
        width: 30px;
        height: 30px;
    }

    .head-btn a.theme_btn {
        flex-shrink: 0;
        width: max-content;
    }

    .ban-img img {
        width: 95%;
        margin: 0 auto;
    }

    .ban-text {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .banner-wrap:before {
        height: 55%;
    }




}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    header .container-fluid {
        padding: 0 0;
    }

    .menuSec ul {
        justify-content: space-between;
        gap: 0px;
    }

    .menuSec ul li a {
        font-size: 12px;
    }

    .theme_btn {
        gap: 10px;
    }

    .ser-slider .slick-slide {
        opacity: 1;
        margin: 0px 5px;
    }

    .ser-box {
        padding: 20px 20px;
        margin-left: 10%;
    }

    .ser-box h3 {
        font-size: 20px;
    }

    h2 {
        font-size: 30px;
        margin: 0 0 10px;
    }

    .smart-img img {
        width: 88%;
        height: 530px;
    }

    .counter-wrap {
        margin-top: -165px;
    }

    section.smart-matching {
        padding: 60px 0 100px;
    }

    .abt-text {
        padding: 30px;
    }

    section.services {
        padding: 60px 0;
    }

    .book-img ul {
        gap: 20px;
        left: 25px;
        bottom: 20px;
    }

    .book-img h5 {
        font-size: 25px;
    }

    .book-img ul li span {
        width: 50px;
        height: 50px;
        outline: 5px solid #fff;
    }

    .book-wrap {
        padding: 30px;
    }

    footer {
        padding: 60px 0 0 0;
    }

    .ftr-right-bar::before {
        display: none;
    }

    .ftr_box {
        height: fit-content;
        padding: 15px 10px 0px 0px;
    }

    .bar {
        color: #fff;
        margin: 0 0 10px 0;
        padding: 0 0 20px 0;
        font-size: 20px;
    }

    .ftr_box::before {
        display: none;
    }

    .ftr_logo::before,
    .ftr_logo:after {
        display: none;
    }

    .ftr_logo {
        padding-left: 0px;
        height: fit-content;
        padding-bottom: 10px;
    }

    .ftr_box.ftr_box1 {
        padding-left: 0px;
    }

    .ftr_box1::after {
        display: none;
    }

    p {
        font-size: 12px;
    }

    .ftr_box ul {
        margin-bottom: 10px;
    }

    .ban-text h2 {
        font-size: 40px;
    }

    .ban-text h3 {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .slider-nav .slick-slide {
        margin: 0px 5px;
    }

    .ban-text {
        margin-top: 40px;
        margin-bottom: 70px;
    }

    .ban-img img {
        width: 100%;
    }

    .banner-wrap:before {
        width: 49%;
        height: 65%;
    }

    .banner-wrap:after {
        top: 46%;
    }

    section.banner:before {
        top: 44.8%;
    }

    header {
        margin: 0 45px 0px 5px;
    }

    .head-btn a.theme_btn {
        flex-shrink: 0;
        width: max-content;
    }

    .theme_btn {
        height: 42px;
        font-size: 12px;
        padding: 0 5px 0px 11px;
    }

    .theme_btn i {
        width: 11px;
        height: 11px;
    }

    .theme_btn span {
        width: 30px;
        height: 30px;
    }

    .testimonial-box {
        padding: 20px 29px;
        margin-top: 6px;
    }









}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    header {
        margin: 0 0px;
    }

    .ban-text h2 {
        font-size: 35px;
        margin-bottom: 5px;
    }

    .slider-nav .slick-slide {
        margin: 0px 5px;
    }

    .ban-text h3 {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .ban-img img {
        width: 90%;
    }

    .banner-wrap:before {
        width: 101%;
        height: 40%;
        bottom: -1px;
        border-radius: 0px 0 0 0;
    }

    .slider-for .slick-next {
        top: 57%;
        right: 15px;
    }

    .slider-for .slick-prev {
        top: 57%;
        left: -18px;
    }

    section.services {
        padding: 40px 0;
        overflow: hidden;
    }

    .ser-box {
        padding: 20px 20px;
    }

    .ser-box h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .ser-wrap img {
        height: 300px;
    }

    .ser-slider .slick-slide {
        margin: 0px 5px;
    }

    .top-heading {
        width: 100%;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 30px;
        margin: 0 0 10px;
    }

    h3 {
        font-size: 25px;
        margin: 0 0 10px;
    }

    section.about {
        padding: 40px 0;
    }

    section.testimonials {
        overflow: hidden;
        padding: 40px 0px;
    }

    .testimonial-box {
        padding: 15px 20px;
        height: fit-content;
        border-radius: 10px;
    }

    .client-img img {
        width: 80px;
        height: 80px;
    }

    .book-img ul {
        gap: 20px;
        left: 25px;
        bottom: 40px;
    }

    .book-img h5 {
        font-size: 24px;
    }

    .book-img ul li span {
        width: 50px;
        height: 50px;
        outline: 5px solid #fff;
    }

    .book-img img {
        height: 100%;
    }

    .book-wrap {
        padding: 20px;
        height: fit-content;
    }

    section.book-service {
        padding: 40px 0;
    }

    footer {
        padding: 40px 0 0 0;
    }

    .ftr-right-bar::before {
        display: none;
    }

    .ftr_box {
        height: fit-content;
        padding: 15px 10px 0px 0px;
    }

    .bar {
        color: #fff;
        margin: 0 0 10px 0;
        padding: 0 0 20px 0;
        font-size: 20px;
    }

    .ftr_box::before {
        display: none;
    }

    .ftr_logo::before,
    .ftr_logo:after {
        display: none;
    }

    .ftr_logo {
        padding-left: 0px;
        height: fit-content;
        padding-bottom: 10px;
    }

    .ftr_box.ftr_box1 {
        padding-left: 0px;
    }

    .ftr_box1::after {
        display: none;
    }

    p {
        font-size: 12px;
    }

    .ftr_box ul {
        margin-bottom: 10px;
    }

    ul.test-bk li i {
        font-size: 10px;
    }

    .testi_slider .slick-slide {
        margin: 0px 5px;
    }

    section.smart-matching {
        padding: 0px 0 40px;
    }

    .smart-img img {
        width: 100%;
        height: auto;
    }

    .counter-wrap {
        margin-top: auto;
    }

    .counter-box {
        padding: 15px;
        margin: 10px 0px 0px;
    }

    .plus {
        font-size: 30px;
        padding-bottom: 5px;
        border-bottom: 2px solid #006ebf;
    }

    .vending-locations {
        padding: 40px 0;
    }

    .vending-locations h2 {
        font-size: 30px;
        margin-bottom: 15px;
        letter-spacing: 0px;
    }

    .abt-text {
        padding: 20px;
    }

    .abt-text p {
        margin-bottom: 10px
    }

    .head-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.vending-locations.loc-home {
        padding-bottom: 0px;
    }

    .ban-text {
        margin-top: 20px;
    }

    .banner-wrap:after,
    .banner::before {
        display: none;
    }

    .slider-nav ul.slick-dots {
        bottom: -30px;
    }

    .slider-for {
        margin-top: 50px;
    }

    .banner-wrap {
        margin: 10px;
        border-radius: 20px;
    }

    .slicknav_nav a:hover {
        background: #006ebf;
    }

    .testi_slider .slick-prev,
    .testi_slider .slick-next {
        display: none;
    }


}

@media only screen and (min-width: 0px) and (max-width: 575px) {

    header {
        margin: 0 0px;
    }

    .ban-text h2 {
        font-size: 35px;
        margin-bottom: 5px;
    }

    .slider-nav .slick-slide {
        margin: 0px 5px;
    }

    .ban-text h3 {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .ban-img img {
        width: 90%;
    }

    .banner-wrap:before {
        width: 101%;
        height: 23%;
        bottom: -1px;
        border-radius: 0px 0 0 0;
    }

    .slider-for .slick-next {
        top: 57%;
        right: 15px;
    }

    .slider-for .slick-prev {
        top: 57%;
        left: -18px;
    }

    section.services {
        padding: 40px 0;
        overflow: hidden;
    }

    .ser-box {
        padding: 20px 20px;
    }

    .ser-box h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .ser-wrap img {
        height: 300px;
    }

    .ser-slider .slick-slide {
        margin: 0px 5px;
    }

    .top-heading {
        width: 100%;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 30px;
        margin: 0 0 10px;
    }

    h3 {
        font-size: 25px;
        margin: 0 0 10px;
    }

    section.about {
        padding: 40px 0;
    }

    section.testimonials {
        overflow: hidden;
        padding: 40px 0px 80px;
    }

    .testimonial-box {
        padding: 15px 20px;
        height: fit-content;
        border-radius: 10px;
    }

    .client-img img {
        width: 80px;
        height: 80px;
    }

    .book-img ul {
        gap: 20px;
        left: 25px;
        bottom: 40px;
    }

    .book-img h5 {
        font-size: 24px;
    }

    .book-img ul li span {
        width: 50px;
        height: 50px;
        outline: 5px solid #fff;
    }

    .book-img img {
        height: 100%;
    }

    .book-wrap {
        padding: 20px;
        height: fit-content;
    }

    section.book-service {
        padding: 40px 0;
    }

    footer {
        padding: 40px 0 0 0;
    }

    .ftr-right-bar::before {
        display: none;
    }

    .ftr_box {
        height: fit-content;
        padding: 15px 10px 0px 0px;
    }

    .bar {
        color: #fff;
        margin: 0 0 10px 0;
        padding: 0 0 20px 0;
        font-size: 20px;
    }

    .ftr_box::before {
        display: none;
    }

    .ftr_logo::before,
    .ftr_logo:after {
        display: none;
    }

    .ftr_logo {
        padding-left: 0px;
        height: fit-content;
        padding-bottom: 10px;
    }

    .ftr_box.ftr_box1 {
        padding-left: 0px;
    }

    .ftr_box1::after {
        display: none;
    }

    p {
        font-size: 12px;
    }

    .ftr_box ul {
        margin-bottom: 10px;
    }

    ul.test-bk li i {
        font-size: 10px;
    }

    .testi_slider .slick-slide {
        margin: 0px 5px;
    }

    section.smart-matching {
        padding: 0px 0 40px;
    }

    .smart-img img {
        width: 100%;
        height: auto;
    }

    .counter-wrap {
        margin-top: auto;
    }

    .counter-box {
        padding: 15px;
        margin: 10px 0px 0px;
    }

    .plus {
        font-size: 30px;
        padding-bottom: 5px;
        border-bottom: 2px solid #006ebf;
    }

    .vending-locations {
        padding: 40px 0;
    }

    .vending-locations h2 {
        font-size: 30px;
        margin-bottom: 15px;
        letter-spacing: 0px;
    }

    .abt-text {
        padding: 20px;
        margin-top: 40px;
    }

    .abt-text p {
        margin-bottom: 10px
    }

    .menuSec .col-6 {
        width: 100%;
    }

    .head-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section.vending-locations.loc-home {
        padding-bottom: 0px;
    }

    .ban-text {
        margin-top: 20px;
    }

    .banner-wrap:after,
    .banner::before {
        display: none;
    }

    .slider-nav ul.slick-dots {
        bottom: -30px;
    }

    .slider-for {
        margin-top: 50px;
    }

    .banner-wrap {
        margin: 10px;
        border-radius: 20px;
    }

    .slicknav_nav a:hover {
        background: #006ebf;
    }

    .slider-for .slick-next,
    .slider-for .slick-prev {
        top: 70%;
    }

    .testi_slider .slick-next:before,
    .testi_slider .slick-prev:before {
        width: 35px;
        height: 35px;
    }

    .testi_slider .slick-prev,
    .testi_slider .slick-next {
        top: 110%;
    }

    .testi_slider .slick-prev::before,
    .testi_slider .slick-prev {
        left: 0;
    }

    .testi_slider .slick-next::before,
    .testi_slider .slick-next {
        right: 10px;
    }

    .ser-slider {
        width: 90%;
        margin: 0px auto;
    }

    .ser-slider .slick-prev,
    .ser-slider .slick-next {
        width: 40px;
        height: 40px;
        display: flex;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        border: 1px solid #fff;
    }

    .ser-slider .slick-next::before {
        color: #fff;
        font-size: 12px;
        content: '\f054';
        font-family: 'FontAwesome';
    }

    .ser-slider .slick-prev::before {
        color: #fff;
        font-size: 12px;
        content: '\f053';
        font-family: 'FontAwesome';
    }

    .ser-box {
        margin-left: 4%;
    }

    .ser-wrap {
        margin: 0px auto;
    }













}

/*Media Query End*/


section.error-404.not-found {
    text-align: center;
    padding: 90px 10px;
}

section.error-404.not-found {
    text-align: center;
}

section.error-404.not-found h2 {
    font-size: 51px;
}
