

/* General Styles */
body {
    padding: 0;
    margin: 0;
    background: #fff;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

a {
    transition: 0.5s all;
}

a:hover {
    text-decoration: none;
}

input[type="button"], input[type="submit"] {
    transition: 0.5s all;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

label {
    margin: 0;
}

img {
    width: 100%;
}



/* new code */

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
    z-index: 1030; /* Ensure it is above other content */
}
.main-content {
    margin-top: 150px; /* Adjust based on the height of your navbar and topbar */
}

.topbar {
    padding: 20px;
    border-radius: 260px 180px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    height: 75px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}
/* Logo Image Styling */
.logo-image {
    max-height: 170px; /* Set maximum height */
    width: auto; /* Maintain aspect ratio */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        max-height: 75px;
    }
}

.d-flex.m-3.me-0 {
    align-items: center;
}

/* Common styling for both icons */
.d-flex.m-3.me-0 .icon {
    margin: 0 10px;
    color: #000; /* Default color */
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Specific styling for the icons */
.d-flex.m-3.me-0 .icon .fa-right-to-bracket,
.d-flex.m-3.me-0 .icon .fa-user {
    font-size: 24px; /* Adjust the size as needed */
}

/* Hover effects */
.d-flex.m-3.me-0 .icon:hover {
    color: var(--bs-primary); /* Change to primary color on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .d-flex.m-3.me-0 .icon {
        margin: 0 5px;
    }

    .d-flex.m-3.me-0 .icon .fa-right-to-bracket,
    .d-flex.m-3.me-0 .icon .fa-user {
        font-size: 20px; /* Adjust size for smaller screens */
    }
}

@media (max-width: 576px) {
    .d-flex.m-3.me-0 .icon {
        margin: 0 3px;
    }

    .d-flex.m-3.me-0 .icon .fa-right-to-bracket,
    .d-flex.m-3.me-0 .icon .fa-user {
        font-size: 18px; /* Adjust size for even smaller screens */
    }
}

/* Ensure topbar is visible on mobile */
@media (max-width: 992px) {
    .topbar {
        display: block !important;
        padding: 10px 0;
        text-align: center;
    }

    .topbar .top-info,
    .topbar .top-link {
        flex-direction: column;
        align-items: center;
    }

    .topbar .top-info small,
    .topbar .top-link a {
        display: block;
        margin: 5px 0;
    }
}

/*** Navbar End ***/



/* login and register modal */

.modal-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background: url(../images/taxi2.jpg) no-repeat center #fff;
	background-size: cover;
	border: 6px solid #fff;
	border-radius: 0rem;
	outline: 0;
	color: #fff;
}

.form-control {
    letter-spacing: 1px;
    padding: 0.5rem 0.75rem;
}

.right-w3l input[type="submit"] {
	background: #ffc107;
	border: none;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
     letter-spacing: 2px;
    padding: 12px;
	cursor: pointer;
}
.right-w3l input[type="submit"]:hover {
	background: #daa608;
}


.modal-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.modal-header {
    background: #ffc107;
	color: #fff;
	border: none;
    padding: 1.5rem;
}

.modal-body {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.46);
}
.modal-body p {
    margin: 0;
    letter-spacing: 1px;
    font-size: 15px;
}
label{
    letter-spacing: 1px;
    font-size: 15px;
}
.forgot-w3l{
    letter-spacing: 1px;
    font-size: 15px;
}

/* //modal */

/* testimonial */
.testimonial {
    margin-bottom: 15px;
}
.stars {
    color: gold;
}
.card {
    border-radius: 15px;
}
.card-body {
    padding: 2rem;
}
#testimonialForm .form-control {
    border-radius: 10px;
    padding: 10px;
}
#testimonialForm .btn {
    border-radius: 10px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
.carousel-inner {
    display: flex;
    flex-direction: column;
}
.carousel-item {
    height: calc(100% / 3); /* Adjust this value based on the number of items to show at once */
}
.carousel-item.active {
    transition: transform 0.5s ease-in-out;
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item {
    transform: translateY(0);
}
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    transform: translateY(100%);
}
.carousel-item-next.carousel-item-right,
.carousel-item-prev.carousel-item-left {
    transform: translateY(-100%);
}
/* feedback */
form {
  display: flex;
  flex-direction: column;
}

