/* Universal Css Start Here */
body {
	background-color: var(--body-color);
	font-family: var(--font-default);
	color: var(--text-color);
}

.over-hidden {
	overflow: hidden;
}
body::-webkit-scrollbar {
	width: 12px;               /* width of the entire scrollbar */
  }

  body::-webkit-scrollbar-track {
	background: orange;        /* color of the tracking area */
  }

  body::-webkit-scrollbar-thumb {
	background-color: white;    /* color of the scroll thumb */
	border-radius: 20px;       /* roundness of the scroll thumb */
	border: 3px solid orange;  /* creates padding around scroll thumb */
  }

a {
	text-decoration: none;
	color: var(--extra-color-3);
	outline: none;
}

a:hover {
	color: var(--extra-color-3);
}

button {
	font-family: var(--font-btn);
}

figure {
	margin-bottom: 0;
}

.primary-btn {
	color: var(--dark-text-color);
	border: 2px solid #FFC527;
	background-image: -webkit-linear-gradient(30deg, #FFC527 50%, transparent 50%);
	background-image: linear-gradient(30deg, #FFC527 50%, transparent 50%);
	background-size: 500px;
	background-repeat: no-repeat;
	background-position: 0%;
	-webkit-transition: background 300ms ease-in-out;
	transition: background 300ms ease-in-out;
	font-size: 14px;
	padding: 0.375rem 2rem;
	font-family: var(--font-heading);
	white-space: nowrap;
  }
  .primary-btn:hover {
	background-position: 100%;
	color: #FFC527;
  }
.secondary-btn {
	background: var(--bg-secondary);
	color: var(--bg-primary);
	font-size: 14px;
	padding: 0.375rem 2rem;
	font-family: var(--font-heading);
	transition: all 0.8s ease-out;
	white-space: nowrap;
}
/* .secondary-btn:hover {
	background: var(--primary-btn-color);
	color: var(--dark-text-color);
	font-size: 14px;
	padding: 0.375rem 2rem;
	font-family: var(--font-heading);
} */

.extra-padd {
	padding: 15px 60px !important;
}

.colored-txt {
	color: var(--extra-color-1);
}

button {
	border: 0;
}

/* Typography Start Here */
h1 {
	font-family: var(--font-heading);
	font-size: 48px;
	text-transform: uppercase;
}

h2 {
	font-family: var(--font-heading);
	font-size: 36px;
}

h3 {
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 26px;
	margin: 0px;
}

h4 {
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 30px;
}

h5 {
	font-family: var(--font-default);
	font-size: 16px;
	line-height: 26px;
}

h6 {
    font-family: var(--font-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 18px;
	margin: 0px;
	font-weight: bold;
}

p {
	font-family: var(--font-default);
	font-size: 14px;
}
.rounded {
    border-radius: 1rem!important;
}

@media (max-width: 1366px) {

}

@media (max-width: 1280px) {

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

	h2 {
		font-size: 26px;
	}
}

@media (max-width: 991px) {

}

@media (max-width: 768px) {
	h1 {
		font-size: 28px;
	}
	h2 {
		font-size: 22px;
	}
	h3 {
		font-size: 16px;
	}
	h4 {
		font-size: 15px;
	}
	h6 {
		font-size: 14px;
	}

	p {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	h3 {
		font-size: 14px;
	}

	h2 {
		font-size: 19px;
	}

	h4 {
		font-size: 15px;
	}

	p {
		font-size: 12px;
	}

}

/* Typography End Here */

/* Header With out Login Css Start Here */
.header-top {
	background: var(--primary-btn-color);
	padding: 0px 0 20px;
	width: 100%;
}
.navbar-collapse .primary-btn {
	font-size: 14px;
	padding: 0.375rem 1rem;
	margin-left: 10px;
}

.sec-header {
    width: 100%;
    color: var(--light-text-color);
    position: absolute;
    z-index: 1;
}

.sec-header-content {
    display: flex;
    justify-content: end;
    padding-top: 10px;
}

.sec-header-content a {
    color: var(--light-text-color);
    font-size: 14px;
    padding-left: 10px;
    z-index: 999;
    font-family: var(--font-AGaramondPro-regular);
}
.sec-header-content a:last-child{
	border-left: 1px solid #fff;
	margin-left: 10px;
	font-family: var(--font-AGaramondPro-bold);
	text-decoration: underline;
}
.sec-header-content span {
    color: var(--light-text-color);
    font-size: 14px;
	font-family: var(--font-AGaramondPro-regular);
}

.navbar {
	width: 100%;
	padding-top: 0px;
}

.navbar-brand img{
	width: 175px;
}
.navbar-light .navbar-nav .nav-link {
	color: var(--light-text-color);
	font-size: 14px;
	padding: 6px 25px 6px 5px ;
	font-family: var(--font-AGaramondPro-regular);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:active {
    color: var(--bg-primary);
	transition: 1s;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: var(--bg-primary);
    transition: 1s;
}

.btn-flex{
	display: flex;
}

/* Header With out Login Css End Here */

/* Header With Login Css Start Here */
.with-login .primary-btn {
    color: var(--dark-text-color);
    border: 2px solid #FFC527;
    background-image: -webkit-linear-gradient(30deg, #FFC527 50%, transparent 50%);
    background-image: linear-gradient(30deg, #FFC527 50%, transparent 50%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    font-size: 14px;
    padding: 0.375rem .75rem;
    font-family: var(--font-heading);
    margin-right: 30px;
}
.with-login .call-div{
	margin-top: 7px;
}
.with-login .sec-header-content a:last-child{
	border-left: none;
    margin-left: 0px;
	font-family: var(--font-AGaramondPro-bold);
    text-decoration: none;
}
.with-login .sec-header-content a {
    color: var(--light-text-color);
    font-size: 14px;
    padding-left: 5px;
    z-index: 999;
    font-family: var(--font-AGaramondPro-regular);
}
.with-login a.dp img {
    border: 2px solid #FFC527;
    border-radius: 5px;
    width: 40px;
    height: 40px;
}
.with-login .navbar-light .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px 25px 8px 5px;
    font-family: var(--font-AGaramondPro-regular);
}
.with-login .dropdown-menu{
	min-width: auto;
}
.with-login .dropdown-item{
	font-family: var(--font-AGaramondPro-regular);
	font-size: 13px;
	padding: 0.25rem 0.75rem;
}

/* Header With Login Css End Here */

/* Mobile Header Css Start Here */
@media (max-width: 1366px) {
	.navbar-brand img{
		width: 160px;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 13px;
		padding: 6px 20px 6px 5px;
	}

	.navbar-brand {
		padding-top: 0px;
	}

.sec-header-content a {
    color: var(--light-text-color);
    font-size: 13px;
    padding-left: 10px;
    z-index: 999;
    font-family: var(--font-AGaramondPro-regular);
}
.sec-header-content a:last-child{
	font-size: 13px;
}
.sec-header-content span {
    font-size: 13px;
}
.navbar-collapse .primary-btn {
    font-size: 13px;
    padding: 0.375rem 1rem;
}
}
@media (max-width: 1200px) {
	.navbar-brand img{
		width: 100px;
	}
	.start {
		margin-right: 5px;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 13px;
		padding: 8px;
	}
	.with-login .dropdown-menu {
		min-width: auto;
		left: -50px;
	}
}
@media (max-width: 1023px) {
	.navbar-brand img{
		width: 150px;
	}
	.start {
		margin-right: 5px;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 12px;
		padding: 5px;
	}
	.navbar .primary-btn {
		font-size: 12px;
	}
	.navbar .btn{
		padding: 0.375rem 0.2rem;
	}
	.navbar {
		top: 15px;
	}
	.navbar-light .navbar-toggler {
		background: #fff;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 13px;
		padding: 10px 0px;
		color: #000;
	}
}
@media (max-width: 992px) {
	.navbar-nav li {
		border-left:none;
	}
	.navbar-collapse {
		background: #fff;
		padding: 20px;
	}
	.mobile-div{
	position: relative;
    left: 200px
	}
}
@media (max-width: 768px) {
	.navbar-nav li {
		border-left:none;
	}
	.navbar-collapse {
		background: #fff;
		padding: 20px;
	}
	.with-login .dropdown, .dropend, .dropstart, .dropup {
		position: absolute;
		right: 40px;
		top: 0;
		margin-top: 10px;
	}
	.with-login .navbar-light .navbar-toggler {
		margin-right: 60px;
	}
	.with-login .dropdown-menu {
		min-width: auto;
		left: -50px;
	}
	.mainbannerbg .banner{
		display: none !important;
	}
	.mainslider .slick-dots{
		display: none !important;
	}
	.mobile-div{
		left: 0px
		}
}
@media (max-width: 741px) {
	.with-login .dropdown, .dropend, .dropstart, .dropup {
		right: 115px;
	}
}
@media (max-width: 721px) {

	.about-sec .aboutimg2 {
		margin: 10px 0px;
	}
	.about-sec .aboutspan {
		margin: 10px 0px 5px 0px;
		width: 100%;
		font-size: 16px;
	}
	.with-login .dropdown, .dropend, .dropstart, .dropup {
		right: 100px;
	}
}
@media (max-width: 668px) {
	.with-login .navbar-light .navbar-toggler {
		margin-right: 60px;
	}
	.with-login .dropdown, .dropend, .dropstart, .dropup {
		right: 80px;
	}
}

@media (max-width: 576px) {
	.sec-header-content {
		display: flex;
		justify-content: center;
		text-align: center;
		margin-bottom: 20px;
	}
	.navbar {
		position: unset;
		width: 100%;
	}
	.navbar-nav li {
		border-left:none;
	}
	a.navbar-brand img {
		width: 120px;
	}
	.btn-flex {
		display: block;
	}
	.btn-flex .primary-btn{
		width: 100%;
	}
	.start {
		margin-right: 0px;
	}
	.navbar .btn {
		padding: 0.375rem 0.2rem;
		width: 100%;
		margin: 10px 0px;
		background-size: 1000px;
	}
	.with-login .dropdown, .dropend, .dropstart, .dropup {
		position: absolute;
		right: 20px;
		top: 67px;
	}
	.with-login .primary-btn {
		font-size: 12px;
		padding: 0.375rem 0.5rem;
		font-family: var(--font-heading);
		margin-right: 0px;
	}
	.with-login .sec-header-content {
		display: flex;
		justify-content: space-between;
		text-align: center;
		margin-bottom: 20px;
	}
	.with-login .dropdown, .dropend, .dropstart, .dropup {
		margin-top: 0px;
	}

}
@media (max-width: 415px) {
	.with-login .navbar-light .navbar-toggler {
		margin-right: 60px;
		width: 40px;
		height: 40px;
		text-align: center;
		padding: 0px;
	}

}
@media (max-width: 281px) {
	.sec-header-content span {
		font-size: 11px;
	}
	.sec-header-content a:last-child {
		font-size: 11px;
	}
	.with-login .primary-btn {
		font-size: 11px;
		padding: 0.375rem;
	}
	.with-login .navbar-light .navbar-toggler {
		margin-right: 60px;
		width: 40px;
		height: 40px;
		text-align: center;
		padding: 0px;
	}

}
/* Mobile Header Css End Here */

/* Banner Sec Css Start Here */
.mainbannerbg {
    width: 100%;
    background-image: url(../img/home/bannerbg.webp);
    color: var(--light-text-color);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0px 0px;
    position: relative;
}
.banner__txt-wrapp {
    margin-top: 100px;
}
.mainbannerbg .banner__txt-wrapp .preheading{
	color: var(--bg-primary);
	font-size: 17px;
	margin: 0px;
}
.mainbannerbg .banner__txt-wrapp h1{
	color: #fff;
	font-size: 56px;
	margin: 0px;
	line-height: normal;
}
.mainbannerbg .banner__txt-wrapp .banner__para {
    font-size: 14px;
    color: var(--extra-color-2);
    line-height: 24px;
    letter-spacing: 0.5px;
}
.mainbannerbg .banner {
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    left: 20px;
	top: 0px;
}
ul.social_icons-banner {
    margin: 0;
    padding: 0px;
}
ul.social_icons-banner::before {
    height: 220px;
    width: 1px;
    background: #63615f;
    content: "";
    position: absolute;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 10px;
}
ul.social_icons-banner::after {
    height: 220px;
    width: 1px;
    background: #63615f;
    content: "";
    position: absolute;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 10px;
}
ul.social_icons-banner li {
    margin: 14px 0;
    list-style: none;
    background: #fff;
    text-align: center;
    border-radius: 2px;
    height: 20px;
    width: 20px;
}
ul.social_icons-banner li:hover {
    margin: 14px 0;
    list-style: none;
    background: var(--bg-primary);
    text-align: center;
    border-radius: 2px;
    height: 20px;
    width: 20px;
    transition: 0.6s all;
    transform: scale(1.3);
    margin-left: 6px;
}
ul.social_icons-banner li a {
    height: 20px;
    display: block;
    line-height: 10px;
}
ul.social_icons-banner li a i {
    color: #000;
    position: relative;
    font-size: 12px;
}

.mainbannerbg .slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 30px;
    display: block;
    width: 50px;
    height: 50px;
    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: #fff;
    border-radius: 50%;
	top: unset;
	z-index: 1;
}
.mainbannerbg .slick-prev:before, .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 1;
    opacity: unset;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mainbannerbg .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
    outline: none;
    background: #fff;
}
.mainbannerbg .slick-next{
	left: 60px;
}
.mainbannerbg .slick-prev {
    left: 0px;
}
.mainbannerbg .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: unset;
}

/* banner slick dots  */
.mainslider .slick-dots {
    max-width: max-content;
	height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    text-align: center;
}

.mainslider .slick-dots li {
    display: block;
    margin: 10px 0;
    max-width: max-content;
    height: max-content;
    transition: .4s ease;
	width: 15px;
}

.mainslider .slick-dots li.slick-active {
    font-size: 42px;
	font-family: var(--font-heading);
}

.mainslider .slick-dots li:not(.slick-active) {
    opacity: .5;
    font-size: 30px;
	font-family: var(--font-heading);
}

.mainslider .slick-dots::before {
    height: 140px;
    width: 1px;
    background: #63615f;
    content: "";
    position: absolute;
    top: -170px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -4px;
}
.mainslider .slick-dots::after {
    height: 190px;
    width: 1px;
    background: #63615f;
    content: "";
    position: absolute;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -4px;
}
/* banner slick dots  */

/* responsive banner css Start */
@media (max-width: 1366px) {
	.mainbannerbg .banner__txt-wrapp h1 {
		font-size: 51px;
	}
	.banner__txt-wrapp {
		margin-top: 60px;
	}
	.mainbannerbg .banner {
		left: 40px;
	}
	.mainbannerbg .banner__txt-wrapp .banner__para {
		font-size: 13px;
	}
	.mainslider .slick-dots {
		right: -60px;
	}
	.mainslider .slick-dots::before {
		height: 130px;
		top: -170px;
		right: 0px;
	}
	.mainslider .slick-dots::after {
		height: 120px;
		right: 0px;
	}
}

@media (max-width: 1280px) {
.mainbannerbg .banner {
	left: 20px;
}
.mainslider .slick-dots {
    right: -40px;
}
.services-multiple-items {
    margin-left: 80px;
}
.our-blogs-multiple-items {
    margin-left: 80px;
}
.testimonialDiv {
    margin-left: 80px;
}
}

@media (max-width: 1024px) {
	.mainbannerbg .banner {
		display: none;
	}
	.mainslider .slick-dots {
		display: none !important
	}
	.mainbannerbg .banner__txt-wrapp .preheading {
		font-size: 14px;
	}
	.mainbannerbg .banner__txt-wrapp h1 {
		font-size: 42px;
	}
	.banner__txt-wrapp {
		margin-top: 30px;
	}
}
@media (max-width: 992px) {
	.mainbannerbg .banner__txt-wrapp h1 {
		font-size: 30px;
	}
	.mainbannerbg {
		padding: 110px 0px 0px;
	}
	.mainbannerbg .banner__txt-wrapp .banner__para {
		font-size: 11px;
		line-height: 16px;
	}
	.mainbannerbg .slick-prev, .slick-next {
		bottom: 0px;
		width: 40px;
   		height: 40px;
	}
}

@media (max-width: 768px) {
	.mainbannerbg {
		padding: 150px 0px 0px;
	}
	.banner__txt-wrapp {
		margin-top: 0px;
	}
	.mainbannerbg .banner__txt-wrapp .preheading {
		font-size: 12px;
	}
	.mainbannerbg .banner__txt-wrapp h1 {
		font-size: 30px;
	}
	.mainbannerbg .banner__txt-wrapp .banner__para {
		font-size: 12px;
		line-height: 18px;
	}
	.mainbannerbg .slick-prev, .slick-next {
		bottom: 10px;
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 576px) {
	.mainbannerbg .banner__txt-wrapp .banner__para {
		font-size: 12px;
		line-height: 22px;
	}
	.mainbannerbg .banner__txt-wrapp h1 {
		font-size: 26px;
	}
}
/* responsive banner css End */
/* Banner Sec Css End Here */

/* about Sec Css start Here */
.about-sec{
	padding: 80px 0px;
}
.about-sec .aboutimg2{
	margin: 60px 0px  0px -50px;
}
.about-sec .aboutspan {
    font-family: var(--font-heading);
    background: var(--bg-primary);
    color: var(--dark-text-color);
    font-size: 18px;
    text-align: center;
    padding: 10px 30px;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
}

/* responsive about css Start */
@media (max-width: 1366px) {
	.about-sec .aboutspan {
		padding: 10px 15px;
	}
}
@media (max-width: 1024px) {
	.about-sec {
		padding: 50px 0px;
	}
	.about-sec .aboutspan {
		padding: 10px;
		font-size: 15px;
	}
}
@media (max-width: 992px) {
	.services-sec .services-img {
		display: none;
	}
	.about-sec .aboutimg2 {
		margin: 60px 0px  0px -35px;
	}
	.about-sec .aboutspan {
		padding: 5px;
		font-size: 12px;
	}
}
@media (max-width: 768px) {
	.about-sec {
		padding: 30px 0px;
	}
	.about-sec .aboutimg2 {
		margin: 40px 0px  0px -40px;
	}
	.about-sec .aboutspan {
		padding: 8px;
		font-size: 11px;
	}
	.about-sec h6 {
		letter-spacing: 1.3px;
		font-size: 14px;
		margin: 0px;
	}
	.about-sec .aboutspan {
		margin: 7px;
	}
	.services-sec .services-img {
		display: none;
	}
}
@media (max-width: 668px) {
	.about-sec .aboutimg2 {
		margin: 40px 0px  40px 0px;
	}
}

@media (max-width: 576px) {
.about-sec .aboutspan {
	margin: 5% 2%;
	width: 96%;
	font-size: 20px;
}
.about-sec .aboutimg2 {
    margin: 0px 0px 20px 0px;
}
}
/* responsive about css End */

/* about Sec Css End Here */

/* services Sec Css Start Here */
.services-sec{
	padding:60px 0px;
}
.services-sec .services-bg {
    background-image: url(../img/home/servicesbg.webp);
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    padding: 50px 70px;
}
.services-sec .services-bg p {
    padding-right: 60px;
}
.services-sec .points{
	columns: 2;
	padding-left: 20px;
}
.services-sec ul.points li {
    list-style: none;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--extra-color-1);
    position: relative;
    padding: 10px 0px 10px 15px;
}
.services-sec ul.points li::before {
    content: "";
    position: absolute;
    display: block;
    background-image: url("../img/home/li.png");
    width: 25px;
    height: 25px;
    background-size: 25px;
    background-repeat: no-repeat;
    left: -20px;
}
.services-sec .services-img{
	position: absolute;
	right: 50px;
	bottom: 0px;
}

/* responsive services css Start */
@media (max-width: 1366px) {
	h2 {
		font-size: 34px;
	}
	.services-sec .services-bg p {
		padding-right: 0px;
	}
	.services-sec ul.points li {
		padding: 5px 0px 5px 15px;
	}
	.services-sec .services-bg {
		padding: 40px 70px;
	}
}

@media (max-width: 1024px) {
	.services-sec {
		padding: 50px 0px;
	}
	.services-sec .services-bg {
		padding: 35px 70px;
	}
	h2 {
		font-size: 26px;
	}
	.services-sec .services-bg p {
		padding-right: 0px;
		font-size: 13px;
	}
	.services-sec ul.points li {
		padding: 4px 0px 4px 10px;
		font-size: 14px;
	}
	.services-sec ul.points li::before {
		background-size: 20px;
	}
	.services-sec .services-img {
		right: 20px;
	}
}
@media (max-width: 576px) {
	.services-sec {
		padding: 40px 0px;
	}
	.services-sec .services-bg {
		padding: 25px;
	}
	.services-sec .services-bg {
		background-image: url(../img/home/servicesbg.webp);
		background-repeat: no-repeat;
		position: relative;
		background-size: unset;
		border-radius: 30px;
		padding: 30px;
	}
	.services-sec .points {
		columns: 1;
		padding-left: 20px;
	}
	.services-sec .services-bg p {
		padding-right: 0px;
		font-size: 12px;
	}
}
/* responsive services css End */

/* services Sec Css End Here */


/* Why Use Sec Css Start Here */

.whyUse-sec{
	padding:60px 0px;
}
.whyUse-sec-list {
    background-color: var(--light-bg);
    padding: 50px 25px 30px 25px;
    text-align: center;
    border-radius: 25px;
    margin: 10px 0px;
    height: 280px;
}
.whyUserow {
    padding: 0px 9%;
    margin-top: 40px;
}
.whyUse-sec-list .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 30px;
}
.whyUse-sec-list .icon img.img-fluid {
    width: 50px;
    height: 50px;
}
.whyUse-sec-list h3 {
    margin-bottom: 20px;
}
.whyUse-sec-list p {
    opacity: 0.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* responsive Why Use Sec css Start */
@media (max-width: 1366px) {
	.whyUserow {
		padding: 0px 5%;
	}
}

@media (max-width: 768px) {
	.whyUserow {
		padding: 0px;
	}
	.whyUse-sec{
		padding:10px 0px 50px 0px;
	}

}

/* responsive Why Use Sec css End */

/* Why Use Sec Css End Here */


/* handy-services Sec Css Start Here */
.handy-services-sec{
	background-color: var(--light-bg);
	padding: 80px 0px;
}
.handy-services-heading {
    display: flex;
    justify-content: space-between;
	align-items: center;

}
.handy-services-heading-text{
	width: 40%;
}
.handy-services-heading-text p{
	color: #636363;
}
.services-multiple-items{
	margin-top: 30px;
	margin-left: 70px;
	overflow: hidden;
}
.services-slider-item{
	padding: 5px;
}
.services-slider-item img {
    width: 270px;
    height: 280px;
}
.services-slider-item-text {
    width: 82%;
    margin: auto;
    background-color: var(--bg-primary);
    color: #4B4B4B;
    font-family: var(--font-AGaramondPro-bold);
    font-size: 18px;
    text-align: center;
    border-radius: 12px;
    padding: 15px 0px;
    margin-top: -30px;
    z-index: 1;
    position: relative;
}
.services-multiple-items .slick-list{padding:0 10% 0 0 !important;}

/* responsive handy-services Sec css Start */
@media (max-width: 1366px) {
.services-multiple-items {
		margin-top: 30px;
		margin-left: 110px;
		overflow: hidden;
}
.handy-services-heading-text{
	width: 50%;
}
}
@media (max-width: 1024px) {
	.handy-services-sec {
		padding: 60px 0px;
	}
	.handy-services-heading-text {
		width: 70%;
	}
	.services-multiple-items {
		margin-left: 40px;
	}
	.services-slider-item-text {
		font-size: 14px;
	}
}
@media (max-width: 992px) {
	.services-multiple-items {
		margin-left: 140px;
	}
	.services-slider-item-text {
		font-size: 12px;
	}
	.services-slider-item img {
		height: 230px;
	}
}
@media (max-width:916px) {
	.services-multiple-items {
		margin-left: 100px;
	}
}
@media (max-width: 852px) {
	.services-multiple-items {
		margin-left: 70px;
	}
}
@media (max-width: 820px) {
	.services-multiple-items {
		margin-left: 60px;
	}
}
@media (max-width: 768px) {
	.handy-services-heading-text {
		width: 75%;
	}
	.services-multiple-items {
		margin-left: 40px;
	}
}
@media (max-width: 741px) {
	.services-multiple-items {
		margin-left: 100px;
	}
}
@media (max-width: 721px) {
	.services-multiple-items {
		margin-left: 100px;
	}
}
@media (max-width: 668px) {
	.services-multiple-items {
		margin-left: 70px;
	}
	.services-slider-item img {
		height: 180px;
	}
}
@media (max-width: 576px) {
	.handy-services-heading {
		display: block;
	}
	.handy-services-heading-text {
		width: 100%;
	}
}

/* responsive handy-services Sec css End */

/* handy-services Sec Css End Here */

/* handy-projects Sec Css Start Here */
.handy-projects-sec{
	padding: 60px 0px;
}
.handy-projects-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.handy-projects-heading-text{
	width: 80%;
}
.handy-projects-heading-text p{
	color: #636363;
}
.handy-projects-items img {
    box-shadow: 0px 3px 8px #e4e1e1;
    width: 100%;
    height: 156px;
}
.handy-projects-items h5 {
    text-align: center;
    font-family: var(--font-AGaramondPro-bold);
    color: var(--text-color-2);
    font-size: 20px;
    margin: 10px 0px;
}

/* responsive handy-services Sec css Start */
@media (max-width: 1366px) {
	.handy-projects-items h5 {
		font-size: 17px;
	}
}
@media (max-width: 992px) {
	.handy-projects-sec {
		padding: 60px 0px 0px 0px;
	}
}
@media (max-width: 768px) {
	.handy-projects-sec {
		padding: 50px 0px;
	}
	.handy-projects-items h5 {
		font-size: 14px;
	}
}
@media (max-width: 576px) {
	.handy-projects-heading {
		display: block;
		margin-bottom: 20px;
	}
	.handy-projects-heading-text {
		width: 100%;
	}
	.services-multiple-items {
		margin-left: 10px;
	}
}
/* responsive handy-services Sec css End */

/* handy-projects Sec Css End Here */

/* reques quote Css Start Here */
.request-quote-sec{
	padding:60px 0px;
}
.request-quote-sec .request-quote-bg {
    background-image: url(../img/home/servicesbg.webp);
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    padding: 105px;
}
.request-quote-bg h6 {
    padding-right: 150px;
}
.request-quote-sec .request-quote-bg p {
    padding-right: 0px;
    margin-bottom: 50px;
}
.request-quote-sec .request-quote-img{
	position: absolute;
	right: 120px;
	bottom: 0px;
}
.text-white{
	color: var(--light-text-color) !important;
}

/* responsive reques quote Sec css Start */

@media (max-width: 1366px) {

	.request-quote-bg h6 {
		padding-right: 0px;
	}
	.request-quote-sec .request-quote-bg {
		padding: 75px 105px;
	}
}

@media (max-width: 1024px) {
	.request-quote-sec {
		padding: 50px 0px;
	}
	.request-quote-sec .request-quote-bg {
		padding: 55px 65px;
	}
	.request-quote-sec .request-quote-bg p {
		padding-right: 0px;
		margin-bottom: 30px;
		font-size: 13px;
	}
	.request-quote-sec .request-quote-img {
		position: absolute;
		right: 80px;
		bottom: 0px;
	}
}
@media (max-width: 992px) {
	.request-quote-sec .request-quote-img {
		display: none;
	}
	.request-quote-bg h6 {
		padding-right: 0px;
	}
}
@media (max-width: 768px) {
	.request-quote-sec .request-quote-img {
		display: none;
	}
	.request-quote-bg h6 {
		padding-right:0px;
	}
	.request-quote-bg h2 {
		font-size: 36px;
	}
	.request-quote-sec {
		padding: 0px 0px 30px 0px;
	}
}
@media (max-width: 576px) {
	.request-quote-sec .request-quote-bg {
		padding: 30px;
		border-radius: 30px;
	}
	.request-quote-bg h6 {
		padding-right: 0px;
	}
	.request-quote-bg h2 {
		font-size: 25px;
	}
	.request-quote-sec .request-quote-bg p {
		padding-right: 0px;
		margin-bottom: 20px;
	}
}

/* responsive reques quote Sec css End */

/* reques quote Css End Here */


/* our blogs Css Start Here */
.our-blogs-sec{
	padding: 40px 0px;
}
.our-blogs-heading {
    display: flex;
    justify-content: space-between;
	align-items: center;

}
.our-blogs-heading-text{
	width: 50%;
}
.our-blogs-heading-text h2{
	color: var(--text-color-2)
}
.our-blogs-multiple-items{
	margin-top: 30px;
	margin-left: 70px;
	overflow: hidden;
}
.our-blogs-slider-item{
	margin: 5px;
	background: #F1F1F1;
	border-radius: 25px;
}
.our-blogs-slider-item img {
    width: 100%;
    height: 196px;
}
.our-blogs-multiple-items .slick-list{padding:0 10% 0 0 !important;}
.our-blogs-item-text{
	padding: 20px 25px;
}
.our-blogs-item-text a{
	font-family: var(--font-AGaramondPro-bold);
}
.our-blogs-multiple-items p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* responsive our blogs Sec css Start */

@media (max-width: 1366px) {

	.our-blogs-multiple-items {
		margin-left: 110px;
	}
	.our-blogs-multiple-items h4 {
		font-size: 16px;
	}
	.our-blogs-multiple-items p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	.our-blogs-item-text a {
		font-family: var(--font-AGaramondPro-bold);
		font-size: 13px;
	}

}
@media (max-width: 1024px) {
	.our-blogs-multiple-items {
		margin-left: 40px;
	}
	.our-blogs-item-text {
		padding: 20px 15px;
	}
	.our-blogs-multiple-items h4 {
		font-size: 14px;
		line-height: 22px;
	}
	.our-blogs-multiple-items p {
		font-size: 13px;
	}
}
@media (max-width: 992px) {
	.our-blogs-multiple-items {
		margin-left: 140px;
	}
}
@media (max-width:916px) {
	.our-blogs-multiple-items {
		margin-left: 100px;
	}
}
@media (max-width: 852px){
	.our-blogs-multiple-items {
    margin-left: 70px;
}
}
@media (max-width: 820px) {
	.our-blogs-multiple-items {
		margin-left: 60px;
	}
}
@media (max-width: 741px) {
	.our-blogs-multiple-items {
		margin-left: 100px;
	}
	.our-blogs-heading-text {
		width: 70%;
	}
}
@media (max-width: 668px){
	.our-blogs-multiple-items {
    margin-left: 70px;
}
}
@media (max-width: 576px) {
	.our-blogs-heading {
		display: block;
	}
	.our-blogs-heading-text {
		width: 100%;
	}
	.our-blogs-multiple-items {
		margin-left: 10px;
	}
}

/* responsive our blogs Sec css End */

/* our blogs Sec Css End Here */


/* testimonial Css Start Here */
.testimonial-sec{
	padding:60px 0px;
}
.testimonialDiv{
	margin-left: 70px;
    overflow: hidden;
}
.testimonial-sec .testimonial-bg {
    background-image: url(../img/home/testimonialbg.webp);
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% 100%;
    padding: 100px 20px 100px 100px;
}
.testimonial-bg h2 {
    padding-right: 10px;
    padding-bottom: 40px;
}
.testimonial-bg h6 {
    padding-right: 150px;
}
.testimonial-slider-wrapp{
	background-color: var(--light-bg);
	border-radius: 10px;
	padding: 20px;
}
.testimonial-sec .testimonialsContent {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.testimonialsContent .client-img img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.testimonialsContent h5 {
    font-size: 18px;
    margin: 0px;
    line-height: normal;
	font-family: var(--font-heading);
}
.testimonialsContent p {
    margin: 0px;
}
.testimonial-slider  .slick-dots {
    position: absolute;
    bottom: 0px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    display: unset;
    width: auto;
    left: -430px;
}
.testimonial-slider .slick-dots li.slick-active button:before {
    opacity: unset;
    color: white;
	font-size: 10px;
}
.testimonial-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 8px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: unset;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.testimonial-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.testimonial-slider .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: -20px;
    left: -200px;
    display: block;
    width: 40px;
    height: 40px;
    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: #fff;
    border-radius: 5px;
    top: unset;
    z-index: 1;
}
.testimonial-slider .slick-prev:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	content: url(../img/home/left-arrow.png);
	background-repeat: no-repeat;
}

.testimonial-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: -20px;
    left: -150px;
    display: block;
    width: 40px;
    height: 40px;
    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: #fff;
    border-radius: 5px;
    top: unset;
    z-index: 1;
    box-shadow: 0px 2px 5px #00000026;
}
.testimonial-slider .slick-next:before {
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	content: url(../img/home/right-arrow.png);
	background-repeat: no-repeat;
}
.testimonial-slider-wrapp.slick-center {
    opacity: .8 !important;
    transform : scale(.80);
	transition: .5s;
}
/* testimonial Css End Here */

/* responsive testimonial css Start */

@media (max-width: 1366px) {

.testimonialDiv {
	margin-left: 110px;
}
.testimonial-slider  .slick-dots {
    left: -390px;
}
.testimonial-slider .slick-next {
    left: -110px;
}
.testimonial-slider .slick-prev {
    left: -160px;
}
.testimonial-slider  h4 {
    font-size: 16px;
}
.testimonial-slider p {
    font-size: 13px;
}
.testimonialsContent h5 {
    font-size: 16px;
}
.testimonial-sec .testimonial-bg {
    padding: 70px 20px 70px 100px;
}

}

@media (max-width: 1024px) {
	.testimonial-sec {
		padding: 50px 0px;
	}
	.testimonialDiv {
		margin-left: 40px;
	}
	.testimonial-sec .testimonial-bg {
		padding: 40px 0px 40px 50px;
	}
	.testimonial-bg h6 {
		padding-right: 0px;
	}
	.testimonial-slider  .slick-dots {
		left: -320px;
	}
	.testimonial-slider  h4 {
		font-size: 14px;
		margin: 0px;
	}
	.testimonial-slider p {
		font-size: 12px;
	}
	.testimonialsContent .client-img img {
		border-radius: 50%;
		width: 50px;
	}
	.testimonial-bg h2 {
		padding-right: 10px;
		padding-bottom: 20px;
	}
	.testimonialsContent h5 {
		font-size: 13px;
	}
	.testimonial-slider  .slick-dots {
		left: 0px;
		bottom: -40px;
		margin: auto;
		width: 100%;
	}
	.testimonial-slider .slick-next {
		display: none !important;
	}
	.testimonial-slider .slick-prev {
		display: none !important;
	}
}

@media (max-width: 992px) {
	.testimonialDiv {
		margin-left: 140px;
	}
	.testimonial-sec {
		padding: 0px 0px 50px 0px;
	}
}
@media (max-width: 916px){
	.testimonialDiv {
    margin-left: 100px;
}
}
@media (max-width: 852px){
	.testimonialDiv {
    margin-left: 70px;
}
}
@media (max-width:820px) {
	.testimonialDiv {
		margin-left: 60px;
	}
}
@media (max-width: 741px){
	.testimonialDiv {
    margin-left: 100px;
}
}
@media (max-width: 576px) {
	.testimonialDiv {
		margin-left: 15px;
		border-radius: 30px 0px 0px 30px;
	}
	.testimonial-sec .testimonial-bg {
		padding: 30px 0px 40px 30px;
	}
	.testimonial-slider  h4 {
		font-size: 13px;
		margin: 0px;
	}
	.testimonial-slider-wrapp {
		margin-right: 25px;
		padding: 15px;
	}
	.testimonial-slider  .slick-dots {
		left: -20px;
		margin: auto;
		width: 100%;
	}
}

/* responsive testimonial css End */

.custom-banner{
    position: relative;
    background-image: url("../img/custom-banner.webp");
    background-size: cover;
    height: 350px;
    background-repeat: no-repeat;
}
section.custom-banner .banner-text {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding-top: 70px;
}
section.custom-banner .banner-text  h1 {
    font-family: var(--font-heading);
    color: var(--light-bg);
    text-align: center;
    font-size: 42px;
    letter-spacing: -1px;
}
section.custom-banner .banner-text h5 {
    text-align: center;
    text-transform: uppercase;
	color: var(--bg-primary);
	margin: 0px;
	font-family: var(--font-calibri-bold);
}


.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}
.pagination-wrapper li.page-item {
    margin: 0px 5px;
}
.pagination-wrapper li.page-item {
    margin: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}
