/* ==GOOGLE FONT== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");

@font-face {
	font-family: "Helvetica Neue";
	src: url("../font/HelveticaNeueBold.ttf") format("truetype");
}
/* ==VARIABLES== */
:root {
	--header-height: 3.5rem;

	--body-color: #fff;
	--dark-color: #000;
	--primary-color: #27374d;
	--secondary-color: #526d82;
	--bg-color: rgb(33, 39, 49, 0.75);
	--light-color: #9db2bf;

	--ff-primary: "Montserrat", sans-serif;
	--ff-secondary: "Helvetica Neue", sans-serif;
	--fw-bold: 700;
	--fw-medium: 600;
	--normal-fs: 0.938rem;
	--medium-fs: 1rem;
	--big-fs: 1.8rem;
	--h1-fs: 1.5rem;
	--h2-fs: 1.25rem;
	--small-fs: 0.813rem;

	--ztooltip: 10;
	--zfixed: 100;
}

@media screen and (min-width: 1024px) {
	:root {
		--normal-fs: 1.2rem;
		--medium-fs: 2.25rem;
		--big-fs: 4rem;
		--h1-fs: 3rem;
		--h2-fs: 2.5rem;
		--small-fs: 0.875rem;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

body,
button,
input,
textarea {
	font-family: var(--ff-primary);
	font-size: 12px;
	color: #72767c;
}

body {
	background-color: var(--body-color);
	color: var(--primary-color);
}

h1,
h2 {
	font-weight: var(--fw-bold);
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	max-width: 1124px;
	margin-right: 1.5rem;
	margin-left: 1.5rem;
}

.section {
	padding: 7rem 0;
}

.section-data {
	display: flex;
	flex-direction: column;
	row-gap: 0.75rem;
	text-align: center;
	margin-bottom: 35px;
}

.section-title {
	color: #414750;
	font-size: 36px;
	letter-spacing: -1.5px;
	font-family: var(--ff-secondary);
}

.section-subtitle {
	font-size: var(--h2-fs);
	font-weight: 400;
	letter-spacing: 1.5px;
	color: var(--primary-color);
}

.section-desc {
	line-height: 1.5;
	font-size: 12px;
	color: #72767c;
	font-weight: 500;
}

.grid {
	display: grid;
	gap: 1.5rem;
}

.main {
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 0.7rem;
	border-radius: 0.5rem;
	background-color: #293641;
}

::-webkit-scrollbar-thumb {
	background-color: #56595a;

	border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
	background-color: rgb(95, 97, 99);
}

/* ==HEADER & NAV== */
.header {
	width: 100%;
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--zfixed);
	transition: background 0.3s;
}

.nav {
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo,
.nav-toggle {
	color: var(--body-color);
	display: flex;
}

.nav-close {
	color: #72767c;
	display: flex;
}
.nav-toggle-scrolled {
	color: var(--dark-color);
	display: flex;
}

.nav-logo {
	align-items: center;
	column-gap: 0.5rem;
	font-weight: var(--fw-medium);
}

.nav-logo img {
	height: 45px;
}

.nav-toggle {
	font-size: 1.25rem;
	cursor: pointer;
}
.nav-toggle-scrolled {
	font-size: 1.25rem;
	cursor: pointer;
}

@media screen and (max-width: 1023px) {
	.nav-menu {
		position: fixed;
		background-color: #fff;
		right: 0;
		top: -100%;
		width: 100%;
		height: 100%;
		transition: top 0.3s;
	}
}

.nav-list {
	padding: 5rem 0 0 0;
	display: flex;
	flex-direction: column;
	row-gap: 2.5rem;
	align-items: center;
}

.nav-link {
	color: #72767c;
	transition: color 0.3s;
	font-size: 12px;
	font-weight: 600;
}

.nav-link:hover {
	color: #da5556;
}

.active {
	color: #da5556;
	font-weight: 600;
}

.nav-close {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-size: 1.5rem;
	cursor: pointer;
}

.nav .nav-btn {
	background-color: var(--primary-color);
	color: #fff;
}

.show-menu {
	top: 0;
}

.bg-scrolled {
	background-color: var(--body-color);
	box-shadow: rgba(33, 39, 49, 0.3) 0px 10px 20px;
}

/* <=====HERO SWIPER START=====> */
.swiper {
	width: 100%;
	height: 100vh;
	position: relative;
}
.swiper-button-prev,
.swiper-button-next {
	display: none;
}
.swiper-pagination-bullet {
	background: #dadcdc;
}
.swiper-pagination-bullet-active {
	background: #da5556;
}
.swiper .swiper-wrapper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2f475ed2;
} */
.slide-content {
	position: absolute;
	top: calc(100% / 3);
	color: #fff;
	left: 5%;
	right: 5%;
	text-align: left;
	z-index: 10;
}
.slide-content .home-subtitle {
	font-size: 18px;
	font-weight: 500;
}
.slide-content .home-title {
	font-size: 2.75rem;
	font-family: "Helvetica Neue";
	margin-bottom: 1rem;
}
.slide-content .main-home-title {
	font-size: 60px;
	font-family: "Helvetica Neue";
	font-weight: 600;
	letter-spacing: -2px;
	margin-bottom: 1rem;
}
.slide-content .home-desc {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 1.1rem;
}

.btn {
	border: none;
	outline: none;
	font-size: 12px;
	font-weight: 700;
	background-color: #da5556;
	padding: 12.5px 25px;
	text-decoration: none;
	color: #fff;
	transition: background 0.3s;
}
.btn:hover {
	background-color: #c94d4e;
}
.btn i {
	transition: transform 0.3s;
}
.btn:hover i {
	transform: translateX(0.25rem);
}
.btn-flex {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.5rem;
}
/* <=====HERO SWIPER END=====> */

/* <=====ABOUT START=====> */
.about-container {
	justify-items: center;
}
.about-container img {
	width: 424px;
	border-bottom: 8px solid #da5556;
}
.about-content .section-title {
	color: #414750;
	font-size: 36px;
	letter-spacing: -1.5px;
	font-family: var(--ff-secondary);
	margin-bottom: 25px;
}
.about-content .section-desc {
	border-left: 5px solid #da5556;
	line-height: 1.5;
	text-align: justify;
	font-size: 12px;
	color: #72767c;
	font-weight: 400;
	padding-left: 20px;
}

/* <=====ABOUT END=====> */

/* <=====SERVICE START=====> */
.service {
	background-color: #f8f9fa;
}
.service-container {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	/* grid-template-columns: 270px; */
	justify-content: center;
	row-gap: 30px;
}

.service-card {
	box-shadow: rgba(33, 39, 49, 0.3) 0px 10px 20px;
	border-radius: 3px;
	background-color: var(--body-color);
	padding: 27.5px 40px;
	transition: all 0.4s ease-in-out;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 310px;
}

.service-card:hover {
	transform: scale(1.03) !important;
}

.service-bg {
	text-align: center;
	margin-top: 25px;
	margin-bottom: 20px;
}

.service-bg > svg {
	height: 60px;
}

.service-title {
	font-family: var(--ff-secondary);
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: -1px;
	text-align: center;
	margin-bottom: 1.7rem;
	height: 25px;
	color: #414750;
}

.service-desc {
	line-height: 1.5;
	text-align: center;
	font-size: 12px;
	color: #72767c;
	text-wrap: balance;
}

/* <=====SERVICE END=====> */

/* <=====PRICING START=====> */
input {
	width: 100%;
	height: 36px;
	padding: 0 15px;
	margin-bottom: 12px;
	border: none;
	background-color: #ebedef;
	transition: all 0.3s ease-out 0s;
	text-transform: capitalize;
	color: #414750;
}

input::placeholder {
	color: #72767c;
	opacity: 1;
}

input:focus {
	outline: none;
}

datalist {
	position: absolute;
	background-color: #ebedef;
	max-height: 10rem;
	width: inherit;
	overflow-y: auto;
	overflow-x: auto;
	margin-top: -15px;
}

option {
	background-color: #ebedef;
	padding: 10px 15px;
	color: #414750;
	cursor: pointer;
	width: 100%;
}

option:hover,
.option-active {
	background-color: #a0a5ac;
}

datalist::-webkit-scrollbar {
	width: 0;
}

.error {
	border: 1px solid #da5556;
	transition: 0.3s all;
}

.danger {
	color: #da5556;
	transition: 0.3s all;
}

.notfound {
	display: block;
	color: #fff;
	background-color: #da5556;
	text-align: center;
	padding: 5px 0;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 600;
	transition: 0.3s all;
}

.failed {
	display: block;
	color: #fff;
	background-color: #da5556;
	text-align: center;
	padding: 5px 0;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 600;
	transition: 0.3s all;
}

.success {
	display: block;
	color: #fff;
	background-color: #7af118;
	text-align: center;
	padding: 5px 0;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 600;
	transition: 0.3s all;
}

.flex {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex .btn-flex-center {
	cursor: pointer;
}

/* ------modal price start*/
.modal {
	display: none;
	position: fixed;
	z-index: 999;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
.modal.show {
	opacity: 1;
}

.modal-content {
	display: flex;
	flex-direction: column;
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	border-radius: 3px;
	width: 100%;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: -20px;
}

.modal-title {
	font-size: 18px;
	line-height: 1.25;
	margin-bottom: 1.7rem;
	letter-spacing: -1px;
	height: 25px;
	color: #414750;
}

.modal-close {
	color: #aaaaaa;
	font-size: 1.5rem;
	cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.modal-data .column1 {
	width: 35%;
}
.modal-data .column1 p {
	margin-top: 5px;
	color: #72767c;
}
.modal-data .column2 p {
	margin-top: 5px;
	color: #72767c;
}
.modal-data .column2 {
	width: 100%;
}

.modal-result {
	margin-top: 10px;
	margin-bottom: 20px;
	overflow-x: auto;
}

.modal-result table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	border: 1px solid #ebedef;
}

.modal-result table th,
.modal-result table td {
	text-align: left;
	padding: 8px;
	border: 1px solid #ebedef;
}

.modal-result table th {
	font-weight: 600;
	color: #414750;
}
.modal-result table td {
	color: #72767c;
}
.modal-result .center {
	text-align: center;
}
.modal-result .right {
	text-align: right;
}

/* ------modal price end*/
/* <=====PRICING END=====> */

/* <=====CONTACT START=====> */
.contact {
	background-image: url(../img/butuh-bantuan.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

/* .contact-container {
  position: absolute;
  z-index: 1;
} */

.contact-container .section-data .section-title,
.contact-container .section-data .section-desc {
	color: #fff;
}

.form-email input {
	width: 100%;
	height: 36px;
	padding: 0 15px;
	margin-bottom: 12px;
	border: 1px solid #fff;
	background-color: transparent;
	transition: all 0.3s ease-out 0s;
	text-transform: capitalize;
	color: #fff;
	font-size: 12px;
}

.form-email input::placeholder,
.form-email textarea::placeholder {
	color: #fff;
	opacity: 1;
}

.form-email textarea {
	width: 100%;
	height: 85px;
	resize: none;
	padding: 15px;
	margin-bottom: 12px;
	border: 1px solid #fff;
	background-color: transparent;
	transition: all 0.3s ease-out 0s;
	text-transform: capitalize;
	color: #fff;
}

.form-email textarea:focus {
	outline: none;
}
.form-email .input-mail {
	text-transform: lowercase;
}
.form-email .input-mail::placeholder {
	text-transform: capitalize;
}

/* <=====CONTACT END=====> */

/* <=====FOOTER START=====> */
.footer {
	background-color: #da5556;
}
.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));

	gap: 1.5rem;
}
.footer-content {
	color: #fff;
}

.footer-content:nth-of-type(1) {
	order: 3;
}
.footer-content h4 {
	font-family: var(--ff-secondary);
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 0.75rem;
}
.footer-content p {
	font-size: var(--small-fs);
	color: #ecebeb;
}
.footer-img {
	height: 96px;
}
.footer-content ul li {
	margin-bottom: 0.5rem;
}
.footer-content ul li a {
	display: flex;
	font-size: var(--small-fs);
	color: #f0bbbb;
	align-items: center;
	font-weight: 500;
	transition: 0.3s;
}
.footer-content ul li p {
	color: #f0bbbb;
}

.footer-content ul li .block {
	display: inline-block;
}
.footer-content ul li a:hover {
	color: #fff;
}
.footer-content ul li a i {
	padding-right: 5px;
	font-size: 1rem;
}

.footer.section {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

.copyright {
	padding-top: 0.75rem;
	padding-bottom: 0.25rem;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.go-top {
	font-size: 1.2rem;
	border: none;
	outline: none;
	cursor: pointer;
	color: #fff;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 30px;
	height: 30px;
	padding: 0.35rem;
	border-radius: 3px;
	background-color: #da5556;
	z-index: 99;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
	display: inline-flex;
	opacity: 0;
}

.go-top.show {
	opacity: 1;
	transition: all 0.5s;
}

.go-top:hover {
	background-color: #c94d4e;
	transform: translateY(-0.22rem);
}

/* <=====FOOTER END=====> */

.term {
	text-align: left;
}

.term-data {
	text-align: left;
	font-size: 14px;
}

.term-list {
	padding: 0.5rem 0.5rem;
}

.term-list > tbody {
	vertical-align: inherit;
}

.term-items {
	padding: 0.5rem;
	color: #72767c;
}

/* responsive breakpoints */

@media screen and (max-width: 340px) {
	.section-title {
		font-size: 1.5rem;
		letter-spacing: 1.3px;
	}
	.section-subtitle {
		font-size: 1.1rem;
		letter-spacing: 1.3px;
	}

	/* navmenu */
	.nav-menu {
		width: 100%;
	}
	.nav-list {
		padding: 5rem 0 0 0;
		align-items: center;
	}

	/* swiper */
	.slide-content {
		left: 7%;
		right: 7%;
	}
	.slide-content .main-home-title {
		font-size: 36px;
		font-family: "Helvetica Neue";
		font-weight: 600;
		margin-bottom: 0.5rem;
	}
	.slide-content .home-subtitle {
		font-size: 18px;
		font-weight: 500;
	}
	.slide-content .home-title {
		font-size: 2.4rem;
		margin-bottom: 0.5rem;
	}
	.slide-content .home-desc {
		font-size: 12px;
		font-weight: 400;
		margin-bottom: 1rem;
	}
	.btn {
		font-size: 12px;
		padding: 12.5px 25px;
	}

	/* about */
	.about-container img {
		width: 424px;
	}
	.about-content .section-title {
		color: #414750;
		font-size: 36px;
		letter-spacing: -1.5px;
		line-height: 1.25;
		margin-bottom: 25px;
	}

	.about-content .section-desc {
		line-height: 1.5;
		text-align: justify;
		font-size: 12px;
		color: #72767c;
		font-weight: 400;
	}

	/* service */
	.service-container {
		grid-template-columns: 250px;
		row-gap: 30px;
	}
	.service-card {
		padding-left: 40px;
		padding-right: 40px;
		padding-bottom: 17.5px;
		padding-top: 17.5px;
	}
	.service-bg > svg {
		height: 50px;
	}
	.service-title {
		font-size: 18px;
		line-height: 1.25;
		margin-bottom: 1.7rem;
		letter-spacing: -1px;
		height: 25px;
		color: #414750;
	}

	/* pricing */
	input {
		height: 38px;
		padding: 0 12px;
		margin-bottom: 10px;
	}
	.btn-action {
		font-size: 0.8rem;
		padding: 8px 16px;
		margin-top: 10px;
	}

	/* modal */
	.modal-data .column1 {
		width: 40%;
	}
	.modal-data .column1 p {
		margin-top: 5px;
		font-size: 0.8rem;
	}
	.modal-data .column2 p {
		margin-top: 5px;
		font-size: 0.8rem;
	}
	.modal-result table th,
	.modal-result table td {
		font-size: 0.8rem;
		padding: 8px;
		border: 1px solid #000000;
	}

	.modal-result table td {
		color: #72767c;
	}

	/* contact */
	.form-email input {
		width: 100%;
		height: 38px;
		padding: 0 12px;
		margin-bottom: 10px;
	}

	/* footer */
	.footer-container {
		gap: 1.2rem;
		grid-auto-flow: dense;
	}
	.footer-img {
		height: 76px;
	}

	.footer-content h4 {
		font-size: 18px;
		font-weight: 700;
	}
	.footer-content ul li {
		margin-bottom: 0.5rem;
	}
	.copyright {
		padding-top: 0.75rem;
		padding-bottom: 0.25rem;
		color: #fff;
		font-size: 14px;
		font-weight: 700;
	}
}

@media screen and (min-width: 768px) {
	/* nav */
	.nav-menu {
		width: 100%;
	}
	.nav-list {
		padding: 7rem 0 0 0;
		align-items: center;
	}

	/* datalist {
		width: 97.5%;
	} */

	/* swiper */
	.slide-content .main-home-title {
		font-size: 60px;
		font-family: "Helvetica Neue";
		font-weight: 600;
	}
	.slide-content .home-subtitle {
		font-size: 18px;
		font-weight: 500;
	}
	.slide-content .home-title {
		font-size: 4.3rem;
	}
	.slide-content .home-desc {
		font-size: 12px;
		font-weight: 400;
		margin-bottom: 1.5rem;
	}
	.btn {
		font-size: 12px;
		padding: 12.5px 25px;
	}

	/* about */
	.about-container {
		grid-template-columns: repeat(2, 1fr);
		align-items: end;
		margin-bottom: 2rem;
	}
	.about-container img {
		width: 424px;
	}
	.about-content .section-title {
		color: #414750;
		font-size: 36px;
		letter-spacing: -1.5px;
		line-height: 1.25;
		margin-bottom: 25px;
	}

	.about-content .section-desc {
		line-height: 1.5;
		text-align: justify;
		font-size: 12px;
		color: #72767c;
		font-weight: 400;
	}

	/* service */
	.service {
		padding-bottom: 50px;
	}

	/* pricing */
	.form {
		padding: 0 10px;
	}
	input {
		margin-bottom: 15px;
	}
	.btn-action {
		margin: 15px 0;
	}

	/* footer */
	.footer-container {
		justify-content: space-around;
	}

	.footer-content:nth-of-type(1) {
		order: -1;
	}

	.term-data {
		text-align: justify;
		font-size: 14px;
	}
}

@media screen and (min-width: 1023px) {
	.container {
		/* margin: 0 8%; */
		margin-left: auto;
		margin-right: auto;
	}
	.section {
		padding: 7rem 0;
	}

	.nav-link {
		color: #dadcdc;
		transition: color 0.3s;
		font-size: 12px;
		font-weight: 600;
	}

	.nav-link:hover {
		color: var(--body-color);
	}

	.active {
		color: var(--body-color);
		font-weight: 600;
	}

	.about-content .section-title {
		color: #414750;
		font-size: 36px;
		letter-spacing: -1.5px;
		line-height: 1.25;
		margin-bottom: 25px;
	}

	.about-content .section-desc {
		line-height: 1.5;
		text-align: justify;
		font-size: 12px;
		color: #72767c;
		font-weight: 400;
	}

	.about-content .section-desc {
		font-size: 12px;
	}

	.header.bg-scrolled .nav-link {
		color: #72767c;
	}
	.header.bg-scrolled .nav-link.active {
		color: #da5556;
		font-weight: 600;
	}
	.header.bg-scrolled .nav-link:hover {
		color: #da5556;
	}
	.nav {
		height: calc(var(--header-height) + 1.5rem);
	}
	.nav-logo img {
		height: 55px;
	}
	.nav-menu {
		width: initial;
	}
	.nav-toggle,
	.nav-close {
		display: none;
	}
	.nav-toggle-scrolled {
		display: none;
	}
	.nav-list {
		flex-direction: row;
		padding: 0;
		align-items: center;
		column-gap: 2rem;
	}

	.swiper-button-prev,
	.swiper-button-next {
		color: #fff;
		display: inline-block;
		text-align: center;
		width: 4rem;
		height: 4rem;
	}
	.slide-content {
		top: calc(100% / 2.9);
		left: 8%;
		right: 8%;
		width: 70%;
	}
	.slide-content .home-subtitle {
		font-size: 18px;
		font-weight: 500;
	}
	.slide-content .home-title {
		font-size: 5.75rem;
		font-family: "Helvetica Neue";
		margin-bottom: 0.8rem;
	}
	.slide-content .main-home-title {
		font-size: 60px;
		font-family: "Helvetica Neue";
		letter-spacing: -2px;
		margin-bottom: 0.8rem;
		font-weight: 600;
	}
	.slide-content .home-desc {
		font-size: 12px;
		font-weight: 400;
		margin-bottom: 1.5rem;
	}
	.btn {
		font-size: 12px;
		padding: 12.5px 25px;
	}

	.about-container {
		align-items: center;
	}
	.about-container img {
		width: 424px;
	}

	.service-container {
		grid-template-columns: repeat(3, 345px);
	}

	.footer.section {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.footer-container {
		justify-content: space-around;
	}

	.footer-content:nth-of-type(1) {
		order: -1;
	}

	.footer-content p {
		line-height: 1.5;
	}

	.copyright {
		padding-top: 0.75rem;
		padding-bottom: 0.25rem;
		color: #fff;
		font-size: 14px;
		font-weight: 700;
	}
}

.branch {
	background-color: #f8f9fa;
}

.branch-container {
	column-gap: 1.5rem;
	column-fill: initial;
	column-width: 310px;
}

.branch-container > * {
	break-inside: avoid;
	margin-bottom: 1.5rem;
}

@supports (grid-template-rows: masonry) {
	.branch-container {
		display: grid;
		gap: 1.5rem;
		grid-template-rows: masonry;
		grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
		align-tracks: stretch;
	}

	.branch-container > * {
		margin-bottom: initial;
	}
}

.brick {
	background: #fff;
	text-align: center;
	padding: 1.2rem;
	border-radius: 3px;
	box-shadow: rgba(33, 39, 49, 0.3) 0px 10px 20px;
	transition: transform 0.3s;
}

.brick .branch-name {
	/* text-transform: capitalize;
  font-size: 1.2rem;
  color: #da5556; */
	font-family: var(--ff-secondary);
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: -1px;
	text-align: center;
	/* margin-bottom: 1rem; */
	height: 25px;
	color: #414750;
}
.brick .branch-address {
	text-transform: capitalize;
	font-size: var(--small-fs);
	line-height: 1.3;
	padding: 8px 0;
	color: #72767c;
}

.footer-social a {
	text-decoration: none;
	color: #f0bbbb;
	font-size: 1.5rem;
}

.footer-social a:hover .icon-social {
	color: #fff;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	display: table;
	height: 100%;
	width: 100%;
	background: #fff;
	z-index: 99999;
}

.preloader .loader {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.preloader .loader .ytp-spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	margin-left: -32px;
	z-index: 18;
	pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
	pointer-events: none;
	position: absolute;
	width: 100%;
	padding-bottom: 100%;
	top: 50%;
	left: 50%;
	margin-top: -50%;
	margin-left: -50%;
	animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite
		both;
}

.preloader
	.loader
	.ytp-spinner
	.ytp-spinner-container
	.ytp-spinner-rotator
	.ytp-spinner-left {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	right: 50%;
}

.preloader
	.loader
	.ytp-spinner
	.ytp-spinner-container
	.ytp-spinner-rotator
	.ytp-spinner-right {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	left: 50%;
}

.preloader .loader .ytp-spinner-circle {
	box-sizing: border-box;
	position: absolute;
	width: 200%;
	height: 100%;
	border-style: solid;
	/* Spinner Color */
	border-color: #e84e4e #e84e4e #f9f9f9;
	border-radius: 50%;
	border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
	left: 0;
	right: -100%;
	border-right-color: #f9f9f9;
	animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
		both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
	left: -100%;
	right: 0;
	border-left-color: #f9f9f9;
	animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */

@keyframes ytp-spinner-linspin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes ytp-spinner-easespin {
	12.5% {
		transform: rotate(135deg);
	}

	25% {
		transform: rotate(270deg);
	}

	37.5% {
		transform: rotate(405deg);
	}

	50% {
		transform: rotate(540deg);
	}

	62.5% {
		transform: rotate(675deg);
	}

	75% {
		transform: rotate(810deg);
	}

	87.5% {
		transform: rotate(945deg);
	}

	to {
		transform: rotate(1080deg);
	}
}

@keyframes ytp-spinner-left-spin {
	0% {
		transform: rotate(130deg);
	}

	50% {
		transform: rotate(-5deg);
	}

	to {
		transform: rotate(130deg);
	}
}

@keyframes ytp-right-spin {
	0% {
		transform: rotate(-130deg);
	}

	50% {
		transform: rotate(5deg);
	}

	to {
		transform: rotate(-130deg);
	}
}