label, input, textarea, button {
  margin-bottom: 10px;
}

.feedback {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 10px;
}

.feedback p {
  margin: 0;
}

button {
  padding: 10px;
  background-color: #28a745;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #218838;
}
/* //feedback */

/* //testimonial */
.container__left {
     padding: 20px;
     }

.container__right {
     position: relative;
     }

.card {
     width: 100%;
     margin: 10px 0;
     padding: 20px;
     box-shadow: 0 4px 8px rgba(0,0,0,0.1);
     border-radius: 10px;
     }

.card__content {
     display: flex;
     align-items: center;
     }

.card__details {
     margin-left: 15px;
     }

.carousel-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     }
.carousel-inner {
     height: 100%;
     }

/*--footer--*/

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
}

.footer h3 {
    color: #ff9800;
    margin-bottom: 20px;
}

.footer a {
    color: #ff9800;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: #ffc107;
}

.footer .fas, .footer .fab {
    margin-right: 10px;
    color: #ff9800;
}

.footer .footer-social ul {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer .footer-social ul li a {
    background: black;
    color: #ff9800;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;
}

.footer .footer-social ul li a:hover {
    background: #ff9800;
}

.footer .w3ls-footer-bottom-list {
    list-style: none;
    padding: 0;
}

.footer .w3ls-footer-bottom-list li {
    margin-bottom: 15px;
}

.footer .w3ls-footer-bottom-list li span {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .footer .footer-grid-agileits-w3ls1,
    .footer .subscribe-main {
        margin-bottom: 20px;
    }

    .footer .footer-social ul {
        justify-content: center;
    }
}

/*--copyright--*/

.copyrighttop {
    margin: 2em 0 0;
}

.copyright {
    background: #141415;
    color: white;
    padding: 1em 0;
    border-top: 1px solid rgba(25, 24, 24, 0.58);
}

.w3layouts-agile-copyrightbottom p {
    color: #64686b;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 16px;
}

.copyrighttop li {
    list-style: none;
    display: inline-block;
}

.w3layouts-agile-copyrightbottom p a {
    color: orange;
}


/*-- About Us --*/
.logo-img {
    height: 100px;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.card ul {
    margin-top: 1rem;
    font-size: 1rem;
}

.card ul li {
    color: #6c757d;
}

.fa {
    color: #ffc107;
}

@media (max-width: 767.98px) {
    .card-body {
        padding: 1rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .card ul {
        font-size: 0.875rem;
    }
}

h1.heading,h2.heading,h3.heading {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #333;
}
h5.heading {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 2px;
}
.about-grid i.fa,.about-grid i.fas {
    font-size: 40px;
}
i.fas.fa-money-bill-alt {
    color: #00bce4;
}
i.fa.fa-users {
    color: #34bf49;
}
i.fa.fa-road {
    color: #ff4c4c;
}
i.fa.fa-taxi {
    color: #f48924;
}
i.fa.fa-cogs {
    color: #2dde98;
}
i.fa.fa-smile {
    color: #ce181e;
}
.about-grid h4 {
    margin-top: 20px;
    color: #000;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}
.about-grid h4:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 20%;
    background: #333;
    bottom: -80%;
    left: 40%;
}
.about-grid img {
    width: auto;
    padding: 15px;
}

.about-bottom-grid p {
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    color: #2c2c2c;
}
.about-bottom-grid h4 {
    text-align: left;
    line-height: 36px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-head a {
    background: #333;
    color: #fff;
    padding: 15px 30px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: capitalize;
}
.about-head a:hover {
    background: #ffc107;
}

/*-- //About Us--*/


/*-- major routes --*/
.district-card {
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
    border-radius: 5px;
    border: none;
    overflow: hidden;
    color: black;
    height: 350px; /* Set the height of the card */
    width: 100%; /* Set the width of the card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.district-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.district-card h5 {
    background-color: #343a40;
    color: #fff;
    padding: 10px;
    margin: 0;
}
.district-card .card-body {
    padding: 10px;
    flex: 1; /* Allow the card body to grow and take available space */
    overflow-y: auto; /* Add vertical scrollbar if needed */
}
.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.city-list li {
    padding: 5px 10px;
    border: 1px solid #e9ecef;
    margin: 5px;
    border-radius: 3px;
    transition: background-color 0.3s;
}
.city-list li:hover {
    background-color: #e9ecef;
}
.district-card:nth-child(odd) .card-body {
    background-color: #f8f9fa;
}
.district-card:nth-child(even) .card-body {
    background-color: #e2e6ea;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .district-card {
        height: auto; /* Allow the height to adjust based on content */
        width: 100%; /* Full width on mobile */
        margin-bottom: 20px;
    }

    .city-list {
        display: block; /* Stack list items vertically */
    }

    .city-list li {
        width: 100%; /* Full width list items */
        margin: 5px 0; /* Vertical spacing */
    }

    .col-md-6,
    .col-lg-4,
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/*---//major routes--*/




/*-- Car Slider --*/

.slidering h5 {
	font-size: 1.2em;
	color: #000;
    font-weight: 600;
    letter-spacing: 2px;
}

.thumbnail {
	display: block;
	padding: 4px;
	margin-bottom: 0;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

/* The colour of the indicators */

.tabs-grids img {
	width: 69%;
	margin: 2em 0;
}

.text-info h4 {
	font-size: 2em;
	font-weight: bold;
	color: #222;
	margin-bottom: 0.3em;
	letter-spacing: 1px;
}

.carousel-control-next-icon {
    background-image: none;
    color: #333;
}
.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
    color: #999;
}
.carousel-control-prev {
    left: -6%;
    top: 35%;
    height: 40px;
    width: 40px;
    background: none;
    color: #000;
    box-shadow: none;
    background-image: none !important;
    opacity: 0.9;
    line-height: 34px;
}
.carousel-control-next {
    right: -6%;
    top: 35%;
    height: 40px;
    width: 40px;
    background: none;
    color: #000;
    box-shadow: none;
    background-image: none !important;
    opacity: 0.9;
    line-height: 34px;
}
/*-- //Car Slider --*/

/*-- counter--*/
.services-bottom {
    background: url(../images/price.jpg) no-repeat 0px 0px;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed;

}
.banner-dott1 {
    background: rgba(0, 0, 0, 0.4);
}
.stats h2.heading {
    color: #fff;
}
.agile_count_grid_left {
    text-align: center;
}
.agile_count_grid_left span,.agile_count_grid_right p{
	font-size:3em;
}
.agile_count_grid_right {
    text-align: center;
}
.agile_count_grid_right p{
	color: #fff;
     font-weight: 600;
    letter-spacing: 1px;
}
.w3_agile_stats_grid h4 {
      font-size: 17px;
    letter-spacing: 3px;
    color: #ccc;
    margin: .5em 0 0;
    text-transform:capitalize;
    position: relative;
    text-align: center;
}
.w3_agile_stats_grid h4:after{
    position: absolute;
    content: "";
    height: 2px;
    width: 20%;
    background: #eee;
    bottom: -100%;
    left: 40%;
}
.agile_count_grid_left span {
    color: #ffc107;
    margin-bottom: 15px;
}
/*-- //counter--*/

/*-- booking --*/
.booking{
	background: #00bcd4;
}
.booking h3{
    color: #eee;
    letter-spacing: 2px;
    font-size: 33px;
    text-transform: capitalize;
}
.booking p {
    margin: 0;
    font-size: 16px;
    color: #ddd;
    letter-spacing: 1px;
    line-height: 30px;
    width: 75%;
    margin: 0 auto;
}
.booking a{
      font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding: 15px 40px;
    border: 2px solid #fff;
    border-radius: 3px;
    margin-top: 1em;
    display: inline-block;
}
.booking a:hover {
    background: #ffc107;
    border: 2px solid #ffc107;
    color: #fff;
}
/*-- booking --*/
/*-- who we are--*/
.container-fluid {
    padding: 15px 15px;
    background-color: #fdfdfc;
}

.about-us {
    text-align: center;
    padding: 30px 15px;
    background-color: #fcfcf8;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(10, 0, 0, 0.1);
    max-width: 800px;
    margin: 50px auto;
}

.about-us h3 {
    font-size: 2.5rem;
    color: #1b1a1a;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .about-us {
        padding: 20px;
    }

    .about-us h3 {
        font-size: 2rem;
    }

    .about-us p {
        font-size: 1rem;
        text-align: justify;
    }
}
/*--// who we are--*/







.banner {
    background: url(../images/price.jpg) no-repeat 0px 0px;
    background-size: cover;
    min-height: 300px;
}



.book-appointment {
    box-sizing: border-box;
    background: #252525;
}

.bg-agile img {
    position: absolute;
    right: 0;
    bottom: 0em;
    width: 23em;
}

.book-appointment h2 {
    text-align: center;
    font-size: 22px;
    color: #eee;
    text-transform: uppercase;
    margin-bottom: 1em;
    font-weight: 600;
    letter-spacing: 3px;
}

.wthree-text {
    text-align: center;
}

.wthree-text h6 {
    margin-top: 10px;
    color: #ecb731;
    font-size: 19px;
    text-transform: capitalize;
    margin-bottom: .7em;
    font-weight: 400;
    letter-spacing: 2px;
}

.radio-w3ls li input[type="radio"] {
    cursor: pointer;
}

.radio-w3ls li label {
    color: #fff;
    font-size: 13.5px;
    font-weight: 400;
}


/*-- form --*/

.book-agileinfo-form input[type="text"],
.book-agileinfo-form input[type="email"],
select#passengers,
select#cab,
select#direction,
input#datepicker {
    width: 100%;
    color: #a0a0a0;
    font-size: 15px;
    letter-spacing: 1.5px;
    border-radius: 0.25rem;
    padding: 10px 10px;
    outline: none;
    background: rgba(255, 255, 255, 0);
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.27);
    box-sizing: border-box;
}

.agileits-btm-spc {
    margin-bottom: 1em;
}
.form-text1 {
    padding-right: 0px;
}
.form-text {
    width: 100%;
}

select#passengers option,
select#direction option {
    background: #000;
}
.book-agileinfo-form input[type="submit"]{
	margin-right: 1%;
	float: left;
}