.pagination-wrapper li.page-item a {
    background: #fff;
    border-radius: 10px !important;
    box-shadow: 1px 1px 8px 0px rgb(59 49 49 / 60%);
    -webkit-box-shadow: 1px 1px 8px 0px rgb(59 49 49 / 14%);
    -moz-box-shadow: 1px 1px 8px 0px rgba(59, 49, 49, 0.6);
    color: #AAAAAA;
    font-family: var(--font-calibri-bold);
    font-size: 20px;
    padding: 5px 16px;
}
a.page-link.active {
    background: var(--bg-primary) !important;
    color:var(--dark-text-color) !important;
}
.page-item:first-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    color:var(--dark-text-color) !important;
}
.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    color:var(--dark-text-color) !important;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: .85rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.icon {
    position: relative;
}
.myaccount-form .icon img {
    position: absolute;
    top: 35px;
    right: 24px;
    width: 18px;
    height: 12px;
    cursor: pointer;
}

.myaccount-left-side .my-account-tabs a:hover {
    padding: 5px 0px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--bg-primary);
}
.myaccount-left-side .my-account-tabs a.active {
    padding: 5px 0px;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--bg-primary);
}
/* Footer Css Start Here */
footer {
    background-image: url(../img/footer/footerbg.jpg);
    border-radius: 30px 30px 0px 0px;
    padding: 80px 0px 10px;
    background-size: cover;
    background-repeat: no-repeat;
}

