@font-face {
	font-family: 'ff_neuwelt';
	src: url('/fonts/Neuwelt-Black.woff');
}

@font-face {
	font-family: 'ff_neuwel_light';
	src: url('/fonts/Neuwelt-Light.woff');
}

@font-face {
	font-family: 'FFNeuwelt';
	src: url('/fonts/Neuwelt-Regular.woff');
}

html,
body {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.font-light {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
}

.font-light:hover {
	color: #0054ff !important;
}

.font-poppins {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
}

.font-para {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: #686868 !important;
}

.primary-font-color {
	color: #686868 !important;
}

.nav-link {
	padding-right: 0.9rem !important;
	padding-left: 0.9rem !important;
}

.contact-btn {
	background-color: #0054ff;
	border-radius: 10px;
}

.nav-color {
	color: #6c757d;
	font-size: 17px;
	margin-right: 20px;
}

a.primary-font-color.font-light.nav-item.nav-link {
	font-size: 18px;
}

.nav-logo {
	height: 40px;
}

.main-title {
	font-family: 'FFNeuwelt';
	font-weight: 600;
	font-size: 3.5rem;
	letter-spacing: 1px;
	margin-bottom: 17px;
}

.title-tag {
	font-family: 'FFNeuwelt';
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.btn-primary {
	color: white;
	background-color: #0054ff;
}


/* footer */
a.footer-a-tag {
	text-decoration: none;
	color: #686868;
}

ul.footer-list li {
	list-style: none;
	color: #fff;
}

body .footer {
	z-index: 1;
	--footer-background: #ffffff;
	display: grid;
	position: relative;
	grid-area: footer;
	min-height: 12rem;
}

body .footer .content {
	padding: 4rem 1rem 2rem;
	background: var(--footer-background);
	z-index: 2;
}

.footer .content .container {
	margin: 0 auto;
	/* display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem; */
	color: #fff;
}

.content h2 {
	margin-bottom: .25rem;
	font-size: 2.25rem;
}

.content span {
	font-size: .875rem;
}

.footer__links {
	display: flex;
	flex-direction: row;
	column-gap: 2rem;
	transition: all 150ms ease-out;
	justify-content: center;
	padding: 0;
}

.footer__links .footer__link {
	transition: all 150ms ease-out;
	display: inline-block;
}

.footer__link:hover:after {
	width: 100%;
}

.footer__link:after {
	content: '';
	display: block;
	margin: auto;
	height: 2px;
	width: 0px;
	background-color: #fff;
	transition: width .25s ease-out;
}

.footer__socials {
	text-align: end;
}

.footer__social {
	font-size: 1.25rem;
	margin-right: 1.5rem;
}

.footer__social:hover {
	opacity: 0.8;
	color: #0054ff;
}

.footer__copy {
	text-align: center;
	background: #ffffff;
	font-size: .875rem;
	text-align: center;
	color: #6c757d !important;
	padding: 2rem 0 2rem;
	margin: 0;
}


.contact-us-title {
	font-family: 'FFNeuwelt';
	font-size: 45px;
	letter-spacing: 2px;
}

@-webkit-keyframes bubble-size {

	0%,
	75% {
		width: var(--size, 4rem);
		height: var(--size, 4rem);
	}

	100% {
		width: 0rem;
		height: 0rem;
	}
}

@keyframes bubble-size {

	0%,
	75% {
		width: var(--size, 4rem);
		height: var(--size, 4rem);
	}

	100% {
		width: 0rem;
		height: 0rem;
	}
}

@-webkit-keyframes bubble-move {
	0% {
		bottom: -4rem;
	}

	100% {
		bottom: var(--distance, 10rem);
	}
}

@keyframes bubble-move {
	0% {
		bottom: -4rem;
	}

	100% {
		bottom: var(--distance, 10rem);
	}
}

@media screen and (max-width: 992px) {
	.footer__links {
		margin-top: 20px;
	}

	.footer__socials {
		text-align: center;
		padding: 0;
	}
}

@media screen and (max-width: 767px) {
	.footer .content {
		padding: 0 1.5rem;
	}

	.footer .content .container {
		grid-template-columns: repeat(2, 1fr);
	}

	.content h2 {
		font-size: 1.5rem;
	}

	.content span {
		font-size: .813rem;
	}

	.footer__links {
		/* flex-direction: column;
        row-gap: 1.5rem; */
		row-gap: 0.5rem;
		display: inline-grid;
		grid-template-columns: 2fr 2fr;
	}

	.footer__socials {
		justify-self: flex-start;
	}

	.contact-us-title {
		font-size: 30px;
	}
}

@media screen and (max-width: 567px) {
	.footer .content .container {
		grid-template-columns: repeat(1, 1fr);
		row-gap: 0.5rem;
	}
}

/* contact us */
.text-black {
	color: #000;
}

.content {
	padding: 7rem 0;
}

h2 {
	font-size: 3.5rem;
	font-weight: 700;
}

h3 {
	font-size: 2rem;
	font-weight: 700;
}

.form-control {
	border: none;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
}

.form-control:active,
.form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #000;
}

.col-form-label {
	color: #000;
}


.heading {
	text-align: center;
}


.box {
	border-radius: 10px;
	padding: 40px;
	background: #fff;
	-webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
}


label.error {
	font-size: 12px;
	color: red;
}

#message {
	resize: vertical;
}