.book-agileinfo-form input[type="submit"],
.book-agileinfo-form input[type="reset"] {
    text-transform: capitalize;
    background: #ffc107;
    color: #fff;
    padding: 0.7em 0em;
    border: none;
    border: 2px solid #ffc107;
    font-weight: 600;
    font-size: 15px;
    margin-top: 1em;
    width: 49.5%;
    outline: none;
    letter-spacing: 2px;
    border-radius: 0.25rem;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
    cursor: pointer;
     box-sizing: border-box;
}

.book-agileinfo-form input[type="submit"]:hover,
.book-agileinfo-form input[type="reset"]:hover {
    background: transparent;
    color: #fff;
}

.book-agileinfo-form ::-webkit-input-placeholder {
    color: #a0a0a0;
}

.book-agileinfo-form :-moz-placeholder {
    /* Firefox 18- */
    color: #a0a0a0;
}

.book-agileinfo-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: #a0a0a0;
}

.book-agileinfo-form :-ms-input-placeholder {
    color: #a0a0a0;
}

p.wickedpicker__title {
    background: #ecb731;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.wickedpicker__close {
    color: #fefefe;
    margin-top: 5px;
}

/*-- checkbox --*/

.book-agileinfo-form label {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.83);
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    margin-bottom: 5px;
    display: inline-block;
    text-transform: capitalize;
}