footer .footer-content p {
	color: var(--light-text-color);
	padding-top: 15px;
	margin: 0;
}

footer .footer-content .social-icon {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 80%;
	flex-wrap: wrap;
}

footer .footer-content .social-icon li {
	margin-right: 15px;
}

footer .footer-content .social-icon li a {
	background: var(--extra-color-1);
	width: 35px;
	display: flex;
	height: 35px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: var(--extra-color-2);
	border: 2px solid var(--extra-color-2);
	transition: 0.6s;
}

footer .footer-content .social-icon li a:hover {
	box-shadow: 0px 0px 0px 2px var(--extra-color-1);
}

footer .footer-content .head h4 {
	color: var(--extra-color-1);
	font-family: var(--font-heading);
}

footer .footer-content .head {
	padding-bottom: 20px;
}

footer .footer-content .head h3 {
    font-size: 22px;
    color: var(--bg-primary);
    font-family: var(--font-AGaramondPro-bold);
    border-bottom: 1px solid #3f3f3f;
}

footer .footer-content ul.menu-links {
	padding: 0;
	margin: 0;
	list-style: none;
}

footer .footer-content ul.menu-links li a {
	color: var(--light-text-color);
	font-size: 14px;
}

footer .footer-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

footer .logo-content .logo-box {
	max-width: 200px;
}