#form-message-warning,
#form-message-success {
	display: none;
}

#form-message-warning {
	color: #B90B0B;
}

#form-message-success {
	color: #55A44E;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.submitting {
	text-align: center;
	float: left;
	width: 100%;
	padding: 10px 0;
	display: none;
	font-weight: bold;
	font-size: 12px;
	color: #000;
}

.submit-btn {
	padding: 13px !important;
	border-radius: 10px !important;
}

/* logo */
.set {
	text-align: center;
	padding: 10px 0;
}

.autofill {
	padding: 20px;
	/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2), 0 -6px 17px -8px rgba(0, 0, 0, 0.19);
	margin-top: 2%;
	border-radius: 3px;
	display: grid;
	justify-content: center;
	align-items: center;
	gap: 5px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.autofill img {
	-webkit-filter: grayscale(100%) brightness(10%) contrast(10%);
	filter: grayscale(100%) brightness(10%) contrast(10%);
	justify-self: center;
	height: 40px;
}

.autofill img:hover {
	background: none;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}


/* slider */
.btn-slider-testimonial {
	padding: 0.6rem;
	margin: 0 2px;
}

.btn-slider-testimonial:hover {
	color: #fff !important;
	background-color: #0054ff;
}

.push-right {
	float: right;
	margin-bottom: 30px;
}

.rating-color {
	color: #fbc634 !important;
}

.small-ratings i {
	color: #cecece;
}

.testimonial_subtitle {
	margin-bottom: 0.25rem !important;
}

.testimonial-h4 {
	font-family: 'FFNeuwelt';
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	margin-bottom: 2px !important;
}

.service-card-title {
	flex-direction: column-reverse;
	align-items: center;
}

.border-radius-card-service,
.border-radius-card-service img {
	border-radius: 15px;
}

.icon-tag {
	background: #fadad5;
	text-align: center;
	margin: 0;
	padding: 15px;
	border-radius: 100%;
	height: 60px;
	width: 60px;
	font-size: 20px;
}

.testimonial-container {
	display: flex;
	padding-bottom: 20px;
	/* align-items: center; */
}

.testimonial-icon {
	margin-right: 15px;
	/* Adjust the margin as needed */
}

.testimonial-content {
	flex: 1;
}

/* photo gallery */
.button {
	display: inline-block;
	padding: 0.5em 1em;
	border-radius: 20px;
	background: #ffffff;
	font-size: 16px;
	cursor: pointer;
	border: none;
	margin: 10px;
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}

.button:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.button:active,
.button.is-checked {
	color: white;
	background-color: #0054ff;
	/* background-color: rgba(0,0,0,0.1); */
	outline: none;
}