ul.radio-w3ls li {
    display: inline-block;
    margin: 0em 1em;
}

/*-- //checkbox --*/

/*--// form --*/
/*-- booking --*/
.booking{
	background: #d19d04;
}
.booking h3{
    color: #eee;
    letter-spacing: 2px;
    font-size: 33px;
    text-transform: capitalize;
}
.booking p {
    margin: 0;
    font-size: 16px;
    color: #ddd;
    letter-spacing: 1px;
    line-height: 30px;
    width: 75%;
    margin: 0 auto;
}
.booking a{
      font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding: 15px 40px;
    border: 2px solid #fff;
    border-radius: 3px;
    margin-top: 1em;
    display: inline-block;
}
.booking a:hover {
    background: #ffc107;
    border: 2px solid #ffc107;
    color: #fff;
}
/*-- booking --*/
/*--policy--*/
.policies {
    background-color: white;
    padding: 50px 0;
}

h3 {
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

ul.list-unstyled {
    padding-left: 0;
}

.media i {
    font-size: 1.5rem;
}

.media .fa-check {
    color: #28a745;
}

.media .fa-times {
    color: #dc3545;
}

.media .fa-phone {
    color: #17a2b8;
}
/*--//policy--*/



/*-- services --*/

.service-grids p {
    margin: 0;
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    color: #444;
    letter-spacing: .5px;
}
.service-grids h3 {
    margin-top: 20px;
    color: #000;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 600;
}
.service-grids h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #222;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
}
.service-grids h4:after {
    position: absolute;
    content: "";
    background: #333;
    height: 2px;
    width: 15%;
    left: 0%;
    bottom: -50%;
}
.service-grids h4 i {
    width: 40px;
    font-size: 20px;
}