footer ul.social-icons {
	display: flex;
	flex-wrap: wrap;
	max-width: 200px;
}

footer ul.social-icons li {
	margin-right: 8px;
}

footer ul.social-icons li a {
	background: var(--heading-color-2);
	color: var(--dark-text-color);
	width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	border-radius: 5px;
	font-size: 14px;
}
footer ul.social-icons li a:hover {
	background: var(--bg-primary);
	height: 32px;
	width: 32px;
	transition: 0.6s all;
    transform: scale(1.2);
}

footer .footer-content ul li {
	padding-bottom: 10px;
}

footer .footer-content ul.menu-links li a i {
	margin-right: 10px;
}

ul.menu-links.menus.quick-links {
    column-count: 2;
}
.menu-links.menus.quick-links a:hover{
	color: var(--bg-primary);
	transition: 1s all;
}

footer .newsletter-content {
	max-width: 90%;
	margin: 0 0 0 auto;
}
footer .newsletter-content ul.social-icons li{
	margin-right: 8px;
    margin-bottom: 12px;
}

footer .footer-content form .form-group {
	flex: 1;
}

footer .footer-content form .form-group .form-control {
    border-radius: 5px;
    height: 40px;
    color: #9c9a9a;
    font-size: 13px;
    box-shadow: none;
    outline: none;
    margin: 10px 0px;
    max-width: 90%;
}