.button-group {
	margin: 20px 0;
	text-align: center;
	overflow-x: scroll;
	white-space: nowrap;
	border-bottom: 1px solid #CECECE;
	border-top: 1px solid #CECECE;
}

.button-group:after {
	content: '';
	display: block;
	clear: both;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 18px;
	vertical-align: middle;

}

.grid article {
	background-color: #FFFFFF;
	display: block;
	float: left;
	margin: 1%;
	width: 23%;
}

@media (max-width: 1024px) {
	.grid article {
		width: 31.3%;
	}
}

@media (max-width: 960px) {
	.text-center-responsive {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.grid article {
		width: 48%;
	}
	.nav-logo {
		height: 30px;
	}
}

@media (max-width: 479px) {
	.grid article {
		margin: 2% 0;
		width: 100%;
	}

	.title-tag {
		font-size: xx-large;
	}

	h5.text-center.font-poppins.primary-font-color {
		font-size: 17px;
	}
}

.button-group::-webkit-scrollbar {
	display: none;
	/* This will hide the scrollbar in WebKit browsers */
}

.navbar-toggler:focus {
	color: #0054ff;
	border-color: #0054ff;
	box-shadow: 0 0 0 0;
}

/* modal image preview */
.modal-target {
	width: 300px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

.modal-target:hover {
	opacity: 0.7;
}

/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.8);
	/* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content-image {
	margin: auto;
	display: block;
	/* width: 80%; */
	opacity: 1 !important;
	max-width: 1200px;
}

/* Caption of Modal Image */
.modal-caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 1200px;
	text-align: center;
	color: white;
	font-weight: 700;
	font-size: 1em;
	margin-top: 32px;
}

/* Add Animation */
.modal-content-image,
.modal-caption {
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
	from {
		-webkit-atransform: scale(0)
	}

	to {
		-webkit-transform: scale(1)
	}
}

@keyframes zoom {
	from {
		transform: scale(0)
	}

	to {
		transform: scale(1)
	}
}

/* The Close Button */
.modal-close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.modal-close:hover,
.modal-close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}


.underline-animation {
	text-decoration: none;
	position: relative;
	white-space: nowrap;
}

.underline-animation svg {
	position: absolute;
	top: 83%;
	left: 0;
	width: 100%;
	height: auto;
}

.underline-animation .stroke {
	stroke: #0054ff;
	stroke-width: 0.10em;
	stroke-dasharray: 822;
	stroke-dashoffset: 822;
	-webkit-animation: underlineAnimation 3s infinite linear;
	/* Updated duration and added 'infinite' for an infinite loop */
	animation: underlineAnimation 3s infinite linear;
	/* Updated duration and added 'infinite' for an infinite loop */
}

@-webkit-keyframes underlineAnimation {
	from {
		stroke-dashoffset: 822;
	}

	to {
		stroke-dashoffset: 0;
	}
}

@keyframes underlineAnimation {
	from {
		stroke-dashoffset: 822;
	}

	to {
		stroke-dashoffset: 0;
	}
}


.line-height {
	line-height: 27px;
}


.icon-tag-content-us {
	background: #fadad5;
	text-align: center;
	margin: 0;
	padding: 10px;
	border-radius: 100%;
	height: 50px;
	width: 50px;
	font-size: 20px;
}

.content-us-icon {
	margin-right: 25px;
}

.custom_round {
	margin: 20px auto;
	border: none;
	padding: 10px 44px;
	font-size: 36px;
	position: relative;
  }
  
  .custom_round::before {
	transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	content: "";
	width: 40px;
	height: 40px;
	border-radius: 60px;
	background: #0054ff;
	position: absolute;
	top: 19px;
	left: 19px;
  }
  
  .custom_round {
	border-radius: 50px;
	text-decoration: none;
  }
  .custom_round .text-green {
	color: white !important;
	mix-blend-mode: difference;
  }
  /* .custom_round::before {
	border-radius: 50px;
	width: 25%;
	background: black;
  } */
  
  .height_width_review {
	width: 80px;
	height: 80px;
  }
  
  @media screen and (max-width: 490px) {
	.custom_round::before {
		background-color: transparent;
	}
}