.clr1 {
    color: #E91E63;
}
.clr2 {
    color: #03A9F4;
}
.clr3 {
    color: #FF5722;
}
/*-- //services --*/


/*-- to-top --*/
#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 2%;
	overflow: hidden;
	z-index: 999;
	width: 40px;
	height: 40px;
	border: none;
	text-indent: 100%;
	background: url(../images/arr.png) no-repeat 0px 0px;
}
#toTopHover {
	width: 40px;
	height: 40px;
	display: block;
	overflow: hidden;
	float: right;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
}
/*-- //to-top --*/

/*-- Responsive Design --*/

@media(max-width: 1280px){
	.banner-info h1, .banner-info h2, .banner-info h4 , .banner-info h5{
		font-size: 3.5em;
	}
	.banner-img, .banner-img.one, .banner-img.two, .banner-img.three {
		min-height: 650px;
	}
	.banner-info {
		padding-top: 5em;
		padding-bottom:5em;
	}
}
@media(max-width: 1080px){
	a.facebook {
		font-size: 13px;
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	.banner-img, .banner-img.one, .banner-img.two, .banner-img.three {
		min-height: 600px;
	}
	.banner-info h1, .banner-info h2, .banner-info h4 , .banner-info h5{
		font-size: 3.2em;
	}
}
@media(max-width: 1024px){
	.footer-grid-agileits-w3ls1, .footer-grid-agileits-w3ls {
		padding: 0;
	}
	.why p {
		font-size: 19px;
	}
	.carousel-control-next {
		right: -4%;
	}
	.carousel-control-prev {
		left: -4%;
	}
}
@media(max-width: 991px){
	.footer-grid-agileits-w3ls1, .footer-grid-agileits-w3ls {
		padding: 0 15px;
	}
	h1.heading, h2.heading, h3.heading {
		font-size: 45px;
	}
	.banner-img, .banner-img.one, .banner-img.two, .banner-img.three {
		min-height:760px;
	}
	.banner-info {
		padding-top: 8em;
	}
	.navbar-light .navbar-toggler {
		color: rgba(0, 0, 0, 0.5);
		border-color: #ffc107;
		background: #ffc107;
	}
	.navbar-toggler {
		border-radius: 0rem;
	}
	ul.navbar-nav.mx-auto {
		background: rgba(0, 0, 0, 0.8);
		padding: 1em 2em;
	}
	li.nav-item.active,li.nav-item {
		width: 30%;
		margin: 0 auto;
		text-align: center;
	}
	.dropdown-menu {
		background-color: black;
	}
	.dropdown-item {
		margin: 0 !important;
		color: #fff;
		border-radius: 3px;
	}
	.dropdown-item:hover, .dropdown-item:focus {
		color: #fff;
		border: 2px solid #fff;
		background-color: transparent;
	}
	.banner {
		min-height: 250px;
	}
	.booking p {
		font-size: 15px;
		width: 85%;
	}
	.booking h3 {
		font-size: 28px;
	}
	.booking a {
		font-size: 14px;
		padding: 12px 35px;
	}
	.top-header {
		padding: 2em 1em;
	}
	.service-grids h3 {
		margin-top: 0px;
	}
}
@media(max-width: 900px){
	.centered-btns_tabs, .transparent-btns_tabs, .large-btns_tabs {
		left: 45%;
	}
}
@media(max-width: 800px){
	.centered-btns_tabs, .transparent-btns_tabs, .large-btns_tabs {
		left: 44%;
	}
	.why-grids .col-md-4 {
		padding: 0 10px;
	}
	.top-bar_sub_w3layouts {
		padding: 0.3em 1em;
	}
	.log-icons, .top-forms, .logo {
		padding: 0;
	}
	.banner {
		min-height: 200px;
	}
}
@media(max-width: 800px){
	ul.w3ls-footer-bottom-list li span {
		padding-left: 0px;
	}
}
@media(max-width: 768px){
	.top-forms span a {
		padding: 10px 14px;
	}
}
@media(max-width: 736px){
	.log-icons,.top-forms {
		text-align: center;
	}
	.banner-info span {
		font-size: 40px;
	}
	.banner-info h1, .banner-info h2, .banner-info h4, .banner-info h5 {
		font-size: 2.6em;
	}
	.banner-img, .banner-img.one, .banner-img.two, .banner-img.three {
		min-height: 520px;
	}
	.banner-info a {
		font-size: 14px;
		padding: 12px 35px;
		margin-top: 0em;
	}
	.w3_agile_stats_grid-top {
		padding: 0;
	}
	.w3_agile_stats_grid h4 {
		letter-spacing: 2px;
	}
	.agile_count_grid_left span, .agile_count_grid_right p {
		font-size: 2.2em;
	}
	.form-text1 {
		padding-right: 15px;
	}
}
@media(max-width: 667px){
	.about-grid h4 {
		font-size: 15px;
	}
	.price-grid h3 {
		font-size: 22px;
	}
	h1.heading, h2.heading, h3.heading {
		font-size: 40px;
		letter-spacing: 2px;
	}
	.centered-btns_tabs, .transparent-btns_tabs, .large-btns_tabs {
		left: 43%;
	}
}
@media(max-width: 600px){
	.banner-info {
		width: 90%;
	}
	.banner-info h1, .banner-info h2, .banner-info h4, .banner-info h5 {
		font-size: 2.3em;
		letter-spacing: 1px;
	}
	.banner-img, .banner-img.one, .banner-img.two, .banner-img.three {
		min-height: 470px;
	}
	li.nav-item.active, li.nav-item {
		width: 40%;
	}
}
@media(max-width: 568px){
	.banner-info h1, .banner-info h2, .banner-info h4, .banner-info h5 {
		font-size: 2em;
		letter-spacing: 1px;
	}
	.food-Slider {
		padding: 0 4em;
	}
	.carousel-control-next {
		right: -10%;
	}
	.carousel-control-prev {
		left: -10%;
	}
	.banner {
		min-height: 150px;
	}
	.address-left {
		text-align: left;
	}
}
@media(max-width: 480px){
	.banner-img, .banner-img.one, .banner-img.two, .banner-img.three {
		min-height: 430px;
	}
	li.nav-item.active, li.nav-item {
		width: 55%;
	}
	.banner-info {
		padding-top: 6em;
	}
	.top-header {
		padding: 1em;
	}
	.centered-btns_tabs, .transparent-btns_tabs, .large-btns_tabs {
		left: 41%;
	}
	.booking p {
		font-size: 15px;
		width: 90%;
	}
}
@media(max-width: 414px){
	.banner-info h1, .banner-info h2, .banner-info h4, .banner-info h5 {
		font-size: 1.8em;
		letter-spacing: 0px;
	}
	.banner-img, .banner-img.one, .banner-img.two, .banner-img.three {
		min-height: 400px;
	}
	.centered-btns_tabs a, .transparent-btns_tabs a, .large-btns_tabs a {
		width: 10px;
		height: 10px;
	}
	.centered-btns_tabs li, .transparent-btns_tabs li, .large-btns_tabs li {
		margin-right: 7px;
	}
	.modal-body {
		padding: 1rem;
	}
	.about-grid i.fa, .about-grid i.fas {
		font-size: 30px;
	}
	.footerv2-w3ls h4 {
		font-size: 16px;
	}
	.w3layouts-agile-copyrightbottom p {
		font-size: 15px;
	}
	h1.heading, h2.heading, h3.heading {
		font-size: 35px;
	}
	li.nav-item.active, li.nav-item {
		width: 65%;
	}
	.booking h3 {
		font-size: 25px;
	}
	.footerv2-w3ls p {
		font-size: 14px;
		letter-spacing: 1px;
	}
	.food-Slider {
		padding: 0 2em;
	}
	.navbar-toggler {
		font-size: 1rem;
	}
	.book-appointment h2 {
		font-size: 20px;
		letter-spacing: 2px;
	}
	.address-grid i {
		font-size: 15px;
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
	.address-right h6 {
		font-size: 1.2em;
	}
	.map iframe {
		height: 270px;
	}
	.w3layouts-contact-form-top h3, .contact-form-top h3, .w3agile-map h3, .agileits-contact-address h3 {
		font-size: 22px;
	}
}
@media(max-width: 384px){
	.footer-grid-agileits-w3ls1 ul li {
		font-size: 14px;
	}
	.footer-grid-agileits-w3ls1 h3, .footer-grid-agileits-w3ls h3 {
		font-size: 1.1em;
	}
	.footer-grid-agileits-w3ls1 a.read {
		font-size: 12px;
	}
	.w3layouts-agile-copyrightbottom p {
		 font-size: 15px;
	}
	a.navbar-brand {
		font-size: 1.8em;
	}
	li.nav-item.active, li.nav-item {
		width: 75%;
	}
	.modal-header {
		padding: 1rem;
	}
	.modal-title {
		font-size: 18px;
	}
	label {
		font-size: 14px;
	}
	.forgot-w3l {
		font-size: 14px;
	}
	.food-Slider {
		padding: 0 2em;
	}
	.w3_agile_stats_grid h4 {
		letter-spacing: 1px;
		font-size: 15px;
	}
	.agile_count_grid_left span, .agile_count_grid_right p {
		font-size: 2em;
	}
	.service-grids h3 {
		font-size: 20px;
	}
}
@media(max-width: 375px){
	.banner-info h1, .banner-info h2, .banner-info h4, .banner-info h5 {
		font-size: 1.6em;
		letter-spacing: 0px;
	}
	.team-grids {
		padding: 0 5px;
	}
	.booking p {
		font-size: 14px;
		width: 100%;
		letter-spacing: 0.5px;
	}
	.book-agileinfo-form input[type="submit"], .book-agileinfo-form input[type="reset"] {
		font-size: 14px;
	}
}
@media(max-width: 320px){
	.banner-info {
		width: 80%;
	}
	.banner-info h1, .banner-info h2, .banner-info h4, .banner-info h5 {
		font-size: 1.5em;
		letter-spacing: 0px;
	}
	.w3layouts-agile-copyrightbottom p {
		font-size: 14px;
	}
	li.nav-item.active, li.nav-item {
		width: 100%;
	}
	.food-Slider {
		padding: 0 1em;
	}
	h1.heading, h2.heading, h3.heading {
		font-size: 33px;
	}
	.service-grids h3 {
		font-size: 18px;
		letter-spacing: 0px;
	}
}
/*-- //Responsive Design --*/