footer .footer-content form .btn-secondary {
	background: var(--secondary-btn-color);
	border-radius: 5px;
    height: 40px;
	border: none;
	width: 90%;

}

footer .copyright {
	margin-top: 30px;
	padding-top: 20px;
	padding-bottom: 10px;
	border-top: 1px solid #373737;
	display: flex;
    justify-content: space-between;
}

footer .copyright p {
	color: var(--light-text-color);
	font-size: 14px;
	margin: 0;
	text-align: center;
}
footer .copyright ul {
    display: flex;
    color: var(--light-text-color);
    padding: 0px;
}
footer .copyright ul li {
    list-style: none;
}
footer .copyright ul li a {
    padding: 0px 10px;
    font-size: 14px;
}

@media (max-width: 992px) {
	footer .footer-content .social-icon {
		max-width: 60%;
	}

	footer .footer-content .head {
		padding-bottom: 0px;
		padding-top: 25px;
	}

	footer .footer-content .latest-blog-box .img-box {
		flex: 0 0 12%;
	}
	footer .quick-links li {
		padding-bottom: 15px !important;
	}

	footer .newsletter-content {
		max-width: 100%;
	}
	footer .copyright p {
		font-size: 12px;
	}
	footer .copyright ul li a {
		font-size: 12px;
	}
	footer ul.social-icons {
		max-width: 100%;
		margin-top: 20px;
	}
	footer .footer-content ul.menu-links {
		margin: 10px 0px 0px 0px;
	}
}

@media (max-width: 768px) {
	footer .quick-links li {
		padding-bottom: 10px !important;
	}

	footer .newsletter-content {
		max-width: 100%;
	}
	footer .footer-content ul.menu-links {
		padding-top: 15px;
	}
	footer ul.social-icons {
		padding-top: 15px;
		max-width: 100%;
	}
	footer .copyright {
		margin-top: 15px;
		padding-top: 20px;
		padding-bottom: 0px;
	}
}

@media (max-width: 575px) {
	footer {
		padding: 40px 0px 10px;
	}
	footer .footer-content .social-icon {
		max-width: 75%;
	}

	footer .footer-content .head {
		padding-bottom: 10px;
	}

	footer .footer-content .latest-blog-box .img-box img {
		height: 50px;
	}

	footer .footer-content .latest-blog-box .content {
		padding-left: 15px;
		max-width: 65%;
	}

	footer .copyright {
		padding-top: 20px;
		padding-bottom: 10px;
		font-size: 13px;
	}

	footer .copyright p {
		font-size: 13px;
		text-align: left;
	}
	footer .quick-links li {
		padding-bottom: 10px !important;
	}
	footer .newsletter-content {
		max-width: 100%;
	}
	footer ul.social-icons {
		display: flex;
		flex-wrap: wrap;
		max-width: 100%;
		margin-top: 0px;
	}
	footer .copyright {
		margin-top: 0px;
		display: block;
	}
	footer .copyright ul li a {
		padding: 0px 10px;
		font-size: 13px;
	}
	footer .copyright ul li:first-child a{
		padding-left: 0px;
	}
	footer .footer-content form .form-group .form-control {
		max-width: 100%;
	}
	footer .footer-content form .btn-secondary {
		width: 100%;
	}
	section.custom-banner .banner-text {
		padding-top: 100px;
	}
	section.custom-banner .banner-text  h1 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
	footer .footer-content .social-icon {
		max-width: 100%;
	}

	footer .footer-content .social-icon li {
		margin-right: 0px;
	}

	footer .footer-content ul li a {
		font-size: 12px;
	}
}

/* Footer Css End Here */
