/*# 00) General #*/
input[type="submit"] {
  cursor: pointer;
}

/*# 01) GLightbox Popup Image #*/
@media (max-width: 767px) {
	.gslide-image img {
		max-height: 68vh !important;
		max-width: 80vw !important;
	}
	
	.glightbox-clean .gprev {
		position: absolute;
		top: 48% !important;
		left: 20px !important;
		width: 35px !important;
		height: 35px !important;
	}
	
	.glightbox-clean .gnext {
		position: absolute;
		top: 48% !important;
		right: 20px !important;
		width: 35px !important;
		height: 35px !important;
	}
	
}


/*# 02) Swal Popup #*/
.swal2-shown.swal2-height-auto {
	padding-right: unset !important;
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
	background: rgba(0, 0, 0, .6) !important;
}

.swal2-container {
	overflow: hidden !important;
	padding: unset !important;
}

.swal2-html-container {
	margin-top: unset !important;
}

.swal2-popup {
	font-family: "Noto Sans, Light" !important;
	letter-spacing: 1px;
	color: var(--dark-blue-color) !important;
	width: 24em !important;
	min-height: 25em !important;
	border-radius: 0.45rem !important;
}

.swal2-title {
	color: var(--light-red-color) !important;
	font-family: "Stone Sans, Medium";
	padding-top: unset !important;
}

.swal2-title h2 {
	position: relative;
	max-width: 100%;
	margin: 0;
	padding: 0 1em 0 1em !important;
	color: inherit;
	font-size: 1.25em;
	font-weight: 600;
	text-align: center;
	text-transform: none;
	word-wrap: break-word;
	font-family: "Stone Sans, Medium";
}

.swal2-title.custom-title-error {
	color: var(--dark-blue-color) !important;
}

.swal2-icon {
	width: 7em !important;
	margin: 2.5em auto .6em;
	line-height: 2em !important;
}

.swal2-styled.swal2-confirm {
	font-family: 'Stone Sans, SemiBold';
	font-weight: bold !important;
	font-size: 1.35rem !important;
	border-bottom: 2px solid var(--dark-blue-color) !important;
	cursor: pointer;
	padding: 5px !important;
	background-color: unset !important;
	color: var(--dark-blue-color) !important;
	outline: 0 !important;
	border-width: 0 0 1px !important;
	border-color: var(--dark-blue-color) !important;
	box-shadow: inset 0 0 2px 2px rgba(247, 0, 0, 0) !important;
	border-radius: unset !important;
}

.swal2-styled.swal2-cancel {
	font-family: 'Stone Sans, SemiBold';
	font-weight: bold !important;
	font-size: 1.35rem !important;
	border-bottom: 2px solid var(--light-red-color) !important;
	cursor: pointer;
	padding: 5px !important;
	background-color: unset !important;
	color: var(--light-red-color) !important;
	outline: 0 !important;
	border-width: 0 0 1px !important;
	border-color: var(--light-red-color) !important;
	box-shadow: inset 0 0 2px 2px rgba(247, 0, 0, 0) !important;
	border-radius: unset !important;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
	background-image: unset !important;
}

.swal2-actions {
	margin-top: unset !important;
}

.swal2-popup .swal2-styled:focus,
.swal-button:focus, .swal2-close:focus {
	box-shadow: none !important;
}

.swal2-close:hover {
	color: var(--light-red-color) !important
}

@media (max-width: 767px) {
	.swal2-popup {
		width: 20em !important;
		min-height: 23em !important;
	}
	
}

/* landscape */
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {
	.swal2-popup {
		width: 24em !important;
		min-height: 20em !important;
	}
	
}


/*# 03) Header #*/
.spsetia-header {
	grid-column: fullbleed;
	display: flex;
	-moz-box-pack: justify;
	justify-content: space-between;
	-moz-box-align: center;
	align-items: center;
	position: absolute;
	z-index: 10;
	padding: calc(var(--gap-padding) * .5) calc(var(--gap-padding) * 1.8);
	/* padding: calc(var(--gap-padding) * .6) calc(var(--gap-padding) * 1); */
	top: 0;
	left: 0;
	right: 0;
	/* width: 100%; */
	background: transparent;
	transition: ease 0.4s;
	margin: 0 auto;
	max-width: 100%;
	max-height: 6.5em;
}

.blurry-bg {
	position: absolute;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background-color: rgba(202, 202, 202, 0.32);
	box-shadow: 0px 3px 3px #0000001A;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
	max-height: 6.5em;
}

.spsetia-header .nav-group {
	display: flex;
	-moz-box-align: center;
	align-items: center;
	gap: 3px;
}

.nav-logo img {
	max-width: 140px;
	white-space: nowrap;
}


/*# 03) Header /a) select language dropdown #*/
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	outline: 0;
	box-shadow: none;
	border: 0 !important;
	background-image: none;
	flex: 1;

	/* added */
	position: relative;
	display: block;
	width: 6em;
	padding: 0 25px 0 0;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--dark-blue-color);
	background: transparent !important;
	cursor: pointer;
	border-right: 1px solid var(--dark-blue-color);
	opacity: 0;
}

/*# 03) Header /b) Custom Select #*/
.custom-select-wrapper {
	position: relative;
	display: inline-block;
	user-select: none;
}

.custom-select-wrapper select {
	display: none;
}

.custom-select {
	position: relative;
	border-right: 1px solid var(--dark-blue-color);
}

.custom-select-trigger {
	position: relative;
	display: block;
	width: 6em;
	padding: 0 25px 0 0;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--dark-blue-color);
	background: transparent !important;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.custom-select-trigger:after {
	position: absolute;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	top: 50%;
	right: 10px;
	margin-top: -3px;
	border-bottom: 1px solid var(--dark-blue-color);
	border-right: 1px solid var(--dark-blue-color);
	transform: rotate(45deg) translateY(-50%);
	transition: all .4s ease-in-out;
	transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
	margin-top: 3px;
	transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	right: 0;
	min-width: 8em;
	margin: 15px 0;
	border: 0 !important;
	border-radius: 0 !important;
	box-sizing: border-box;
	box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
	background: #fff;
	transition: all .4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
}

.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
}

.option-hover:before {
	background: var(--white-color);
}

.custom-option {
	position: relative;
	display: block;
	padding: 5px 22px;
	border-bottom: 1px solid #9996961c;
	font-size: 16px;
	font-weight: 400;
	color: var(--dark-blue-color);
	text-transform: uppercase;
	cursor: pointer;
	transition: .3s ease-in-out all;
}

.custom-option:hover, .custom-option.selection {
	background: var(--royal-blue-color);
	color: var(--white-color);
}


/*# 03) Header /c) search icon #*/
.search-topnav {
	position: relative;
	display: inline-block;
	width: 7em;
	cursor: pointer;
}

.search-topnav .search-icon {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 2px;
	right: 10px;
	color: var(--dark-blue-color);
	cursor: pointer;
}

.search-topnav a {
	float: left;
	color: var(--dark-blue-color);
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	padding: 0 9px;
	text-decoration: none;
	text-transform: uppercase;
	/* transform: translateY(1px); */
}

.nav-logo-inner {
	width: 100%;
	z-index: 10;
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: calc(var(--gap-padding) * .5) calc(var(--gap-padding) * 1.8);
	max-width: 100em;
	margin: 0 auto;
	max-height: 6.5em;
}


/*# 04) menu styling #*/
.nav-logo-inner img {
	max-width: 140px;
}

.menu {
	position: relative;
}

.nav-wrapper {
	position: absolute;
	left: 0;
	height: 100%;
	width: 100%;
	background: transparent;
	clip-path: circle(25px at calc(100% - 65px) 54px);
	transition: all 0.3s ease-in-out;
	z-index: 0;
	top: 0;
	border-radius: 50%;
	filter: drop-shadow(3px 3px 6px #00000029);
    overflow: hidden;
}

#active:checked~.nav-wrapper {
	clip-path: circle(100%);
	background: var(--white-color);
	position: fixed;
	top: 0;
	left: 0;
	border-radius: unset !important;
}

.menu-btn {
	z-index: 5;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
}

.menu-btn:active, .menu-btn:focus {
	outline: none;
}

.menu-btn__icon {
	position: relative;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	cursor: pointer;
	z-index: 5;
}

.menu-btn__icon::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	left: 0;
	background-image: url('../media/Revamped-Library/assets/icons/menu-open.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.menu-btn.is--active .menu-btn__icon::after {
	background-image: url('../media/Revamped-Library/assets/icons/menu-close.svg') !important;
	position: fixed;
	top: 27px;
	right: 72px;
	left: auto;
}


/*
#active:checked~.menu-btn i:before {
	content: "\f00d";
} */

.menu input[type="checkbox"] {
	display: none;
}


/*# 04) menu styling/ a) Vertical menu #*/
.menu-content {
	margin: 0 auto;
	position: relative;
	height: 100%;
	width: 100%;
}

.menu-content .row {
	height: 100%;
	display: flex;
	align-items: center;
}

nav.menu-vertical {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
	/* min-height: 100vh; */
}

.nav-2 {
	position: relative;
	display: flex;
	height: 100%;
	flex-direction: column;
}

/* ALL UL */
nav.menu-vertical ul {
	list-style: none;
	width: 445px;
	transform: translateY(35px);
}

/* ALL LI */
nav.menu-vertical li {
	position: relative;
}

/* ALL A */
nav.menu-vertical a {
	display: block;
	color: var(--footer-color);
	text-decoration: none;
	padding: 10px 15px;
	margin-bottom: 15px;
	transition: 0.2s;
}

/* ALL A HOVER */
/*
nav.menu-vertical li:hover > a{
	background:#778;
} */

/* INNER UL HIDE */
nav.menu-vertical ul ul {
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: transform 0.2s;
	transform: translateX(50px);
}

/* INNER UL SHOW */
nav.menu-vertical li:hover>ul {
	left: 100%;
	visibility: visible;
	opacity: 1;
	transform: translateX(0px);
}

nav.menu-vertical li:hover>.nav-active {
  left: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateX(0px) !important;
}

nav.menu-vertical ul .nav-active {
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.2s !important;
  transform: translateX(50px) !important;
}

nav.menu-vertical li .nav-active {
  left: 100%;
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}

nav.menu-vertical ul:hover .nav-active:not(:hover) {
  left: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
}

nav.menu-vertical ul li .nav-title {
  font-family: "Stone Sans, SemiBold";
  font-size: 1.265rem;
  color: #707070;
  padding-left: 4.8rem;
  cursor: pointer;
}

nav.menu-vertical ul li .nav-title:hover,
nav.menu-vertical ul li .nav-title:focus-within,
.nav-content-wrapper .hide-navLink:hover,
.nav-content-wrapper .hide-navLink:focus-within {
  color: var(--dark-blue-color);
  opacity: 1;
}

nav.menu-vertical:focus-within .nav-title {
  color: var(--dark-blue-color);
}

/* added extra link for dropdown nav */
.nav-content-wrapper .hide-navLink {
  position: absolute;
  width: max-content;
  opacity: 0;
  font-size: 1.265rem;
  /* z-index: 2; */
  pointer-events: all;
  font-family: "Stone Sans, SemiBold";
  padding: 10px 8px;
  margin-bottom: 15px;
}

/* make the hover red line only on desktop */
@media screen and (min-width: 1024px) {

  nav.menu-vertical ul li:hover .nav-title::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 2px;
    background: #D20103;
    top: 47%;
    left: 0;
  }

  nav.menu-vertical ul li .nav-active-title::after, nav.menu-vertical ul li .hide-navLink::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 2px;
    background: #D20103;
    top: 47%;
    left: 0;
  }

  nav.menu-vertical ul:hover .nav-active-title:not(:hover)::after {
    background: unset;
  }
  
  .nav-content-wrapper .hide-navLink {
    position: absolute;
    width: 100%;
    opacity: 0;
    padding-left: 4.8rem;
    font-size: 1.265rem;
  }
}

nav.menu-vertical ul li .nav-active-title,
nav.menu-vertical ul li .nav-active-title:focus-within {
  color: var(--dark-blue-color);
}

nav.menu-vertical ul:hover .nav-active-title:not(:hover) {
  color: #707070;
}

nav.menu-vertical ul ul li .nav-subtitle {
  font-family: "Noto Sans";
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-blue-color);
  margin-bottom: 8px;
  padding: 4px 0;
}

nav.menu-vertical ul li ul li a.nav-subcontent {
	font-family: "Noto Sans, Light";
	font-size: 1rem;
	opacity: .7;
	color: var(--dark-blue-color);
	margin-bottom: 5px;
	padding: 0 15px;
}

nav.menu-vertical ul li ul li:hover a.nav-subcontent {
	opacity: 1;
}


/* 04) menu styling/ b) Responsive style for menu */
/* ipad/tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.menu-btn.is--active .menu-btn__icon::after {
		position: fixed;
		top: 25px !important;
		right: 58px !important;
		left: unset !important;
	}
	
	.spsetia-header {
		padding: calc(var(--gap-padding) * .5) calc(var(--gap-padding) * .5) !important;
	}
	
  nav.menu-vertical {
    min-height: 500px !important;
    height: 100%;
    padding: calc(var(--gap-padding) * 2) calc(var(--gap-padding) * 1.8);
  }

  .menu-content {
    overflow: auto;
    padding: 100px 0 20px 0px;
  }

  .menu-content .row>div:nth-child(2) {
    padding: calc(var(--gap-padding) * .5) calc(var(--gap-padding) * 1.8);
  }

  .menu-content .row {
    flex-direction: column;
    height: 100%;
  }

  nav.menu-vertical ul {
    width: 100%;
    transform: unset !important;
  }

  .nav-content-wrapper {
    padding-bottom: 20px;
  }

  .divhide {
    overflow: hidden;
    display: none;
    transition: .3s ease-in-out all;
  }

  .is-active .divhide {
    display: block;
  }

  nav.menu-vertical ul li .nav-title, .nav-content-wrapper .hide-navLink {
    margin-bottom: unset !important;
    padding: 10px 8px;
    font-size: 1.7rem;
  }

  nav.menu-vertical ul ul {
    position: relative;
    visibility: unset;
    opacity: 1;
    transform: unset !important;
    padding: 0 15px;
    left: 0 !important;
  }

  nav.menu-vertical li:hover>ul {
    left: unset !important;
    visibility: unset !important;
    opacity: unset !important;
    transform: unset !important;
    top: unset !important;
  }

  nav.menu-vertical ul ul li .nav-subtitle {
    margin-bottom: 4px;
  }

  nav.menu-vertical li .nav-active {
    left: unset;
    visibility: unset !important;
    transform: unset !important;
    opacity: unset !important;
    position: relative;
    top: unset !important;
    padding-bottom: 10px;
  }

  .nav-content-wrapper.is-active .nav-title {
    color: var(--dark-blue-color);
  }

  nav.menu-vertical ul:hover .nav-active:not(:hover) {
    left: unset !important;
  }

  nav.menu-vertical li:hover>.nav-active {
    left: unset !important;
    visibility: unset !important;
    opacity: unset !important;
    transform: unset !important;
    top: unset !important;
  }

  .nav-content-wrapper.is-active .nav-title::after {
    transform: rotate(180deg);
  }
  
    .nav-title::after {
		content: '';
		width: 15px;
		height: 15px;
		background-image: url('../media/Revamped-Library/assets/icons/arrow-down-blue.svg');
		display: block;
		position: absolute;
		right: 0;
		top: 15px;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		transition: transform 350ms cubic-bezier(.455, .03, .515, .955);
	}
	
	.nav-title.red-line::before {
		content: '';
		width: 10%;
		height: 2px;
		background-color: #D20103;
		display: block;
		left: -100%;
		top: 20px;
		position: absolute;
		transition: .3s ease-in-out all;
	}

	.nav-content-wrapper.is-active .nav-title.red-line::before {
		content: '';
		left: -85px;
	}
	
	nav.menu-vertical ul li .nav-active-title {
		color: #707070;
		font-size: 1.7rem;
	}
	
	.nav-2 {
		min-height: 100% !important;
	}
  
}

/* mobile */
@media (max-width: 767px) {
	nav.menu-vertical {
		min-height: 100% !important;
		height: 100%;
		padding-left: 25px;
		padding-right: 25px;
		/* 
		min-height: 500px !important;
		padding-top: 100px; */
	}
	
  .menu-content {
    overflow: auto;
    padding: 100px 0 20px 0px;
  }

  .menu-content .row>div:nth-child(2) {
    /*
    padding: 0 25px; */
    padding: 20px 25px 20px 25px !important;
  }

  .menu-content .row {
    display: flex;
    flex-direction: column !important;
    height: 100%;
  }

  nav.menu-vertical ul {
    width: 100%;
    transform: unset !important;
  }

  .nav-content-wrapper {
    padding-bottom: 10px;
  }

  .divhide {
    overflow: hidden;
    display: none;
    transition: .3s ease-in-out all;
  }

  .is-active .divhide {
    display: block;
  }

  .filter-input-wrapper.hideToggle {
    overflow: hidden;
    display: none;
    transition: .3s ease-in-out all;
  }

  .is-active .filter-input-wrapper.hideToggle {
    display: block;
  }


  nav.menu-vertical ul li .nav-title {
    margin-bottom: unset !important;
    padding: 10px 8px;
  }

  nav.menu-vertical ul ul {
    position: relative;
    visibility: unset;
    opacity: 1;
    transform: unset !important;
    padding: 0 15px;
    left: 0 !important;
  }

  nav.menu-vertical li:hover>ul {
    left: unset !important;
    visibility: unset !important;
    opacity: unset !important;
    transform: unset !important;
    top: unset !important;
  }
	
	nav.menu-vertical ul ul li .nav-subtitle {
		margin-bottom: 4px;
	}
	
	nav.menu-vertical li .nav-active {
		left: unset;
		visibility: unset !important;
		transform: unset !important;
		opacity: unset !important;
		position: relative;
		top: unset !important;
		padding-bottom: 10px;
	}
	
	.nav-content-wrapper.is-active .nav-title {
		color: var(--dark-blue-color);
	}

	nav.menu-vertical ul:hover .nav-active:not(:hover) {
		left: unset !important;
	}

	nav.menu-vertical li:hover>.nav-active {
		left: unset !important;
		visibility: unset !important;
		opacity: unset !important;
		transform: unset !important;
		top: unset !important;
	}

	.nav-title::after {
		content: '';
		width: 15px;
		height: 15px;
		background-image: url('/SPSetia/media/Revamped-Library/assets/icons/arrow-down-blue.svg');
		display: block;
		position: absolute;
		right: 0;
		top: 15px;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		transition: transform 350ms cubic-bezier(.455, .03, .515, .955);
	}
	
	.nav-content-wrapper.is-active .nav-title::after {
		transform: rotate(180deg);
	}
	
	.nav-title.red-line::before {
		content: '';
		width: 10%;
		height: 2px;
		background-color: #D20103;
		display: block;
		left: -100%;
		top: 20px;
		position: absolute;
		transition: .3s ease-in-out all;
	}
	
	.nav-content-wrapper.is-active .nav-title.red-line::before {
		content: '';
		left: -45px;
	}
	
	.nav-content-wrapper .hide-navLink {
		width: 100% !important;
	}
	
	nav.menu-vertical ul li .nav-active-title {
		color: #707070;
	}
	
}


/* second column menu */
.nav-lg2 {
	margin-bottom: 15px;
	width: 80%;
}

ul.nav-2-wrapper {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	width: 100%;
}

.nav-2-wrapper li {
	float: left;
}

.nav-2-wrapper li a {
	display: block;
	color: #707070;
	font-family: "Noto Sans, Medium";
	font-size: 1rem;
	letter-spacing: 1px;
	/* font-weight: 600; */
	text-align: center;
	padding: 5px 5px;
	text-decoration: none;
	margin-right: 10px;
}

.nav-2-wrapper li a:hover {
	color: var(--dark-blue-color);
}

.nav-2-wrapper li a.nav2-active {
	color: var(--dark-blue-color);
}

.search-nav2 {
	position: relative;
	width: 80%;
}


/*# 05) Global Search #*/
form.search-nav2 input[type="text"] {
	padding: 10px 40px 10px 10px !important;
	font-size: 15px;
	letter-spacing: 1px;
	border: 1px solid grey;
	outline: 0;
	float: left;
	width: 100%;
	background: transparent;
	border-radius: 25px;
}

form.search-nav2 button {
	float: left;
	/* width: 15%; */
	padding: 10px;
	background: #2196F3;
	color: #2d2d2d;
	font-size: 17px;
	border: 0;
	border-left: none;
	cursor: pointer;
	background-color: unset !important;
	position: absolute;
	right: 0;
	text-align: end;
}

/* New Global Search css */
form.search-nav2::after {
	content: "";
	clear: both;
	display: table;
}

div.search-nav2::after {
	content: "";
	clear: both;
	display: table;
}

div.search-nav2 input[type="text"] {
	padding: 10px 40px 10px 10px !important;
	font-size: 15px;
	letter-spacing: 1px;
	border: 1px solid grey;
	outline: 0;
	float: left;
	width: 100%;
	background: transparent;
	border-radius: 25px;
}

div.search-nav2 button {
	float: left;
	padding: 10px;
	background: #2196F3;
	color: #2d2d2d;
	font-size: 17px;
	border: 0;
	border-left: none;
	cursor: pointer;
	background-color: unset !important;
	position: absolute;
	right: 0;
	text-align: end;
}

.nav2-socmed {
	width: 90%;
	margin-top: 20px;
}

.nav2-socmed p {
	font-size: 13px;
	color: var(--footer-color);
	opacity: .7;
	text-transform: none;
	margin-bottom: 0;
	letter-spacing: 1px;
	font-family: "Noto Sans, Medium";
}

/*
.nav2-socmed-wrapper {
	margin-top: 25px;
} */

.nav2-socmed-wrapper>a:not(:last-child) {
	margin-right: 3%;
	margin-bottom: 10px;
}

.nav2-socmed-wrapper>a {
	float: left;
	/*
	width: 60px;
	height: 60px !important; */
}

.nav2-socmed-wrapper a {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s ease-in-out all;
	/*
	width: 100%;
	margin-bottom: 20px; */
}

.nav2-socmed-wrapper img {
	width: 2.1875rem;
}


@media (max-width: 767px) {
	.blurry-bg {
		max-height: 5.5em;
	}
	
	.menu-btn.is--active .menu-btn__icon::after {
		position: fixed;
		top: 17px !important;
		right: 23px !important;
		left: unset !important;
	}
	
	.spsetia-header {
		justify-content: unset;
		padding: calc(var(--gap-padding) * .8) calc(var(--gap-padding) * 1);
	}
	
	.nav-group.nav-group-one {
		justify-content: center;
		margin: 0 auto;
		transform: translateX(25px);
		z-index: -2;
	}
	
	/*
	.nav-wrapper {
		z-index: -1;
	} */
	
	.custom-select-wrapper,
	.search-topnav {
		display: none;
	}
	
	.menu-btn {
		right: unset !important;
	}
	
	.nav-logo-inner {
		display: none;
	}
	
}

/* make it bigger in Big Desktop */
@media screen and (min-width: 1500px) {
	.nav2-socmed-wrapper img {
		width: 40px;
	}
	
	.spsetia-header {
		padding: calc(var(--gap-padding) * .8) calc(var(--gap-padding) * 2);
	}
	
	nav.menu-vertical ul li .nav-title, .nav-content-wrapper .hide-navLink {
		font-size: 1.8rem;
		/* padding-left: calc(var(--gap-padding) * 2.8); */
	}
	
	nav.menu-vertical a {
		margin-bottom: 40px;
	}
	
	.nav-2 {
		padding-right: calc(var(--gap-padding) * 2);
	}
	
	.nav-logo-inner {
		padding: calc(var(--gap-padding) * .8) calc(var(--gap-padding) * 2);
	}
	
	nav.menu-vertical ul {
		width: 600px;
	}
	
	.menu-btn.is--active .menu-btn__icon::after {
		top: 27px;
		right: 80px;
	}
	
}

/* landscape */
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {
  .nav-group.nav-group-one {
    justify-content: center;
    margin: 0 auto;
    transform: translateX(25px);
    z-index: -2;
  }

  .search-popup-main,
  .custom-select-wrapper,
  .search-topnav {
    display: none !important;
  }

  .menu-content .row {
    display: flex;
    flex-direction: column !important;
    height: 100%;
  }

  .nav-logo-inner {
    display: none;
  }

  nav.menu-vertical {
    min-height: 500px !important;
    height: 100%;
    padding: calc(var(--gap-padding) * 2) calc(var(--gap-padding) * 1.8);
  }

  .nav-content-wrapper.is-active .nav-title.red-line::before {
    content: '';
    width: 10%;
    height: 2px;
    background-color: #D20103;
    display: block;
    left: -80px;
    top: 20px;
    position: absolute;
  }

  .menu-content .row>div:nth-child(2) {
    padding: calc(var(--gap-padding) * .5) calc(var(--gap-padding) * 1.8) !important;
  }

  .nav2-socmed-wrapper img {
    width: 2.1875rem !important;
  }

  .nav2-socmed-wrapper>a:not(:last-child) {
    margin-right: 3% !important;
  }

  .search-nav2 {
    position: relative;
    width: 80% !important;
  }

	.nav-2 {
		align-items: flex-start !important;
	}

	.nav-2-wrapper li a {
		font-size: 1rem !important;
	}

	.menu-content {
		overflow: auto;
		padding: 40px 0 20px 0px !important;
	}

	.menu-btn.is--active .menu-btn__icon::after {
		right: 16px !important;
	}

}


/*# 06) General #*/
.transform-uppercase, .product-tab-header, .product-tab-header-m {
  text-transform: uppercase;
}

.custom-point p {
	position: relative;
	padding-left: 1.5em;
}

.custom-point p:before {
	content: '';
	height: .4em;
	width: .4em;
	background: #B70002;
	display: block;
	position: absolute;
	transform: rotate(45deg);
	top: .55em;
	left: 3px;
}

.text-black {
	font-family: "Noto Sans, Black";
	letter-spacing: 0.75px !important;
}

.results-filter-text {
	color: var(--dark-blue-color);
}

.moretext {
	display: none;
}

.moreless-button.clickedd::before {
	transform: rotate(0deg) !important;
}

.bold-quotes {
	position: relative;
}

.bold-quotes p {
	font-family: "Stone Sans, Bold";
	font-size: 4rem !important;
	transform: translateY(1rem);
	margin-bottom: 0 !important;
}

.highlighted-text {
	position: relative;
	z-index: 2;
	font-style: italic;
	color: #01385E;
}

.highlighted-text::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	height: 11px;
	background-color: #c7eef7;
	display: inline-block;
	z-index: -1;
}

.results-block, .hidden-block {
	display: none;
}

/*
.link-card {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
} */

.wrap-element {
	display: flex;
	align-items: center;
	gap: 10px;
}

.download-heading {
	position: relative;
	padding: 1.5rem 1rem;
	text-align: center;
	width: 100%;
}

.download-heading::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--light-grey-color);
	height: 1px;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	opacity: .2;
}

/*
.download-heading:last-child:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--light-grey-color);
	height: 1px;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	opacity: .2;
} */

.download-heading a {
	color: var(--white-color) !important;
	font-style: normal;
	font-size: 1.5rem;
	line-height: 2.2rem;
	letter-spacing: 0.063rem;
	font-family: 'Stone Sans, Bold';
	opacity: .2;
	transition: .3s ease-in-out all;
}

.download-heading a:hover {
	opacity: 1;
}

.swiper-slide.swiper-slide-active .download-heading a {
  opacity: 1;
  transition: .3s ease-in-out all;
}

.swiper-slide:last-child .download-heading a {
  opacity: 1 !important;
}

.no-border {
  border: 0 !important;
}

.imgtoWhite {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.imgtoGray {
	filter: brightness(1) invert(0.5);
	filter: grayscale(1);
}

#trigger-sticky, #trigger-sticky2 {
  transition: transform 0.2s linear;
}

.d-none {
  display: none !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.general-ls {
  letter-spacing: 1.75px;
}

.general-ls li {
  letter-spacing: 1.75px;
}

.custom-point li {
  margin: 0;
  margin-bottom: .5em;
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5;
  font-size: .96rem;
  letter-spacing: 1.25px;
  font-weight: normal;
}

.custom-point li::after {
  content: '';
  height: .4em;
  width: .4em;
  background: #D2153A;
  display: block;
  position: absolute;
  transform: rotate(45deg);
  top: .55em;
  left: 3px;
}

.line {
  position: relative;
  overflow: hidden;
}


/*
.sticky-header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
} */

.main-content {
	position: relative;
	/* z-index: 2; */
}

.inner-content {
	position: relative;
	z-index: 2;
}

.text-center {
	text-align: center;
	margin: 0 auto !important;
}

.center {
	margin: auto;
	width: 55%;
	text-align: center;
}

.center.center-70 {
  width: 70%;
}

.center.center-80 {
  width: 80%;
}

p.inner-subtitle {
  letter-spacing: 1.55px;
  font-family: 'Noto Sans, Medium';
}

.spacing-2rem {
  margin: 1rem 0 1.6rem 0;
}

.p-unset {
  padding: unset !important;
}

.pt-unset {
  padding-top: unset !important
}

.pt-150 {
  padding-top: 150px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-100-i {
  padding-top: 100px !important;
}

.pt-20-i {
  padding-top: 20px !important;
}

.pr-50 {
  padding-right: 50px;
}

.pb-unset {
  padding-bottom: unset !important
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mb-unset {
  margin-bottom: unset !important;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-bottom: 20px;
}

.m-20 {
  margin: 20px;
}

.mh-100 {
  min-height: 100vh;
}

.center-element {
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-flex {
  display: flex;
  align-items: center;
}

.bg-unset {
  background-color: unset !important;
}

.relative {
	position: relative;
}

.bottom-element {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14%;
	text-align: center;
	z-index: 2;
}


@media (max-width: 480px) {
	.pt-50-xs {
		padding-top: 50px !important;
	}
	
	.pt-100-xs {
		padding-top: 100px !important;
	}
	
}

@media (max-width: 767px) {
	.container #trigger-sticky {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		margin: 0 auto;
		padding-left: var(--container-padding);
		padding-right: var(--container-padding);
	}
	
	.bold-quotes p {
		margin-bottom: 0 !important;
	}
	
	.custom-point li {
		font-size: .8rem !important;
	}
	
	.j-center-m {
		display: flex !important;
		justify-content: center;
	}
	
  .flex-start-m {
    justify-content: flex-start !important;
  }

  .dp-m {
    display: block !important;
  }

  .dp-m-none {
    display: none !important;
  }

  .m-center-m {
    text-align: center;
    margin: 0 auto !important;
  }

  .p-unset-m {
    padding: unset !important;
  }

  .pt-unset-m {
    padding-top: unset !important
  }

  .pt-20-m {
    padding-top: 20px !important;
  }

  .pt-30-m {
    padding-top: 30px !important;
  }

  .pt-50-m {
    padding-top: 50px;
  }

  .pt-100-m {
    padding-top: 100px;
  }

  .pt-150-m {
    padding-top: 150px !important;
  }
	
	.mh-m-100 {
		min-height: unset !important;
	}
	
	.left-zero-m {
		left: 0px !important;
	}
	
	.mb-unset-m {
		margin-bottom: unset !important;
	}
	
	.center {
		width: 100% !important;
	}
	
	.pb-30-m {
		padding-bottom: 30 !important;
	}
	
}


/*# 07) Breadcrumbs #*/
.breadcrumbs-wrapper {
	width: 100%;
	min-width: 320px;
	display: inline-block;
	padding-top: 35px;
}

.container.large.breadcrumbs-container {
	padding-left: calc(var(--gap-padding) * 2);
	padding-right: calc(var(--gap-padding) * 2);
	max-width: 100% !important;
	padding-top: 100px;
	padding-bottom: 0;
	position: absolute;
	background: transparent;
	z-index: 3;
}

.breadcrumbs-item-wrapper {
	/*
	width: 80%;
	margin: 0 auto; */
	font-family: "Noto Sans, Light";
	color: var(--dark-blue-color);
	background: #F0F0F0;
	display: flex;
	border-radius: 3vh;
	text-align: center;
	width: max-content;
	z-index: 1;
	justify-content: flex-start;
	position: relative;
}

.breadcrumbs-item {
	display: inline-block;
	border-radius: 3vh;
	margin-bottom: 0;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	background-image: none;
	white-space: nowrap;
	padding: 8px 12px 8px 24px;
	font-size: 12px;
	line-height: normal;
	position: relative;
	float: left;
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.breadcrumbs-item:first-child {
	padding-left: 25px;
	border-left: none;
}

.breadcrumbs-item:not(:last-child)::before {
	content: " ";
	display: block;
	position: absolute;
	top: 13px;
	left: 100%;
	z-index: 3;
	transform: rotate(135deg);
	width: 8px;
	height: 8px;
	border-top: 1px solid #747474;
	border-left: 1px solid #747474;
	opacity: 0.6;
}

.default-breadcrumbs:last-child div {
	max-width: 150px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/*
.breadcrumbs-item-wrapper > * > div {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
} */

/* hide back button on desktop */
.back-breadcrumbs {
	display: none;
}

.default-breadcrumbs, .home-breadcrumbs {
	color: var(--dark-blue-color);
	background: #F0F0F0;
	border-color: #ccc;
}

.default-breadcrumbs:last-child,
.home-breadcrumbs:last-child {
	color: #fff;
	font-family: "Stone Sans, SemiBold";
	min-width: 11em;
	background: #0751A0;
	padding: 8px 12px 8px 12px;
}

.default-breadcrumbs:last-child {
	margin-left: 1.2rem;
}

@media (max-width: 767px) {
	.breadcrumbs-wrapper {
		padding-top: unset !important;
	}
	
	.breadcrumbs-wrapper.breadcrumbs-spacer {
		padding-top: 60px !important;
	}
	
	.default-breadcrumbs:last-child,
	.home-breadcrumbs:last-child {
		min-width: 10em;
	}
	
	.breadcrumbs-item-wrapper>* div {
		max-width: 155px;
	}
	
	.container.large.breadcrumbs-container {
		padding-left: var(--container-padding);
		padding-right: var(--container-padding);
	}
	
	.breadcrumbs-item-wrapper> :nth-child(2) {
		display: flex;
		align-items: center;
		padding: 8px 5px 8px 21px;
	}
	
	/* hide/show on mobile */
	.home-breadcrumbs {
		display: none !important;
	}
	
	.back-breadcrumbs {
		display: block !important;
	}
	
	.breadcrumbs-item:not(:last-child) {
		display: none;
	}
	
}

/*
@media (min-width: 992px) {
	.breadcrumbs-item-wrapper>* div {
		max-width: 170px;
	}
	
} */

@media screen and (min-width: 768px) and (max-width: 1024px) {
	/*
	.breadcrumbs-item-wrapper>* div {
		max-width: 100px;
	} */
	
	.breadcrumbs-wrapper {
		padding-top: 35px !important;
	}
	
	.breadcrumbs-wrapper.breadcrumbs-spacer {
		padding-top: 60px !important;
	}
	
}


/*# 08) Pagination #*/
.pagination {
	text-align: center;
	margin: 30px 30px 60px;
	user-select: none;
}

.pagination li {
	display: inline-block;
	margin: 5px;
	/* box-shadow: 0 5px 25px rgb(1 1 1 / 10%); */
	box-shadow: 0px 3px 6px #5959592c;
	padding: 8px 0px;
	cursor: pointer;
}

.pagination li a {
	/* color: var(--dark-blue-color); */
	text-decoration: none;
	font-size: 1.1rem;
}

.previous-page, .next-page {
	background-color: var(--pagination-color);
	width: 80px;
	cursor: pointer;
	transition: .3s ease-in-out all;
}

.previous-page:hover {
	transform: translateX(-5px);
}

.next-page:hover {
	transform: translateX(5px);
}

.current-page, .dots {
	background-color: var(--pagination-color);
	width: 45px;
}

.current-page.active {
	background-color: var(--royal-blue-color);
}

.current-page.active a {
	color: var(--white-color);
}

.previous-page.disable,
.next-page.disable {
	background-color: var(--pagination-color);
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.previous-page a.page-link,
.next-page a.page-link {
	color: rgba(255, 0, 0, 0);
	position: relative;
}

.previous-page a.page-link::before,
.next-page a.page-link::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10px;
	width: 20px;
	height: 20px;
	background-image: url('/SPSetia/media/Revamped-Library/assets/icons/select-icon.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: rotate(90deg);
	/* mix-blend-mode: difference;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1); */
}

.next-page a.page-link::before {
	transform: rotate(-90deg);
}


@media (max-width: 767px) {
	.pagination {
		margin: 30px 0 30px 0;
	}
	
	.current-page,
	.dots {
		width: 26px;
		height: 26px;
	}
	
	.pagination li {
		padding: 0 !important;
	}
	
	.pagination li a {
		font-size: 1rem;
	}
	
	.previous-page,
	.next-page {
		width: 30px;
	}
	
	.previous-page a.page-link::before,
	.next-page a.page-link::before {
		top: 7px;
		left: 7px;
		width: 12px;
		height: 12px;
	}

	.previous-page a.page-link,
	.next-page a.page-link {
		width: 26px;
		height: 26px;
		display: inline-block;
	}
	
}


/*# 10) Scroll Down button #*/
.scroll-down-wrapper {
	display: none;
}

.scroll-down-wrapper.bottom-element {
	position: relative !important;
}

.scroll-down-wrapper.bottom-element p {
	color: var(--white-color);
	font-family: "Noto Sans, Medium";
	letter-spacing: 0.84px;
	/* background-color: rgba(159, 151, 74, 0.102); */
}


.scrollDown-icon {
	position: absolute;
	top: 35px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.scrollDown-icon span {
	display: block;
	width: 10px;
	height: 10px;
	border-bottom: 1px solid white;
	border-right: 1px solid white;
	transform: rotate(45deg);
	margin-top: -10px;
	animation: animate 2s infinite;
}

.scrollDown-icon span:nth-child(2) {
	animation-delay: -0.2s;
}

.scrollDown-icon span:nth-child(3) {
	animation-delay: -0.4s;
}

@keyframes animate {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-20px, -20px);
	}
	
	50% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
	
}

@media (max-width: 767px) {
	.scroll-down-wrapper {
		display: block !important;
	}
	
}


/*# 11) Back to Top Button #*/
#toTop {
	position: fixed;
	right: 55px;
	bottom: 0;
	z-index: 10;
	text-align: right;
	animation: fadeIn 2s;
	transition: .3s ease-in-out all;
	display: none;
}

#toTop a {
	color: #0751A0;
	text-decoration: none;
	padding-top: 35px;
}

#toTop a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 40px;
	height: 40px;
	background-image: url('../media/Revamped-Library/assets/icons/main-btn-blue-fill.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: .3s ease-in-out all;
	transform: translateX(-50%);
	opacity: .3;
	filter: grayscale(100%);
}

#toTop a:hover::before {
	opacity: 1;
	filter: none;
}


@media (max-width: 767px) {
	#toTop {
		right: 45px;
	}
	
	#toTop a::before {
		width: 35px;
		height: 35px;
	}
	
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.to-top-section {
		padding-top: calc(var(--section-padding) / 2) !important;
		padding-bottom: var(--section-padding) !important;
	}
	
	#toTop {
		right: 55px;
	}
	
	#toTop a::before {
		width: 35px;
		height: 35px;
	}
	
}


/*# 12) Toggle show hide content #*/
.toggle-arrow-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	cursor: pointer;
}

.toggle-arrow-wrapper span::before {
	content: '';
	display: inline-block;
	background-image: url('/SPSetia/media/Revamped-Library/assets/icons/main-btn-white-fill.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 55px;
	height: 55px;
	transition: .3s ease-in-out all;
}

.learn-more-toggle {
	text-align: center;
	margin: 0 auto;
	width: max-content;
}

.learn-more-toggle-text p {
	font-family: 'Stone Sans, SemiBold';
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--white-color);
	cursor: pointer;
	width: max-content;
	text-align: center;
	margin: 0 auto;
	margin-top: 10px;
}


/*# 13) Homepage toggle right banner #*/
.toggle-wrapper {
	position: absolute;
	top: 45%;
	/* left: auto; */
	z-index: 8;
	right: 0;
	transition: .3s ease-in-out all;
	margin: 0;
	padding: 0;
	transform: rotate(-90deg) translate(0, -100%);
	transform-origin: 100% 0;
}

#toggleElement {
	font-family: "Stone Sans, SemiBold";
	font-weight: initial;
	font-size: .9rem;
	width: 5vh;
	padding: 15px 10px;
	outline: 0;
	border: 0;
	transition: .3s ease-in-out all;
	background-color: var(--light-red-color);
	color: #fff;
	position: relative;
	height: 5vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row-reverse;
    cursor: pointer;
}

.visibility-icon-hide::before {
	content: 'hide our projects';
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 14px !important;
	padding-left: 50px;
	opacity: 0;
	display: block;
	right: 0;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: .5s ease-in-out all;
	transform: rotate(-180deg);
}

.visibility-icon-show::before {
	content: 'show our projects';
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 14px !important;
	padding-left: 50px;
	opacity: 0;
	display: block;
	right: 0;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: .5s ease-in-out all;
	transform: rotate(-180deg);
}

.toggle-icon {
	transform: rotate(-90deg);
}


@media (max-width: 767px) {

  .visibility-icon-hide::before,
  .visibility-icon-show::before {
    opacity: 0 !important;
    padding-left: 40px !important;
  }

  .toggle-wrapper {
    top: 60% !important;
  }

  #toggleElement {
    /* width: 32vh !important; */
    width: 100% !important;
    height: 4vh !important;
    justify-content: flex-start !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .visibility-icon-hide::before,
  .visibility-icon-show::before {
    opacity: 1 !important;
    padding-left: 35px !important;
  }

  #toggleElement {
    width: 20vh !important;
    height: 4vh !important;
    justify-content: flex-start !important;
  }

  .toggle-wrapper {
    top: 50% !important;
  }
}

@media (min-width: 1025px) {
	#toggleElement:hover {
		width: 35vh !important;
		justify-content: flex-start !important;
	}
	
	#toggleElement:hover::before {
		opacity: 1;
		transition: .3s ease-in-out all;
	}
	
	#toggleElement:hover .visibility-icon-hide::before,
	#toggleElement:hover .visibility-icon-show::before {
		opacity: 1 !important;
	}
	
}

@media screen and (min-width: 1400px) {
	#toggleElement:hover {
		width: 25vh !important;
	}
	
}

/* landscape */
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {
  .visibility-icon-hide::before,
  .visibility-icon-show::before {
    opacity: 0 !important;
    padding-left: 40px !important;
  }

  .toggle-wrapper {
    top: 60% !important;
  }

  #toggleElement {
    width: 100% !important;
    height: 4vh !important;
    justify-content: flex-start !important;
  }
  
}


/*# 14) Filter tags in product section #*/
.filter-tags-wrapper {
  position: relative;
  padding: 10px 0;
  width: 100%;
  display: none;
}

@media screen and (max-width: 1024px) {
  .filter-tags-wrapper {
    display: block;
  }
  
}

.filter-tags-wrapper .filter-tags {
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  padding: 3px 25px 3px 15px;
  color: var(--white-color);
  background: var(--royal-blue-color);
  margin: 0 1% 10px;
  position: relative;
}

.filter-tags::after {
  content: '';
  position: absolute;
  top: 9px;
  left: auto;
  background-image: url('/SPSetia/media/Revamped-Library/assets/icons/close-icon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 11px;
  display: inline-block;
  right: 9px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  /* opacity: .6; */
}

/*
.filter-tags.location-tags {
	background: var(--royal-blue-color);
}

.filter-tags.township-tags {
	background-color: var(--light-brown-color);
}

.filter-tags.property-type-tags {
	background-color: #006039;
}

.filter-tags.property-range-tags {
	background-color: #BF1932;
}

.filter-tags.status-tags {
	background-color: var(--dark-blue-color);
} */

.filter-tags p {
  text-align: center;
  font-size: .75rem !important;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: var(--white-color);
  margin-bottom: 0;
  line-height: unset !important;
}


/* clear tags */
.clear-tags-wrapper {
  position: relative;
  width: 100%;
  display: none;
  margin-bottom: 10px;
}

.clear-tags-wrapper .clear-tags {
  border-radius: 45px;
  padding: 3px 30px 3px 15px;
  color: var(--dark-blue-color);
  /* background: var(--royal-blue-color); */
  width: max-content;
  position: relative;
  margin-left: auto;
  
  cursor: pointer;
}

.clear-tags p {
  text-align: center;
  font-size: .75rem !important;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: var(--dark-blue-color);
  margin-bottom: 0;
  line-height: unset !important;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.clear-tags-wrapper p {
  text-align: right;
  padding-right: 5px;
}

.clear-tags::after {
  content: '';
  position: absolute;
  top: 8px;
  left: auto;
  background-image: url('/SPSetia/media/Revamped-Library/assets/icons/close-icon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
  display: inline-block;
  right: 13px;
}

/*
@media (max-width: 1024px) {
  .filter-tags-wrapper, .clear-tags-wrapper {
    display: block;
  }
  
} */


/*# 15) Custom column #*/
.two-column-wrapper-img-1 {
  display: none;
  text-align: center;
}

.two-column-wrapper {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .two-column-wrapper-img-2 {
    display: none;
  }

  .two-column-wrapper-img-1 {
    display: block;
  }
}


/*# 16) Custom max width #*/
.mw-1255 {
  max-width: 1255px !important;
}

.mw-800 {
  max-width: 800px !important;
}

.mw-700 {
  max-width: 700px;
}

.mw-600 {
  max-width: 600px;
}

.mw-555 {
  max-width: 555px;
}

.mw-500 {
  max-width: 500px;
}

.mw-450 {
  max-width: 450px !important;
}

.mw-300 {
  max-width: 300px !important;
}

.mw-200 {
  max-width: 200px !important;
}


@media (max-width: 767px) {
	.mw-300-m {
		max-width: 300px !important;
	}
	
	.w-full-m {
		width: 100% !important;
	}
	
	.mw-full-m {
		max-width: 100% !important;
	}
	
}


/*# 17) Custom line spacing #*/
.divider-line {
	background-color: #acacac;
}

.lightgrey-line {
	background-color: #9996961c;
}

.grey-line {
	background-color: #99969638;
}

.white-line {
	background-color: #fff;
	opacity: 0.25;
}

.line-d {
	display: none;
}

.white-line.line-custom {
	width: 94%;
}


@media screen and (min-width: 1500px) {
	.white-line.line-custom {
		width: 87%;
	}
	
}


/*# 18) Fonts #*/
.small-subheading {
	font-family: 'Stone Sans, SemiBold' !important;
	font-weight: bold;
}

.general-heading h4 {
	font-style: normal;
	font-stretch: normal;
	/* font-size: 1.3rem; */
	font-size: 1.5rem;
	line-height: 2.2rem;
	letter-spacing: 0.063rem;
	font-family: 'Stone Sans, SemiBold';
	font-weight: inherit;
}

.overlapped-theader {
	position: relative;
}

.overlapped-theader h1 {
	position: absolute;
	left: 0;
	right: 0;
	opacity: .08;
	bottom: 0;
	/* margin-left: auto;
	margin-right: auto; */
	width: max-content;
	font-size: 5rem;
	margin-bottom: 0;
}

.overlapped-theader h3 {
	font-size: 1.9rem;
	font-family: "Stone Sans, Bold";
	font-weight: inherit;
	letter-spacing: 0.2rem;
	line-height: 2.2rem;
	margin-bottom: 0;
}

.small-overlapped-theader h4 {
	position: absolute;
	left: 0;
	bottom: 19px;
	/* margin-left: auto;
	margin-right: auto; */
	width: max-content;
	font-size: 3.5rem;
	color: var(--white-color);
	opacity: 0.12;
	font-family: "Stone Sans, SemiBold";
	letter-spacing: 4.83px;
}

.small-overlapped-theader h5 {
	color: var(--white-color);
	letter-spacing: 1.75px;
	font-size: 1.4rem;
}

/*
.overlapped-theader.custom-overlapped-theader h1 {
	top: -25px;
} */

.overlapped-theader.custom-overlapped-theader h1 {
	top: -10px;
}

.overlapped-theader.high-overlapped-theader h1 {
	top: -30px;
}

.overlapped-theader.overlapped-theader-left h1 {
	left: -55px;
}

/*
.overlapped-theader.high-overlapped-theader.multiple-overlapped-theader h1 {
	top: -35px;
} */


.big-header h2 {
  font-size: 3.45rem;
  text-shadow: 0px 3px 6px #00000029;
  line-height: 1.25;
}

.big-header h3 {
  font-size: 1.7rem;
  font-family: 'Stone Sans, SemiBold';
  text-transform: inherit;
  font-weight: 500;
}

.big-header h4 {
	font-size: 2rem;
	font-family: 'Stone Sans, Bold';
	text-transform: inherit;
	color: var(--white-color);
	font-weight: 500;
}

h3.big-h {
	font-size: 2.625rem;
	line-height: 3.125rem;
	letter-spacing: 0.063rem;
	text-transform: inherit;
	font-weight: 500;
}

.big-header-text p {
	font-family: "Noto Sans, Bold";
	font-size: 2.6rem;
	line-height: 2.6rem;
}

.cta-text a {
	color: var(--light-red-color);
	/*
	text-decoration: underline;
	text-underline-offset: 5px; */
}

.semi-b {
	font-family: 'Stone Sans, SemiBold';
	font-weight: 500;
}

.small-txt {
	font-size: 0.95rem;
}

.opacity-txt {
	opacity: .7;
}

.font-white {
	color: var(--white-color);
}

.font-grey {
	color: #70777B;
}

.font-red {
	color: var(--red-color);
}

.font-blue {
	color: var(--dark-blue-color);
}

.font-bold {
	font-weight: bold;
}

.dark-blue {
	color: var(--royal-blue-color);
}

.small-font {
	font-size: .8rem;
	margin-bottom: unset !important;
}


@media (max-width: 767px) {
	.general-heading h4 {
		font-size: 1.3rem;
		line-height: 1.8rem;
	}
	
	.big-header h2 {
		font-size: 1.7rem !important;
	}
	
	.overlapped-theader h1 {
		bottom: 0px;
		font-size: 2.7rem !important;
		/* letter-spacing: 3.5px; */
	}
	
	.overlapped-theader.custom-overlapped-theader h1 {
		top: -15px !important;
	}
	
	.overlapped-theader h3 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		margin-bottom: 10px !important;
	}
	
	.overlapped-theader.high-overlapped-theader h1 {
		top: -15px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		right: unset !important;
	}
	
	.overlapped-theader.high-overlapped-theader.multiple-overlapped-theader h1 {
		top: -8px !important;
		/* left: -19px !important; */
	}
	
	.overlapped-theader.overlapped-theader-left h1 {
		left: 50% !important;
		transform: translateX(-50%) !important;
	}
	
}

/* ipad/tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.big-header h2 {
		font-size: 3rem !important;
	}
	
	.big-header h4 {
		font-size: 1.8rem;
	}
	
	.overlapped-theader h3 {
		font-size: 1.5rem !important;
		line-height: 1.5rem !important;
		margin-bottom: 10px !important;
	}
	
	.overlapped-theader.overlapped-theader-left h1 {
		left: 0 !important;
		margin-left: auto !important;
		margin-right: auto !important;
		top: -60px !important;
	}
	
	.overlapped-theader {
		text-align: center !important;
	}
	
	.overlapped-theader.high-overlapped-theader h1 {
		top: -35px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		margin-left: unset !important;
		margin-right: unset !important;
	}
	
	.overlapped-theader.high-overlapped-theader.multiple-overlapped-theader h1 {
		top: -35px !important;
	}
	
	.overlapped-theader.custom-overlapped-theader h1 {
		top: -25px !important;
	}
	
}

@media screen and (min-width: 1500px) {
	.big-header h2 {
		font-size: 4.2rem;
	}
	
	.overlapped-theader h3 {
		font-size: 2.6rem;
		line-height: 2.7rem;
	}
	
	.overlapped-theader h1 {
		font-size: 8rem;
	}
	
	.overlapped-theader.high-overlapped-theader h1 {
		top: -40px;
	}
	
	.overlapped-theader.high-overlapped-theader.multiple-overlapped-theader h1 {
		top: -40px;
	}
	
	.overlapped-theader.custom-overlapped-theader h1 {
		top: -20px;
	}
	
}

/* landscape */
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {
  .overlapped-theader h3 {
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
    margin-bottom: 10px !important;
  }

  .overlapped-theader.overlapped-theader-left h1 {
    left: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    top: -60px !important;
  }

  .overlapped-theader {
    text-align: center !important;
  }

  .overlapped-theader.high-overlapped-theader h1 {
    top: -35px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: unset !important;
    margin-right: unset !important;
  }

  .overlapped-theader.high-overlapped-theader.multiple-overlapped-theader h1 {
    top: -35px !important;
  }

  .overlapped-theader.custom-overlapped-theader h1 {
    top: -25px !important;
  }

  .overlapped-theader h1 {
    font-size: 5rem !important;
  }

}


/*# 19) Checkbox contact #*/
.checkbox-wrapper {
	width: 100%;
	margin: 0 auto;
}

.checkbox-wrapper label {
	font-size: 11px;
	/* line-height: 18px; */
	color: #6C6C6C;
	letter-spacing: 1.12px;
	font-family: "Noto Sans, Regular";
}

.checkbox_container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 0;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 11px;
	line-height: 20px;
	color: rgb(248, 0, 0);
}

.checkbox_container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkbox_container input:checked~.checkbox_checkmark {
	background-color: var(--light-red-color);
}

.checkbox_checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 3px;
	background-color: #70707014;
	/* border: 1px solid var(--white-color)50; */
}

.checkbox_container input:checked~.checkbox_checkmark::after {
	display: block;
}

.checkbox_container .checkbox_checkmark::after {
	left: 9px;
	top: 4px;
	width: 4px;
	height: 9px;
	border: solid var(--white-color);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.checkbox_checkmark::after {
	content: "";
	position: absolute;
	display: none;
}


@media (max-width: 767px) {
	.checkbox-wrapper label {
		font-size: 10px !important;
	}
	
}


/*# 20) Search field #*/
.search-body {
	display: table;
	width: 100%;
}

.search-details {
	display: table-cell;
	vertical-align: middle;
}

#search-cover button, #search-wrapper button {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	background-color: transparent;
}

.search-details input[type="text"] {
	color: var(--dark-grey-color) !important;
	outline: none !important;
	border-color: rgba(255, 0, 0, 0);
}

#search-wrapper {
	width: 80%;
	padding: 10px;
	background-color: var(--white-color);
	border-radius: 60px;
	/* transform: scale(0.5); */
	box-shadow: 0px 3px 10px #00000029;
	margin: 0 auto !important;
}


#search-wrapper input[type="text"] {
	width: 100%;
	font-size: 1.1rem;
	line-height: 1;
	padding-left: 2rem;
	font-family: "Noto Sans";
	font-weight: 600;
}

#search-wrapper input[type="text"]::placeholder {
	color: var(--dark-grey-color) !important;
}

#search-cover {
	width: 1px;
	padding-left: 35px;
}

#search-cover button {
	background: #022C7C;
	border-radius: 50%;
}

#search-cover button {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	cursor: pointer;
}

#search-circle {
	position: relative;
	top: -5px;
	left: 8px;
	width: 25px;
	height: 25px;
	margin-top: 0;
	border: 3px solid var(--white-color);
	background-color: transparent;
	border-radius: 50%;
	transition: 0.5s ease all;
}

#search-cover button span {
	position: absolute;
	top: 32px;
	left: 32px;
	display: block;
	width: 4px;
	height: 4px;
	background-color: transparent;
	border-radius: 10px;
	transform: rotateZ(45deg);
	transition: 0.5s ease all;
}

#search-cover button span:before,
#search-cover button span:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 14px;
	height: 7px;
	background-color: var(--white-color);
	border-radius: 10px;
	transform: rotateZ(0);
	transition: 0.5s ease all;
}

#search-cover:hover #search-circle {
	top: -2px;
	width: 25px;
	height: 6px;
	border-width: 0;
	background-color: var(--white-color);
	border-radius: 20px;
}

#search-cover:hover span {
	top: 50%;
	left: 23px;
	width: 15px;
	margin-top: 0;
	transform: rotateZ(0);
}

#search-cover:hover button span::before {
	bottom: 8px;
	transform: rotateZ(45deg);
}

#search-cover:hover button span::after {
	bottom: -2px;
	transform: rotateZ(-45deg);
}

#search-cover:hover button span::before,
#search-cover:hover button span::after {
	right: -1px;
	width: 20px;
	background-color: var(--white-color);
}


@media (max-width: 767px) {
	#search-wrapper {
		width: 95% !important;
		padding: 4px !important;
		margin-top: 20px !important;
	}
	
	#search-wrapper input[type="text"] {
		font-size: .8rem !important;
		padding-left: 1rem !important;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
}

@media screen and (min-width: 1500px) {
	#search-wrapper {
		width: 60%;
	}
	
}


/*# 21) Custom button #*/
.learn-more-btn {
	margin: 0 auto;
	text-align: center;
	width: max-content;
	position: relative;
}

.learn-more-btn h5 {
	color: var(--white-color);
	font-family: 'Stone Sans, Bold';
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.023rem;
}

.learn-more-btn h5::after {
	content: '';
	border-bottom: 1px solid var(--white-color);
	width: 100%;
	display: block;
	padding-top: 3px;
}


/*# 22) Section #*/
.c-main {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

.c-section {
	width: 100%;
	height: 100%;
}


/*# 23) Card desc (bg image and hover desc) #*/
.card-wrapper {
	margin: 0 auto !important;
	position: relative;
	z-index: 2;
}

.card-row {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.card-content {
	position: relative;
	width: 100%;
	height: 100%;
}


/* EDITED */
.card-image.active-hover .cd-1 {
	transition: 0.5s ease-in-out;
	background: rgba(132, 117, 78, 0.911) 0% 0% no-repeat padding-box;
}

/* EDITED */
.card-image.active-hover .cd-2 {
	transition: 0.5s ease-in-out;
	background: rgba(138, 141, 143, 0.904) 0% 0% no-repeat padding-box;
}

/* EDITED */
.card-image.active-hover .cd-3 {
	transition: 0.5s ease-in-out;
	background: rgba(2, 44, 123, 0.829) 0% 0% no-repeat padding-box;
}

.card-image {
	position: relative;
	flex: 1;
	max-width: 300px;
	height: 100%;
	margin: 8px;
	overflow: hidden;
	filter: contrast(100%);
	z-index: 2;
}

.card-image img {
	position: relative;
	vertical-align: top;
	-webkit-transition: all .5s ease !important;
	transition: all .5s ease !important;
	transition-property: scale;
}

/* EDITED */
.card-image.active-hover img {
	transform: scale(1.2);
}

.card-image .card-details {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	color: var(--white-color);
	width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;
}


/* card operating sustainability */
@media (max-width: 1080px) {
	.card-image {
		flex: 100%;
		max-width: 480px;
	}
	
}

@media (max-width: 400px) {
	.card-image .card-details p {
		font-size: 14px;
	}
	
}


/* hover open the details card news */
.card-hover-top .card-desc-hover1 {
  display: flex;
  justify-content: center;
  position: absolute;
  top: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  bottom: 3vh;
  transition: .8s ease-in-out all;
}

.card-desc-hover1 h4 {
  font-size: 1.225rem;
}

.card-hover-top {
  text-align: left;
  color: var(--white-color);
  margin: 0 auto;
}

.card-hover-top {
  transition: .6s ease-in-out all;
}

.card-hover-top h4 {
  animation: fadeIn 3s;
}


.card-hover-top {
  padding-top: 5px;
}

.card-hover-bottom {
  margin: 0 auto;
  color: var(--white-color);
  width: 80%;
  transform: translateY(390px);
  transition: .8s ease-in-out all;
}


.card-hover-bottom p {
  font-size: 1rem;
  display: block;
  text-align: center;
  animation: fadeIn 5s;
  transform: translateY(85px);
  color: var(--white-color);
}

/* EDITED */
.card-row .card-image.active-hover .card-hover-bottom {
  /* max-height: 280px; */
  transform: translateY(-20px);
}

/* EDITED */
.card-row .card-image.active-hover .card-hover-bottom p {
  transform: translateY(165px);
}


/* EDITED */
.card-row .card-image.active-hover .card-hover-top .card-desc-hover1 {
	-ms-transform: translate(-50%, -50vh);
	transform: translate(-50%, -50vh);
}

/*
.card-row .card-image.active-hover .card-hover-top .card-arrow {
	-ms-transform: translate(-50%, 5vh);
	transform: translate(-50%, 5vh);
} */

.card-row .card-image.active-hover .card-hover-top .card-arrowtop:after {
	-ms-transform: translate(-50%, 3vh) rotate(180deg);
	transform: translate(-50%, 3vh) rotate(180deg);
}


.card-arrowtop {
  display: inline-block;
  /* position: relative; */
  transition: .3s ease-in-out all;
}

.card-arrowtop::after {
  content: '';
  position: absolute;
  width: 55px;
  height: 55px;
  background-image: url('/SPSetia/media/Revamped-Library/assets/icons/main-btn-white-fill.svg');
  top: 50%;
  left: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  filter: drop-shadow(4px 5px 6px #59595961);
  transition: .3s ease-in-out all;
  transform: translate(-50%, -50%);
}


.card-row .card-image.active-hover .card-arrowtop:after {
  background-image: url('/SPSetia/media/Revamped-Library/assets/icons/main-btn-blue-fill.svg');
}

.card-arrow {
  text-align: center;
  margin: 0;
  position: absolute;
  top: 55vh;
  left: 50%;
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, -50%);
  transition: .5s ease-in-out all;
}

.card-arrow a {
  display: inline-block;
  pointer-events: none;
  transition: .3s ease-in-out all;
}


.card-row .card-image .card-card1 {
  align-items: center;
  display: flex;
  justify-content: center;
}


/* ADDED */

/* mobile */
@media (max-width: 767px) {
	.card-image {
		max-height: 300px;
	}
	
	.card-image img {
		width: 480px;
		height: 165px;
		object-fit: cover;
	}
	
	.card-row .card-image.active-hover .card-hover-bottom p {
		transform: translateY(10px);
		font-size: .8rem !important;
	}
	
}

/* ipad & mobile */
@media (max-width: 1024px) {
  .card-content {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 1s transform ease;
  }

  .card-hover-top {
    transform: translate(-50%, -50%);
    top: 50%;
    width: 100%;
    left: 50%;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: row;
  }

  .card-hover-top h4 {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    padding-left: 15px;
    margin: 0;
    position: relative;
    transition: 1s transform ease;
  }

  .card-hover-top .card-desc-hover1 {
    display: unset;
    width: 80%;
    position: relative !important;
    left: unset !important;
    transform: unset !important;
    top: unset !important;
    bottom: unset !important;
    text-align: left !important;
  }

  .card-hover-bottom {
    padding-left: 15px;
    margin: 0;
    width: 80%;
    transform: translateY(200px);
  }

  .card-hover-bottom p {
    transition: 1s transform ease;
    text-align: start;
  }

  .card-row .card-image.active-hover .card-hover-top {
    transform: translate(-50%, -50%);
    height: auto;
    margin-bottom: 20px;
  }

  .card-row .card-image.active-hover .card-hover-top .card-desc-hover1 h4 {
    transform: translate(-50%, -60px);
  }

  .card-row .card-image.active-hover .card-hover-bottom {
    transform: translateY(0);
  }

  .card-row .card-image.active-hover .card-hover-top .card-arrow {
    top: 0;
    transform: unset !important;
  }
  
  .card-row .card-image.active-hover .card-hover-top .card-arrowtop::after {
    -ms-transform: translate(-50%, -50%) rotate(180deg) !important;
    transform: translate(-50%, -50%) rotate(180deg) !important;
  }
  
  .card-arrowtop::after {
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translate(-50%, -50%);
    right: -5px;
  }
  
	.card-arrow {
		left: auto;
		right: 4vh;
		top: 50%;
	}
	
}

/* ipad */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.card-image {
		max-height: 300px;
	}
	
	.card-image img {
		width: 480px;
		height: 300px;
		object-fit: cover;
	}
	
	.card-row .card-image.active-hover .card-hover-bottom p {
		transform: translateY(90px);
		font-size: .9rem !important;
	}
	
}

@media screen and (min-width: 1400px) {
	.card-row .card-image.active-hover .card-hover-top .card-desc-hover1 {
		-ms-transform: translate(-50%, -33vh);
		transform: translate(-50%, -33vh);
	}
  
}

@media screen and (min-width: 1700px) {
	.card-row .card-image.active-hover .card-hover-top .card-desc-hover1 {
		-ms-transform: translate(-50%, -33vh);
		transform: translate(-50%, -33vh);
	}
	
	.card-arrow {
		top: auto;
		bottom: 13vh;
	}
	
}

@media screen and (min-width: 2000px) {
	.card-row .card-image.active-hover .card-hover-top .card-desc-hover1 {
		-ms-transform: translate(-50%, -26vh);
		transform: translate(-50%, -26vh);
	}
	
}


/*# 24) Card for product description #*/
.card_main {
	max-width: 1100px;
	margin: 0 auto;
	padding: 30px 0;
}

.cards_wrapper {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.card_image {
	position: relative;
	background-color: lightgray;
}

.availability-wrapper {
	position: absolute;
	z-index: 1;
	border-radius: 50px;
	padding: 3px 10px;
	color: var(--white-color);
	font-family: 'muli';
	left: 10px;
	top: 10px;
	height: 30px;
	width: 195px;
	box-shadow: 0px 0px 15px -5px #000000b8;
	letter-spacing: 1px;
	/*
	padding: 3px 15px;
	min-width: 135px;
	width: 120px;
	width: 190px;
	display: flex;
	align-items: center;
	justify-content: center; */
}

.availability-wrapper p {
	text-align: center;
	font-size: .8rem !important;
	font-weight: bold;
	letter-spacing: 1.2px;
	color: var(--white-color);
	margin-bottom: 0;
	line-height: 1.8;
}

.card_main .cards_wrapper .cards_item {
	height: 100% !important;
	min-height: 440px;
}

.cards_item {
	display: flex;
	padding: .5rem;
}

.card_inner {
	background-color: white;
	border-radius: 0.45rem;
	box-shadow: 3px 3px 6px #0000000D;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	max-width: 390px;
	height: 100% !important;
	min-height: 450px;
	position: relative;
}

.card_content {
	padding: 1rem;
	background: var(--white-color);
	/*
	background: linear-gradient(to bottom left, #EF8D9C 40%, #FFC39E 100%);
	padding: 1rem 2.5rem 1rem 1rem; */
}

h2.card_title, h2.card_price {
	color: #083248;
	font-size: 1.2rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	letter-spacing: 1.68px;
	margin: 0px;
	font-family: 'Stone Sans, SemiBold';
	font-weight: 500;
	line-height: 1.8rem;
}

.product-location {
	position: relative;
}

.product-location-text p {
	letter-spacing: 1.54px;
	margin-bottom: .4rem;
	font-size: .9rem !important;
}

.product-location-text {
	padding-left: 20px;
}

.product-location-icon img {
	width: 12px;
	position: absolute;
	left: 0;
	display: block;
	top: 0;
}

.card_text {
	font-size: 0.775rem !important;
	line-height: 1.5;
	font-weight: 400;
}

.card_text_spacing {
	margin-bottom: 1.25rem;
	letter-spacing: 1.05px;
}

.card-desc-wrapper {
	position: absolute;
	bottom: 12px;
}

@media (min-width: 40rem) {
	.cards_item {
		width: 50%;
	}
	
}

@media (min-width: 56rem) {
	.cards_item {
		width: 33.3333%;
	}
	
}

@media (max-width: 767px) {
	.availability-wrapper {
		min-width: 150px !important;
	}
	
	.availability-wrapper p {
		line-height: unset !important;
	}
	
	h2.card_price {
		max-width: 280px;
		font-size: 1.2rem !important;
	}
	
	h2.card_title {
		font-size: 1.2rem !important;
	}
	
}

@media screen and (min-width: 1500px) {
	.card_inner {
		min-height: 490px;
	}
	
}


/* ON MOBILE SWIPER CARD */
.card_parent-m {
	display: none;
}

.card_main.card_main2 {
	width: 100%;
	margin: 0 auto !important;
	padding-bottom: 2rem !important;
}

.cards_item2 {
	padding-bottom: 3rem;
}

.card_main.card_main2 .swiper-container .swiper-wrapper .swiper-slide .format-box {
	position: relative;
	display: block;
	width: 90%;
	height: auto;
}

.custom-nav-swiper {
	position: relative;
	width: 35%;
	margin: 0 auto;
}

.swiper-button-next, .swiper-button-prev {
	position: absolute !important;
	bottom: 8px !important;
	top: unset !important;
	width: 20px !important;
	height: 20px !important;
}

.card_main.card_main2 .swiper-container .swiper-button-next .arrow-icon,
.card_main.card_main2 .swiper-container .swiper-button-prev .arrow-icon {
	font-size: 1.6rem !important;
	color: var(--light-red-color);
}

.card_main.card_main2 .swiper-container .swiper-button-next,
.card_main.card_main2 .swiper-container .swiper-button-prev {
	background-image: none;
	background-size: 0;
	background-repeat: no-repeat;
	background-position: 0;
	margin-top: -1rem;
}

.card_main.card_main2 .swiper-container .swiper-button-next .arrow-icon,
.card_main.card_main2 .swiper-container .swiper-button-prev .arrow-icon {
	font-size: 2rem;
	color: var(--light-red-color);
}


@media (max-width: 767px) {
	li.custom-arrow-link {
		font-size: .9rem !important;
	}
	
	.format .format-box {
		padding: 25px 25px 25px 25px;
	}
	
	.card_main.card_main2 {
		padding: 30px 0 0 0 !important;
	}
	
}


/*# 25) Property Cards content size #*/
.card_ProjectName {
	min-height: 60px;
}

.card_PriceRange {
	min-height: 60px;
}

.card_image .proj_img {
	object-fit: cover;
	min-width: 340px;
	min-height: 225px;
}

.ErrorLabel, .InfoLabel {
	display: none;
}


@media screen and (min-width: 1500px) {
  
}


/*# 26) Contact #*/
.form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 2rem;
}

.form-col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.contact-wrapper {
	position: relative;
	color: var(--dark-blue-color);
}

.location-header p {
	font-family: 'Stone Sans, Bold';
	font-size: 14px;
	margin-bottom: 0.25rem !important;
}

.contact-info {
	position: relative;
	margin-top: 2rem;
	padding-left: 3rem;
}

.contact-icon img {
	width: 20px;
	position: absolute;
	left: 0;
	display: block;
	top: 5px;
}

.contact-icon img.whistle-icon {
	width: 27px;
}


/*# 26) Contact /a) Contact form wrapper #*/
.contact-form-wrapper {
	margin: 0 auto;
	padding: 0px;
	width: 100%;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: flex-end;
}

.contact-form-wrapper h1 {
	margin-top: 50px;
	font-size: 45px;
	color: #1B4F72;
}

.contact-header {
	display: flex;
	/* width: max-content; */
	position: absolute;
	z-index: 2;
	gap: 5px;
    text-transform: uppercase;
}

.contact-desc-right {
	position: relative;
	padding: 30px 0;
	margin-top: 1rem;
	font-size: 1rem;
	max-width: 400px;
}

.contact-form-wrapper h1 p {
  font-size: 18px;
}

#contact_form_div {
	width: 90%;
	padding: 40px;
	background-color: var(--white-color);
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 0.45rem;
}

#contact_form_div #contact_label {
	margin: 0;
	margin-bottom: 15px;
	font-size: 20px;
	font-family: "Stone Sans, SemiBold";
	font-weight: 500;
	color: var(--dark-blue-color);
	display: inline-block;
	/* line-height: unset; */
}

.input-group {
	margin-bottom: 1rem;
	position: relative;
}

.input-group span, .form-error span, span.form-error {
	color: var(--light-red-color);
	font-size: .8rem;
	font-family: "Noto Sans, Light";
	padding-left: 5px;
}

.input-group span i {
	color: #006039;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

#submit-error {
	color: var(--light-red-color);
	font-size: .9rem;
	font-family: "Noto Sans, Medium";
}


/*# 26) Contact /b) Form inputs  #*/
#contact_form_div input[type="text"],
#contact_form_div input[type="email"],
#contact_form_div input[type="tel"],
#contact_form_div input[type="number"] {
	width: 100%;
	height: 40px;
	font-size: 15px;
	padding-left: 5px;
	outline: none !important;
	font-family: "Noto Sans, Light";
	border-bottom: solid 2px;
	border-width: 0 0 1px;
	border-color: #00000029;
	box-shadow: inset 0 0 2px 2px rgba(247, 0, 0, 0);
	border-radius: unset !important;
    color: var(--dark-blue-color);
}

#contact_form_div textarea {
	width: 100%;
	height: 100px;
	font-size: 15px;
	padding: 5px;
	background-color: #70707014;
	box-shadow: unset !important;
	font-family: "Noto Sans, Light";
}

#contact_form_div button[type="submit"] {
	width: max-content;
	border: none;
	background-color: unset !important;
	outline: 0 !important;
	box-shadow: inset 0 0 2px 2px rgba(247, 0, 0, 0);
	font-family: 'Stone Sans, SemiBold';
	font-size: 1.3rem;
	color: var(--light-red-color);
	padding: 10px 50px 10px 20px;
	position: relative;
	text-transform: inherit;
	border-radius: 30px;
	outline: 0;
	display: inline-block;
	overflow: visible;
	background-color: #fff;
	box-shadow: -3px 3px 6px #00000029;
	transition: 0.3s ease-in-out all;
}

#contact_form_div button[type="submit"]:before {
	content: '';
	background-image: url('/SPSetia/media/Revamped-Library/assets/icons/main-btn-red-border.svg');
	width: 25px;
	height: 24px;
	position: absolute;
	display: block;
	background-size: contain;
	right: 18px;
	top: 10px;
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.3s ease-in-out all;
}

#contact_form_div button[type="submit"]:hover::before {
	transform: translateX(10px);
}


/* New button css */
#contact_form_div input[type="submit"] {
	width: max-content;
	border: none;
	background-color: unset !important;
	outline: 0 !important;
	box-shadow: inset 0 0 2px 2px rgba(247, 0, 0, 0);
	
	font-family: 'Stone Sans, SemiBold';
	font-size: 1.3rem;
	color: var(--light-red-color);
	padding: 10px 50px 10px 20px;
	position: relative;
	text-transform: inherit;
	border-radius: 30px;
	outline: 0;
	display: inline-block;
	overflow: visible;
	background-color: #fff;
	box-shadow: -3px 3px 6px #00000029;
	transition: 0.3s ease-in-out all;
}

/* Alternate submit button icon */
#contact_form_div .submit_btn:before {
	content: '';
	background-image: url('/SPSetia/media/Revamped-Library/assets/icons/main-btn-red-border.svg');
	background-size: contain;
    display: block;
    width: 25px;
	height: 24px;
	position: relative;
    left: 55%;
  
	top: 37px;
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.3s ease-in-out all;
}

#contact_form_div .submit_btn:hover::before {
	transform: translateX(10px);
}

/* New css for ipad submit btn icon */
@media screen and (orientation: landscape) and (min-width: 1180px) and (min-height: 710px) {
    .card-row .card-image.active-hover .card-hover-top .card-arrowtop:after {
        -ms-transform: translate(-50%, -3.5vh) rotate(180deg);
        transform: translate(-50%, -3.5vh) rotate(180deg);
    }
    
}


input[type="text"]#contact_form_div, textarea#contact_form_div:focus,
#contact_form_div textarea, input#contact_form_div:focus,
[type=text]#contact_form_div:focus, [type=password]#contact_form_div:focus,
[type=email]#contact_form_div:focus, [type=tel]#contact_form_div:focus,
[contenteditable]#contact_form_div:focus {
	box-shadow: inset 0 -1px 0 rgba(93, 93, 93, 0.259);
	outline: none !important;
	border: 0 !important;
	font-family: "Noto Sans, Light";
}

input::placeholder {
	color: #6C6C6C !important;
}

@media screen and (min-width: 1500px) {
	.contact-desc-right {
		font-size: 1.15rem;
		max-width: 100% !important;
	}
	
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.contact-form-wrapper {
		width: 100%;
	}
	
	.contact-form-wrapper h1 {
		font-size: 30px;
	}
	
	#contact_form_div {
		width: 70%;
		margin: 0 auto;
		padding: 40px;
	}
	
	.custom-tab-header>a {
		font-size: 1rem !important;
	}
	
	.custom-tab-header::after {
		right: 45px;
	}
  
}

@media only screen and (min-width:400px) and (max-width:699px) {
	.contact-form-wrapper {
		width: 100%;
	}
	
	.contact-form-wrapper h1 {
		font-size: 30px;
	}
	
	#contact_form_div {
		width: 100%;
		margin: 0 auto;
	}
	
	#contact_form_div input[type="text"] {
		width: 100%;
	}
	
	#contact_form_div textarea {
		width: 100%;
	}
	
	#contact_form_div button[type="submit"] {
		width: max-content;
	}
	
}

@media only screen and (min-width:100px) and (max-width:399px) {
	.contact-form-wrapper {
		width: 100%;
	}
	
	.contact-form-wrapper h1 {
		font-size: 25px;
	}
	
	#contact_form_div {
		width: 100%;
		padding: 20px;
	}
	
	#contact_form_div input[type="text"] {
		width: 100%;
	}
	
	#contact_form_div textarea {
		width: 100%;
	}
	
	#contact_form_div button[type="submit"] {
		width: max-content;
	}
	
}

@media (max-width: 767px) {
	.input-group {
		margin-bottom: .5rem !important;
	}
	
	.form-row {
		flex-direction: column !important;
		gap: 1rem !important;
	}
	
	#contact_form_div button[type="submit"]::before {
		top: 7px !important;
	}
	
	#contact_form_div button[type="submit"] {
		border-radius: none !important;
	}
	
	.contact-desc-right {
		max-width: 100% !important;
	}
	
}


/*# 26) Contact /c) contact tab #*/
.contact-tab-parent {
	display: flex;
}

.contact-tab .column {
	margin: 0 auto 20px;
	float: unset;
}


/*# 27) Footer #*/
#Footer {
	background-color: var(--white-color);
	box-shadow: 0px -3px 6px #0000001A;
	position: relative;
	z-index: 3;
}

footer, aside {
	display: block;
}

.clearfix::before, .clearfix::after {
	content: '\0020';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix::after {
	clear: both;
}

#Footer .widgets_wrapper {
	padding: 70px 0 40px 0;
}


#Footer .widgets_wrapper .column {
	margin-bottom: 0;
}

.column, .columns {
	float: left;
	margin: 0 1% 40px;
}

#Footer .container .column {
	display: flex;
	flex-wrap: wrap;
	/* width: 100%; */
}

.container.large.footer-wrappp .column:nth-child(1) {
	width: 22%;
}

.container.large.footer-wrappp .column:nth-child(2) {
	width: 78%;
}

.container.large.footer-wrappp {
	display: flex;
	flex-direction: row;
}


#Footer .widgets_wrapper .widget {
  width: 100%;
  margin-top: 0;
}

#Footer .widgets_wrapper .widget.f-col-2 {
  width: 22%;
  margin-top: 0;
}

.investor-aside {
  margin-left: 2rem;
}

.togglefooter h4 {
  color: var(--footer-header-color);
  font-size: .825rem;
}

/*
.togglefooter.custom-margin-footer h4 {
	margin-bottom: 2rem;
} */

.widget {
	padding-bottom: 30px;
	margin-top: 30px;
	position: relative;
}

#Footer .widgets_wrapper .container .textwidget,
#Footer .widgets_wrapper .container .widget-wrapp {
	height: 100%;
}

.widget-wrapp {
  position: relative;
}

.footerr-address {
  padding-top: 120px;
}

.footerr-address h4 {
  margin-bottom: 25px;
}

.footerr-address small {
  display: block;
  margin-bottom: 10px;
}


.footerr-img, .footerr-socmed-d {
  height: max-content;
}

.footerr-socmed-d {
  display: none;
}


/*
.footerr-socmed-d {
	position: absolute;
	top: calc(90% - 0px);
	width: 100%;
}

.footerr-socmed-d h4 {
	margin-bottom: 25px;
} */

.footerr-socmed-d h4 {
  font-size: 82%;
  color: var(--footer-color);
  opacity: .7;
  text-transform: none;
}

.footerr-socmed-d {
  margin-top: 4rem;
}

/*
.socmed {
	margin-top: 25px;
} */

.socmed>a:not(:last-child) {
	margin-right: 3%;
}

.socmed>a {
	float: left;
	/*
	width: 60px;
	height: 60px !important; */
}

.socmed a {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s ease-in-out all;
	/*
	width: 100%;
	margin-bottom: 20px; */
}

.socmed img {
	width: 30px;
}

.footerr-img, .footerr-socmed-d {
	height: max-content;
}

.footerr-img img {
  width: 190px;
}


#Footer .widgets_wrapper .widget {
  padding: 0 0 15px 0;
  margin-bottom: 0;
}

#Footer .container .column:nth-child(2) .widget-wrapp {
  margin: 0 0 0 auto;
}

#Footer .font-grey a {
  color: var(--footer-color);
  font-family: "Noto Sans, Medium";
}

.widget-wrapp li, .widget-wrapp p.font-grey {
	font-size: 82%;
}

.widget-wrapp p {
	margin-bottom: 12px;
}

.widget-wrapp ul {
	margin-bottom: 11px;
	line-height: 23px;
	/* padding-left: .5vw; */
}

ul {
	list-style: none outside;
}

/*
.widget-wrapp li {
	margin-bottom: 5px;
} */

.widget-wrapp ul a {
	font-size: 100%;
	color: var(--footer-color);
	opacity: .8;
	font-family: "Noto Sans, Light";
	font-weight: 600;
}

.widget-wrapp ul a:hover {
  opacity: 1;
}

hr.no_line {
  background: none;
  color: transparent;
}

hr, .hr_wide,
.hr_zigzag, .hr_dots {
  margin: 0 auto 15px;
  clear: both;
}

hr {
  display: block;
  border: none;
  outline: none;
  height: 1px;
  width: 100%;
  margin: 0 auto 15px;
  clear: both;
}

#Footer .footer_copy .copyright {
  /* float: left; */
  text-align: center !important;
  font-family: "Noto Sans, Regular";
  font-size: 83%;
  color: var(--footer-color);
}


.footer-copyright-column {
  margin-bottom: 20px;
  padding-top: 30px;
  min-height: 33px;
}

.footer_copy {
  position: relative;
}

.copyright-mobile {
	display: none;
}

.copyright-mobile2 {
	text-align: center;
}

.cp-logo {
	margin-right: 20px;
	width: 100%;
}

.cp-logo2 {
	width: 100%;
}

.cp-logo2 img {
	width: 47%;
}

.cp-desc p {
	font-family: "Noto Sans, Regular";
	font-size: 75%;
	letter-spacing: normal;
	color: var(--footer-color);
}

/*
.apps-icon {
	transform: translateX(40px);
} */

.apps-icon img {
	width: 18%;
	margin: 0 10px;
}

.copyright-social h4 {
	font-size: 82%;
	color: var(--footer-color);
	opacity: .8;
	text-transform: none;
	font-family: "Noto Sans, Regular";
}

.copyright-logos-wrapper {
	position: relative;
	width: 77%;
	float: right;
}

.copyright-logos-wrapper .row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	flex-direction: row;
}

@media screen and (min-width: 1500px) {
	.copyright-logos-wrapper {
		width: 76% !important;
	}
	
	.widget-wrapp ul a {
		font-size: 88%;
	}
	
	.apps-icon {
		transform: translateX(5px);
	}
	
	.apps-icon img {
		width: 17% !important;
	}
	
	.footerr-img img {
		width: 240px;
	}
	
}

@media only screen and (min-width : 1400px) {
	.togglefooter.custom-margin-footer h4 {
		margin-bottom: .5rem !important;
	}
	
}

@media (max-width: 767px) {
	.socmed img {
		width: 2.3rem !important;
	}
	
	.cp-logo2 img {
		/* width: 34%; */
		margin-bottom: 10px;
	}
	
	.cp-logo {
		width: 30%;
		transform: translateY(-9px) !important;
	}
	
	.cp-logo a img {
		max-width: 90px;
	}
	
	.cp-logo2 {
		width: 70%;
	}
	
	.investor-aside {
		margin-left: unset !important;
	}
	
}

/* landscape */
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {
  #contact_form_div {
    width: 70%;
    margin: 0 auto;
    padding: 40px;
  }
}


/*# 28) Modal - Off-Canvas Panel #*/
/* button for news bottom modal */
#latestNews-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 4;
  cursor: pointer;
  float: left;
  outline: 0;
  border: 0;
}

/* button text */
#latestNews-btn {
  font-family: "Stone Sans, SemiBold";
  font-weight: initial;
  font-size: 1.1rem;
}

.latest-news-button div {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white-color);
  color: var(--dark-blue-color);
  /* width: -webkit-max-content;
  width: -moz-max-content; */
  width: 170px;
  padding: 10px 10px 10px 42px;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  z-index: 1;
  position: relative;
  left: 0;
  box-shadow: 0px 3px 6px #00000029;
  text-align: left;
}

/* The Modal (background) */
.latestNews-modal {
  position: fixed;
  z-index: 15;
  left: 0;
  width: 100%;
  height: 100%;
  /* overflow: auto; */
  /* background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4); */
  left: -100%;
  opacity: 0;
  transition: left 0.5s, opacity 0.5s;
}

.latestNews-modal.latestNews-show {
  left: 0;
  opacity: 1;
}

/* Modal Content/Box */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  max-width: 305px;
  float: left;
}

/* to make it full height */
.modal-content {
  height: 100%;
  min-height: 100%;
  overflow-y: scroll;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-content::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.modal-content {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: thin;
  /* Firefox */
}

/* The Close Button */
.latestNews-modal-close {
  color: #707070;
  float: right;
  font-size: 35px;
  margin: 10px 15px 0 0;
  transition: .3s ease-in-out all;
  cursor: pointer;
}

.latestNews-modal-close:hover,
.latestNews-modal-close:focus {
  color: #4d4c4c;
  text-decoration: none;
  cursor: pointer;
}

/* Modal Header */
.modal-header {
  color: white;
}

/* Modal Body */
.modal-body {
  padding: 10px 42px 10px 42px;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.latestnews-items img {
  max-width: 220px;
}

/* Modal Footer */
.modal-footer {
  cursor: pointer;
  padding: 0px 0px 10px 0px;
}

.modal-footer h5 {
  font-family: "Stone Sans, SemiBold";
  font-weight: initial;
  font-size: 1rem;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--dark-blue-color);
  width: 165px;
  padding: 0px 0 0px 42px;
  margin: 0;
  cursor: pointer;
  z-index: 1;
  position: relative;
  text-align: left;
  line-height: 1.2rem;
}


/*# 29) Modal - Inner Content Styling #*/
/* our latest update sidebox */
.latest-news {
  margin-bottom: 1rem;
}

.latest-news h4.logo-sidebox {
  font-size: 25px;
  font-family: 'Stone Sans, SemiBold';
  color: var(--dark-blue-color);
}

.latest-news p.sidebox-title {
  margin-top: 9px;
  margin-bottom: 13px;
  font-family: "Stone Sans, Medium";
  font-size: 1rem;
  font-weight: 500;
  /* max-width: 200px; */
  color: var(--dark-blue-color);
}

.latest-news .sidebox-title span {
  background-color: var(--color-3);
  padding: 3px;
  border-radius: 4px;
}


/* responsive */

@media (max-width: 767px) {
	.latestNews-modal-close {
		margin: 20px 25px 0 0;
	}
	
	.modal-content {
		width: 100%;
		max-width: unset !important;
	}
	
	.modal-body {
		padding: 10px 55px 10px 55px;
		order: 1;
	}
	
	.modal-footer {
		padding: 30px 0px 10px 0px;
	}
	
	.modal-footer h5 {
		width: 100%;
		padding: unset !important;
		flex-wrap: wrap;
		flex-direction: column;
	}
	
	.modal-footer h5::after {
		content: '';
		border-bottom: 1px solid #acacac;
		width: 100%;
		display: block;
		padding-top: 11px;
	}
	
	#latestNews-btn {
		/* position: absolute;
		top: 42vh;
		left: 0;
		bottom: unset !important; */
		font-size: 1rem;
		width: 130px;
		padding: 10px 10px 10px 15px;
	}
	
	.latest-news p.sidebox-title {
		font-size: 1rem !important;
	}
	
	.latestnews-items {
		justify-content: center;
		display: flex;
	}
	
	.latestnews-items img {
		max-width: 100% !important;
	}
	
	.latest-news h4.logo-sidebox {
		font-size: 30px !important;
	}
	
	#latestn .sidebox-title {
		max-width: unset !important;
	}
	
	.latest-news {
		margin-bottom: 2.5rem !important;
	}
	
}

@media screen and (min-width : 1500px) {
	.modal-content {
		max-width: 350px;
	}
	
	.latest-news {
		margin-bottom: 2rem;
	}
	
	.latest-news h4.logo-sidebox {
		font-size: 30px;
	}
	
	.latest-news p.sidebox-title {
		margin-top: 10px;
		margin-bottom: 20px;
		font-size: 1.1rem;
	}
	
	.latestnews-items img {
		max-width: 255px;
	}
	
	.modal-footer h5 {
		font-size: 1.1rem;
		line-height: 1.375rem;
	}
	
}


/*# 30) Filter tab styling #*/
.filter-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.filter-menu ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* margin: 0 auto; */
  padding: 0.8em 0;
  list-style: none;
}

.filter-title label {
  font-family: 'Stone Sans, Bold';
  font-size: 17px;
  padding: 20px;
  color: #70777B;
  letter-spacing: 1.75px;
}

.filter-menu-item.filter-menu-item-top {
  padding: .2em .4em;
  position: relative;
  border: 1px solid #70707042;
  border-radius: 0.45rem;
  margin: 0.2em;
  transition: background 0.23s linear;
  /* cursor: pointer; */
  min-width: 12em;
  min-height: 3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.filter-menu-item.filter-menu-item-top .filter-header {
  cursor: pointer;
}

.filter-menu-item p {
  margin-bottom: .5rem;
  font-size: .9rem;
  font-family: 'Stone Sans, SemiBold';
  color: var(--dark-blue-color);
  line-height: 19px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  width: 145px;
}

.filter-downBtn {
  position: relative;
  padding: 5px;
  height: 35px;
  width: 35px;
  transition: all 0.2s linear;
}

.filter-downBtn:after {
  content: "";
  position: absolute;
  left: 20px;
  top: 9px;
  transform: rotate(225deg);
  z-index: 2;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
}

/* when hover the filter tab */
.filter-menu-item:hover,
.filter-menu-item:focus-within {
  background: #103984;
  border: 1px solid #f000;
}

.filter-menu-item:hover .filter-downBtn:after {
  border-top: 1px solid var(--white-color);
  border-left: 1px solid var(--white-color);
}

.filter-menu-item:hover a,
.filter-menu-item:hover p {
  color: var(--white-color);
}

.filter-menu-item:focus-within a,
.filter-menu-item:focus-within p {
  color: var(--white-color) !important;
}

.filter-menu-item:focus-within .filter-downBtn:after {
  border-top: 1px solid var(--white-color);
  border-left: 1px solid var(--white-color);
}

.filter-menu-item a {
  color: #70777B;
  font-size: .9rem;
}

.filter-menu-item:hover .filter-sub-menu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-wrap: inherit;
}

/*
.filter-menu-item:hover .filter-sub-menu, .filter-menu-item:hover .filter-sub-menu:hover, .filter-menu-item:focus-within .filter-sub-menu, .filter-menu-item:focus-within .filter-sub-menu:hover {
	visibility: visible;
	opacity: 1;
	display: flex;
	flex-wrap: inherit;
} */


/* the submenu when hover */
.filter-sub-menu {
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	left: 0;
	/* margin-top: 1em; */
	visibility: hidden;
	display: none;
	opacity: 0;
}

.filter-sub-menu .filter-menu-item {
  margin: 0.1em 0;
  padding: 1em;
  min-width: 20em;
  z-index: 2;
  max-width: max-content;
}

.filter-sub-menu .filter-menu-item.filter-col {
  min-width: 35em;
  /* display: flex;
  justify-content: space-around; */
}

.submenu-wrapper.submenu-wrapper-col .submenu-container .row {
  width: 40em;
  justify-content: space-around;
  display: flex;
}

.submenu-wrapper {
  padding-left: 15px;
}

.filter-sub-menu .filter-menu-item {
  background: var(--white-color);
  border: 0;
  box-shadow: 3px 3px 6px #00000029;
  border-radius: 0.45rem;
}

.filter-sub-menu .filter-menu-item a {
  color: var(--dark-blue-color);
  font-family: 'Noto Sans, Light';
  font-size: 1rem;
}

/* style the submit button */
.filter-submit-btn-wrapper {
  margin: 0 auto;
  text-align: center;
  width: max-content;
  position: relative;
}

button.filter-submit-btn {
  color: #F01A2A;
  font-family: 'Stone Sans, Bold';
  font-size: .8rem;
  cursor: pointer;
  text-underline-offset: 6px;
  letter-spacing: 0;
  outline: 0;
  background-color: unset;
  box-shadow: none;
  border: none;
  text-transform: uppercase;
  /*text-decoration-line: underline;*/
  /*-webkit-text-decoration-line: underline;*/
  /*text-decoration-color: #F01A2A;*/
  /*-webkit-text-decoration-color: #F01A2A;*/
  /*text-decoration: underline #F01A2A;*/
  /*-webkit-text-decoration: underline #F01A2A;*/
}

button.filter-submit-btn::after {
  content: '';
  border-bottom: 1px solid #F01A2A;
  width: 100%;
  display: block;
  padding-top: 3px;
}

/* on mobile */
.filter-submit-btn-wrapper-m {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  position: sticky;
  padding: 20px;
  background-color: #fff;
  order: 2;
  margin-top: auto;
  bottom: 0;
}

.filter-submit-btn-wrapper-m button.filter-submit-btn {
  font-size: 1rem;
  text-transform: inherit;
}


/*# 31) filter inner styling #*/
.submenu-container {
  display: inline-block;
  vertical-align: top;
}

.submenu-container .row div:nth-child(1),
.submenu-container .row div:nth-child(2) {
  /* padding-right: 45px; */
  width: 100%;
}

.submenu-checkbox .submenu-label {
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--dark-blue-color);
  font-family: 'Noto Sans, Light';
  font-size: 1rem;
  letter-spacing: 1.2px;
}

.submenu-container .submenu-control {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  margin: 15px 0;
}

.submenu-container .submenu-control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.submenu-container .submenu-label:after,
.submenu-container .submenu-label:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 15px;
  transition: .2s ease-in-out all;
}

/* add hover bg to submenu label before */
.submenu-control.submenu-checkbox:hover input~.submenu-label::before {
  background-color: #ccc;
}

.submenu-container .submenu-checkbox .submenu-label:after {
  left: 0;
  width: 0;
  height: 0;
  border: rgba(255, 255, 255, 0);
  border-width: 0;
}

.submenu-container .submenu-checkbox input:checked~.submenu-label:before {
  background-color: #103984;
}

/* .submenu-container .submenu-checkbox input:disabled~.submenu-label:after {
  border-color: #7b7b7b;
}

.submenu-container .submenu-checkbox input:disabled~.submenu-label:after {
  border-color: #7b7b7b;
} */

.submenu-container .submenu-checkbox input:checked~.submenu-label {
  font-family: 'Noto Sans, Black';
  color: #103984;
}

@media (max-width: 767px) {
  .filter-menu {
    display: none;
  }

  .filter-tab-parent {
    display: block !important;
  }

  .submenu-wrapper.submenu-wrapper-col .submenu-container .row {
    width: 100% !important;
    display: block !important;
  }

  .submenu-container .submenu-control {
    margin: 0 !important;
  }

  .submenu-container .row div:nth-child(1),
  .submenu-container .row div:nth-child(2) {
    padding: 0 10px !important;
  }

}

@media screen and (min-width: 767px) and (max-width: 1023px) {

  .submenu-wrapper.submenu-wrapper-col .submenu-container .row {
    width: 100% !important;
    display: block !important;
  }

  .submenu-container .row div:nth-child(1),
  .submenu-container .row div:nth-child(2) {
    padding: 0 10px !important;
  }

  .submenu-container .submenu-control {
    margin: 0 !important;
  }

  .submenu-checkbox .submenu-label {
    font-size: .9rem !important;
  }
}


/*# 32) Back to top button #*/
#back-to-top {
  background-image: url('/SPSetia/media/Revamped-Library/assets/icons/main-btn-blue-fill.svg');
  background-size: contain;
  font-size: 0 !important;
  filter: grayscale(100%);
  opacity: .5;
  transition: .3s ease-in-out all;
  border: 0 !important;
  outline: 0 !important;
  background-color: transparent !important;
}

#back-to-top:hover {
  filter: brightness(100%);
  opacity: 1;
}

.scrolltoTop {
  position: fixed;
  right: 0 !important;
  bottom: 0 !important;
  width: 42px;
  height: 42px;
  line-height: 42px !important;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


@media (max-width: 767px) {
  .scrolltoTop {
    display: inline-block !important;
  }
}


/*# 33) Animation #*/
.fade-in {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/*# 34) Homepage #*/
.home-banner-wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
}

.home-banner-wrapper .home-banner1 {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
}

.c-section--title {
  position: relative;
  width: 100%;
  z-index: 2;
}

.home-banner1-desc {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.home-banner1-desc h2,
.home-banner2-desc h2 {
  letter-spacing: 0.25rem;
  line-height: 3.5rem;
}

.our-operation-btn {
  position: absolute;
  bottom: 4vh;
  right: 10vh;
  padding-right: 45px;
}

.home-banner-wrapper .home-banner2 {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  padding: 0;
  position: relative;
}

.home-banner2-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  align-items: center;
  padding: 0 80px;
}

.home-banner1 {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  transform: translateX(3rem);
}

.home-banner2 {
  position: relative;
  /* background-color: var(--dark-grey-color); */
  z-index: 1;
}

.home-banner1,
.home-banner2 {
  height: 100vh;
  margin: 0;
}

.home-banner-wrapper .home-banner1 .container {
  margin: unset;
  padding-left: unset;
  padding-right: unset;
}

.our-b-wrapper {
  position: absolute;
  bottom: 15px;
  left: 0;
  padding-right: 45px;
  z-index: 2;
  padding-left: 15px;
}

#videoBG {
  object-fit: cover !important;
  width: 100%;
  height: 100%;
}

.home-banner2-vid .home-banner2-vid-container video {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  z-index: 2;
}

.home-banner2-vid .home-banner2-vid-container {
  display: block !important;
}

.home-banner2-vid .home-banner2-vid-container {
  /* background-color: gray; */
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  z-index: 1;
}

.home-banner2-vid-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2%;
  height: 100%;
  background: linear-gradient(to right, #8A8D8F, #8A8D8F);
  pointer-events: none;
  z-index: 3;
}

.home-banner2-vid-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #8A8D8F, #8A8D8F);
  pointer-events: none;
  max-height: 80px;
  z-index: 2;
}

.home-banner2-vid .home-banner2-vid-container .mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  /* background: url('/SPSetia/media/Revamped-Library/assets/img/videomask.png') repeat center; */
}

/*
.home-banner2-vid-container .mask {
  background: linear-gradient(10deg, #8A8D8F 0%, rgba(255, 255, 255, 0) 45%) !important;
} */

.home-banner2-desc {
  z-index: 2;
  position: relative;
}


@media (max-width: 767px) {

  /* #videoBG {
    display: none;
  } */


  .home-banner1 {
    height: 50vh !important;
    margin: 0;
    text-align: center !important;
  }

  .home-banner1,
  .home-banner1-desc {
    transform: unset !important;
    text-align: center !important;
    justify-content: center;
  }

  .home-banner2 {
    height: 50vh !important;
    /* background-image: url('/SPSetia/media/Revamped-Library/assets/img/our-bus-bg.png');
    background-size: cover; */
    position: relative;
    text-align: left;
  }

  .home-banner2-wrapper {
    padding: 0 0 0 40px !important;
  }

  .home-banner2-vid-container::after {
    max-height: 50px !important;
  }

  .our-operation-btn {
    right: unset !important;
    position: absolute;
    left: 50%;
    top: 85%;
    transform: translate(-50%, -50%);
  }

  .our-b-wrapper {
    bottom: 9px !important;
    padding-left: 40px !important;
  }

}

@media only screen and (min-width : 1400px) {

  .home-banner1 {
    padding: 0 20px !important;
  }

  .home-banner1-desc h2,
  .home-banner2-desc h2 {
    font-size: 3rem;
  }
}

@media screen and (min-width : 1500px) {

  .home-banner1 {
    /* padding: 0 110px !important; */
    transform: unset !important;
  }

  .home-banner2-vid-container::after {
    max-height: 95px;
  }

  .home-banner-wrapper .home-banner1 .container {
    margin: 0 auto;
    padding-left: var(--gap-padding);
    padding-right: var(--gap-padding);
  }

  .our-b-wrapper {
    bottom: 20px !important;
  }
}


/*# 35) News section (Homepage) #*/
.news-inner {
	padding: 1rem;
}

.news-inner:nth-child(2) {
	padding: 1rem 1rem 1rem 5rem;
}

.news-wrapper {
  max-width: 1155px;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
  position: relative;
}

.news-wrapper::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 1px #08324884 solid;
}

/* Screen larger than 600px 2 column */
@media (min-width: 600px) {
  .news-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-wrapper::after {
    display: none;
    /* transform: rotate(90deg);
      border-left: 1px #08324884 solid;
      top: 0;
      left: 50%;
      content: '';
      bottom: 0; */
  }
}

/* Screen larger than 900px 3 columns */
@media (min-width: 900px) {
  .news-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}


.news-card-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.news-container {
  /* max-width: 1200px; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  /* grid-gap: 35px; */
  /* margin: 0 auto; */
  padding: 40px 0;
  z-index: 2;
}


.news-container .news-card {
  position: relative;
  max-width: 100%;
  height: auto;
}

.news-container .news-card {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  /* background: #000;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5); */
}

.news-container .news-card .news-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  text-align: left;
}

.news-container .news-card .news-card-wrapper.news-card-wrapper1 {
  box-sizing: border-box;
  padding: 20px;
  color: var(--white-color);
}

.news-container .news-card .news-card-wrapper.news-card-wrapper1 h5 {
  color: var(--light-red-color);
  text-align: center;
  font-family: "Stone Sans, Bold";
  font-size: 1rem;
  text-transform: inherit;
}

.news-container .news-card:nth-child(1) {
  background-color: #fff;
}

.news-container .news-card:nth-child(2) {
  background-color: #022c7b;
  ;
}

.news-container .news-card:nth-child(3) {
  background-color: #8a8d8f;
}

.news-container .news-card:nth-child(4) {
  background-color: #84754e;
}

/* more news card */
.news-container .news-card:nth-child(1) {
  width: 155px;
  height: 155px;
  margin-right: 0;
  margin-top: 4rem;
}

/* position the card */
.news-container .news-card:nth-child(3) {
  margin-top: -3rem;
}

.news-container .news-card:nth-child(4) {
  margin-top: -2rem;
}

.news-icon {
  text-align: center;
  margin: 10px 0;
  transform: translateY(-15px);
  transition: .3s ease-in-out all;
}

.news-icon img {
  max-width: 40px;
  /* transform: rotate(90deg); */
  filter: drop-shadow(4px 5px 6px #59595961);
  transition: .3s ease-in-out all;
  display: inline-block;
}

.news-content:hover .news-icon img {
  transform: translateX(10px);
}

/* align center more news card */
.news-card1 .news-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover open the details card news */
.news-hover-top .news-desc-hover1 {
  display: flex;
  justify-content: center;
}

.news-hover-top {
  text-align: left;
  color: var(--white-color);
  /* width: 80%; */
  margin: 0 auto;
}

.news-hover-top {
  /* transform: translateY(20px); */
  transition: .3s ease-in-out all;
}

.news-hover-top h4 {
  animation: fadeIn 3s;
  /* font-size: 1.125rem;
  line-height: 1.563rem; */
  color: var(--white-color);
}

.news-hover-bottom {
  text-align: left;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  color: var(--white-color);
  width: 80%;
}

.news-hover-bottom {
  max-height: 0;
  overflow: hidden;
  transition: .3s ease-in-out all;
}

.news-hover-bottom p {
  display: block;
  /* height: 130px; */
  color: var(--white-color);
}

.news-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.news-hover-top {
  padding-top: unset !important;
  position: relative;
  width: 100%;
  height: 100%;
}


.news-hover-top2 .news-arrow {
  transform: translateY(-13px);
}

.news-hover-top3 .news-arrow {
  transform: translateY(60px);
}

/* .news-card-section .news-card:hover .news-hover-top3 {
  transform: translateY(-75px);
} */

.news-container .news-card:nth-child(4) {
  margin-top: unset !important;
}

.news-arrow .arrowtop {
  display: inline-block;
  position: relative;
}

.news-arrow .arrowtop::after {
  content: '';
  display: inline-block;
  background-image: url('/SPSetia/media/Revamped-Library/assets/icons/main-btn-white-fill.svg');
  width: 55px;
  height: 55px;
  transition: .3s ease-in-out all;
}

.news-arrow {
  text-align: center;
  margin-top: 25px;
}

.news-arrow a {
  display: inline-block;
  /* pointer-events: none; */
  transition: .3s ease-in-out all;
}

.news-container .news-card .news-card1 {
  align-items: center;
  display: flex;
  justify-content: center;
}


/* hover the content (remove the hover as suggested) */
/*
.news-card-section .news-card:hover .news-hover-bottom {
	max-height: 280px;
}

.news-card-section .news-card:hover .news-hover-top h4 {
	display: none;
}

.news-card-section .news-card:hover .news-hover-top {
	transform: translateY(-20px);
}

.news-card-section .news-card:hover .news-arrow a {
	transform: translate(0, 0%) rotate(180deg);
}

.news-card-section .news-card:hover .arrowtop::after {
	background-image: url('/SPSetia/media/Revamped-Library/assets/icons/main-btn-blue-fill.svg');
} */

/* adjusting the arrow when hover */
/*
.news-hover-top3 .news-arrow {
	transform: translateY(95px);
}

.news-card-section .news-card:hover .news-hover-top3 {
	transform: translateY(-115px);
}

.news-hover-top4 .news-arrow {
	transform: translateY(45px);
}

.news-card-section .news-card:hover .news-hover-top4 {
	transform: translateY(-65px);
} */


@media (min-width: 800px) {
  .news-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 500px) {
  .news-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {


  .news-wrapper {
    grid-gap: unset !important;
    text-align: center;
  }

  .news-container .news-card:nth-child(1) {
    display: none;
  }

  .news-container .news-card {
    width: 330px;
    height: 220px;
  }

  .news-arrow {
    text-align: center;
    margin-top: unset !important;
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    transform: translate(-50%, -50%);
  }

  .news-hover-top {
    padding-top: unset !important;
  }

  .news-hover-top .news-desc-hover1 {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 35px !important;
  }

  .news-hover-top h4 {
    font-size: .87rem;
  }

  .news-arrow .arrowtop::after {
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
  }

  .news-hover-top3 .news-arrow,
  .news-hover-top2 .news-arrow {
    transform: translate(-50%, -50%) !important;
  }

  /* .news-card-section .news-card:hover .news-hover-top3,
  .news-card-section .news-card:hover .news-hover-top2 {
    transform: unset !important;
  } */

  .news-icon {
    margin: unset !important;
    padding-bottom: 10px;
    transform: unset !important;
  }

  .news-icon img {
    max-width: 30px !important;
  }

  .news-inner {
    padding-bottom: unset !important;
    padding-top: unset !important;
    text-align: center;
    margin: 0 auto;
  }

  .news-inner h3.big-h {
    font-size: 1.2rem !important;
    line-height: 1.8rem !important;
    border-bottom: 1px solid #6a6a6a38;
    padding-bottom: 15px;
  }

  .news-inner:nth-child(2) {
    padding: unset !important;
  }

  .news-card-section {
    justify-content: flex-start;
    padding-top: unset !important;
  }

  .news-container {
    max-width: 800px !important;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .news-container .news-card:nth-child(2) {
    margin-top: unset !important;
  }

  .news-container .news-card:nth-child(3) {
    margin-top: unset !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .news-inner:nth-child(2) {
    padding: 1rem 1rem 1rem 1rem;
  }

  .news-card {
    margin-right: 0 !important;
  }

  .news-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .news-container .news-card {
    width: 220px;
    height: 255px;
    ;
  }

  .news-hover-top h4 {
    font-size: .8rem;
  }

  .news-hover-bottom p {
    font-size: .9rem !important;
  }

  .news-icon {
    transform: unset !important;
  }

  .news-icon img {
    max-width: 30px;
  }

  .news-container .news-card .news-card-wrapper.news-card-wrapper1 h5 {
    font-size: .9rem;
  }

  .news-arrow .arrowtop::after {
    width: 35px;
    height: 35px;
  }

  .news-card-section {
    justify-content: flex-start;
  }

  .news-container .news-card:nth-child(1) {
    width: 85px;
    height: 110px;
    order: 1;
    margin-left: 0 !important;
  }

  /* .news-card-section .news-card:hover .news-arrow a {
    transform: translate(-0%, -25%) rotate(180deg);
  } */

  .news-hover-top2 .news-arrow {
    transform: translateY(-25px);
  }
}

@media screen and (min-width: 1500px) {
  .news-container .news-card:nth-child(1) {
    width: 185px;
    height: 185px;
    margin-top: 5rem;
  }

  .news-container .news-card {
    width: 350px;
    height: 350px;
  }

  .news-container .news-card .news-card-wrapper.news-card-wrapper1 h5 {
    font-size: 1.2rem;
  }

  .news-hover-top h4 {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }

  .news-arrow {
    margin-top: 40px;
  }
}


/*# 36) Investor (Homepage) #*/
.investor-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: min-content;
  float: right;
}

.investor-container {
  /* max-width: 1200px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  /* grid-gap: 35px; */
  /* margin: 0 auto; */
  padding: 40px 0;
  z-index: 2;
}

.investor-container .investor-card {
  position: relative;
  max-width: 100%;
  height: auto;
}

.investor-container .investor-card {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.634);
  /* box-shadow: 0 15px 20px rgba(0, 0, 0, 0.355); */
}

.investor-icon img {
  max-width: 100px;
  margin-bottom: 2rem;
}

p.investor-subs {
  color: var(--white-color);
  opacity: .5;
  font-family: "Noto Sans, Light";
  letter-spacing: 1px;
}

.investor-container .investor-card .investor-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.investor-container .investor-card .investor-wrapper.investor-wrapper1 {
  box-sizing: border-box;
  padding: 20px;
  color: var(--white-color);
}

.investor-container .investor-card .investor-wrapper.investor-wrapper1 h4 {
  margin: 0;
  padding: 0;
  /* font-size: 2.2rem; */
  font-size: 2.0rem;
}

.investor-container .investor-card:nth-child(1) {
  background-color: #022c7b;
}

.investor-container .investor-card:nth-child(2) {
  background-color: #b70002;
}

.investor-container .investor-card:nth-child(3) {
  background-color: #8a8d8f;
}

.investor-container .investor-card:nth-child(4) {
  background-color: #84754e;
}


.investor-container .investor-card:nth-child(1) {
  height: 300px !important;
  width: 300px !important;
}

.investor-container .investor-card:nth-child(2) {
  margin-top: 1rem;
}

.investor-container .investor-card:nth-child(3) {
  margin-right: 0rem;
}

.investor-container .investor-card:nth-child(4) {
  margin-top: -2.2rem;
}

@media screen and (min-width: 1500px) {
  .investor-container .investor-card:nth-child(1) {
    height: 400px !important;
    width: 435px !important;
  }

  .investor-container .investor-card:nth-child(2) {
    height: 355px !important;
    width: 385px !important;
    margin-left: auto;
  }

  .investor-container .investor-card:nth-child(3) {
    height: 355px !important;
    width: 385px !important;
    margin-left: auto;
  }

  .investor-container .investor-card:nth-child(4) {
    height: 355px !important;
    width: 385px !important;
    margin-left: auto;
  }

  .investor-container .investor-card .investor-wrapper.investor-wrapper1 h4 {
    /* font-size: 3.5rem !important; */
	font-size: 3.3rem !important;
  }

  p.investor-subs {
    margin-bottom: 3rem !important;
    font-size: 1.2rem !important;
    letter-spacing: 1.75px !important;
  }

  .investor-icon img {
    max-width: 135px !important;
  }
}

@media (min-width: 800px) {
  .investor-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 500px) {
  .investor-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .investor-container {
    max-width: 800px !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: unset !important;
  }

  .investor-container .investor-card {
    width: 175px !important;
  }

  .investor-icon img {
    max-width: 45px;
    margin-bottom: 1rem;
  }

  p.investor-subs {
    margin: 0 0 5px;
    font-size: 12px;
  }

  .investor-container .investor-card .investor-wrapper.investor-wrapper1 h4 {
    /* font-size: 1.3rem; */
	font-size: 1.2rem;
  }
  
  /*
  .investor-container .investor-card:nth-child(1) .investor-wrapper.investor-wrapper1 h4 {
    font-size: 1.4rem !important;
  } */
  
  .investor-container .investor-card:nth-child(1) {
    height: 180px !important;
    width: 175px !important;
    margin-right: 0rem;
  }

  .investor-container .investor-card:nth-child(2) {
    height: 180px !important;
    margin-top: 1rem;
  }

  .investor-container .investor-card:nth-child(3) {
    margin-right: 0rem;
    margin-top: -2.0rem;
  }

  .investor-container .investor-card:nth-child(4) {
    height: 250px !important;
    margin-top: -1.0rem;
  }

  .investor-container .investor-card:nth-child(3),
  .investor-container .investor-card:nth-child(4) {
    height: 160px !important;
  }
}


/*# 37) ABOUT US PAGE #*/
.values-section {
  position: relative;
  min-height: 400px;
}

.values-tab {
  padding: 15px;
}

.values-tab .values-row {
  /* padding: 0 30px; */
  height: 100%;
  min-height: 275px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding-top: 1rem;
}

/*
.values-col {
  padding: 0 20px;
} */

.values-content {
  padding-top: 1rem;
}

.values-content.values-c, .values-content.mission-content {
  padding-left: 3rem;
}

.values-wrapper {
  margin-bottom: 2rem;
  /* padding: 0 30px; */
}

.values-num {
  position: relative;
}

.values-num h3 {
  position: absolute;
  left: -42px;
  display: block;
  top: -5px;
  font-family: 'Stone Sans, SemiBold';
  opacity: .2;
  font-size: 3.2rem;
  font-weight: 500;
}

.values-line::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #acacac54;
  display: block;
  position: absolute;
  max-width: calc((100% - 81.333%) / 1 + 45px);
  margin-top: 5px;
}

.values-point {
  margin-top: 1rem;
}

/*values tab*/
.values-tab-header a {
  margin-right: 12px;
  float: left;
  clear: right;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all .2s ease-in-out;
}

.values-tab-title.values-title-active {
  /* background-color: #191919;
		color: #EBEBE8; */
  transform: scale(1.4);
}

.values-tab {
  display: none;
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
}

.values-tab.tab-active {
  display: block;
}


/* tabs styling */
.values-tab-parent {
  z-index: 2;
  position: relative;
  padding-top: 20px;
  min-height: 35vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.values-tab-header {
  width: max-content;
  margin: 0 auto !important;
  display: flex;
  flex-wrap: wrap;
}

.values-tab-item {
  width: 240px;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
  padding: 20px;
}

.values-tab-title:not(.values-title-active):hover {
  transform: scale(1.2);
}

/*
.values-tab-header:hover .values-tab-header .values-tab-title.values-title-active:not(:hover) {
	transform: unset;
} */

.values-tab-item::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 190px;
  background-color: #022C7B;
  top: 0;
  right: 12px;
}

.values-tab-item.values-tab-item1::before {
  background-color: #B70002;
}

.values-tab-item.values-tab-item2::before {
  background-color: #8A8D8F;
}

.values-tab-item.values-tab-item3::before {
  background-color: #84754E;
}

.values-tab-item h4 {
  z-index: 2;
  padding-bottom: 1rem;
  padding-left: 2rem;
  font-size: 1rem;
}


.values-tab-img {
  position: relative;
}

.values-tab-img img {
  max-width: 170px;
  height: auto;
}

.values-content h3, .values-content h4 {
  font-family: "Stone Sans, Medium";
  text-transform: inherit;
}

.values-content h4.values-line {
  font-family: 'Stone Sans, SemiBold';
  text-transform: inherit;
}

.values-content h4 {
  margin: 0 auto !important;
}

/* swiper styling */
.swiper-pagination.swiper-pagination-about {
  display: none;
}

@media (max-width: 767px) {

  .values-col.vision-col {
    padding: 0 !important;
  }

  .swiper-pagination.swiper-pagination-about {
    display: block !important;
  }

  .values-section {
    min-height: 290px !important;
  }

  .values-wrapper {
    padding: unset !important;
  }

  .values-content h3 {
    font-size: 1rem;
    line-height: 1.8rem;
  }

  .values-tab .values-row {
    margin: unset !important;
  }

  .col-4.values-col {
    padding-bottom: unset !important;
  }

  .row.values-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    min-height: 190px !important;
  }

  .values-tab-parent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .values-tab-header {
    width: max-content;
    margin: 0 auto !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .values-tab-header a {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 10px;
  }

  .values-tab-item {
    width: 150px;
    z-index: 2;
    padding: 11px;
    margin: 0 auto 15px;
  }

  .values-tab-item::before {
    width: 120px;
    height: 90px;
    top: 35px;
    right: 15px;
  }

  .values-tab-item h4 {
    order: 1;
    font-size: .8rem !important;
    padding-left: unset !important;
    transform: translateY(11px);
  }

  .values-tab-img img {
    max-width: 110px !important;
  }

  .values-tab-title.values-title-active {
    transform: scale(1.3);
  }

  .values-tab-item:hover {
    transform: unset !important;
  }

  .values-content h4 {
    font-size: .9rem;
  }

  /*
  .values-content.mission-content h4 {
    padding-left: 3rem;
  } */

  .values-num h3 {
    left: -10px !important;
    top: 0 !important;
    font-size: 2rem !important;
  }

  .values-num.mission-num h3 {
    left: 0 !important;
  }

  .values-content.values-c {
    padding-left: 1.2rem;
  }

  .swiper-container.swiper-container-about {
    margin-right: 0 !important;
  }

  .swiper-container.swiper-container-about .swiper-slide {
    padding: 0 !important;
    background-color: unset !important;
    flex-flow: unset !important;
  }

}

@media (max-width: 360px) {
	.values-tab-item {
		width: 145px !important;
	}
	
}


/* ipad/tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  .values-tab-header {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .values-wrapper {
    padding: unset !important;
  }

  .values-tab-header a {
    margin-right: 45px;
    margin-bottom: 6rem;
  }

  .row.values-row {
    min-height: 230px !important;
  }

  .values-hide-wrapper {
    display: none !important;
  }

  .swiper-container.swiper-container-about {
    display: block !important;
    padding-top: 1rem !important;
  }

  .swiper-container.swiper-container-about .swiper-slide {
    padding: 0 !important;
    background-color: unset !important;
    flex-flow: unset !important;
  }

  .swiper-pagination.swiper-pagination-about {
    display: block !important;
  }
}

@media screen and (min-width : 1500px) {
  .values-tab-header a {
    margin-right: 50px;
  }

  .values-tab-item {
    width: 250px;
  }

  .values-tab-item::before {
    width: 200px;
    height: 200px;
    top: 0;
    right: 0;
  }

  .values-tab-item h4 {
    padding-left: 0;
  }

  .values-tab-img img {
    max-width: 200px;
    height: auto;
  }
}

/* landscape */
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {
  .values-tab-item h4 {
    font-size: .65rem !important;
    padding-left: unset !important;
    transform: translateY(11px);
    order: 1;
  }

  .values-tab-img img {
    max-width: 90px !important;
  }

  .values-tab-item::before {
    width: 100px !important;
    height: 80px !important;
    top: 35px;
    right: 15px;
  }

  .values-tab-item {
    width: 130px !important;
  }

  .values-tab-header a {
    margin-right: 13px !important;
    margin-bottom: 0 !important;
  }
}


/*# 38) Responsive (iPad) #*/
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
	.center {
		width: 100% !important;
	}
	
	.dp-i {
		display: block !important;
	}
	
	.banner-img-center img {
		max-width: 100% !important;
	}
	
	#search-wrapper input[type="text"] {
		font-size: 1rem;
	}
	
	h3.big-h {
		font-size: 2rem;
	}
	
	.m-center-i {
		text-align: center;
		margin: 0 auto !important;
	}
	
	#search-wrapper {
		width: 95% !important;
		padding: 4px !important;
		margin-top: 20px !important;
	}
	
	.di-none {
		display: none !important;
	}
	
	
	#Footer .widgets_wrapper .widget.f-col-2,
	.investor-aside {
		width: 30% !important;
		margin-top: 0;
	}
	
	/*
	.footerr-img {
		text-align: center !important;
	} */
	
	.investor-aside {
		margin-left: unset !important;
	}

	.container.large.footer-wrappp .column:nth-child(1) {
		margin-bottom: 2rem !important;
	}

	.container.large.footer-wrappp .column:nth-child(1),
	.container.large.footer-wrappp .column:nth-child(2) {
		width: 100%;
	}

	.container.large.footer-wrappp {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.widget-wrapp li,
	.widget-wrapp p.font-grey {
		font-size: 82% !important;
	}

	.footerr-img img {
		width: 150px !important;
	}

	.copyright-logos-wrapper {
		position: relative;
		width: 100% !important;
		margin: 0 auto !important;
		float: left !important;
	}

	.copyright-social {
		width: 100% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center;
		flex-wrap: wrap;
		flex-direction: column;
		text-align: center;
		margin: 0 auto;
	}

	.copyright-social h4 {
		width: 100% !important;
	}

	.socmed {
		width: 100% !important;
		text-align: center;
		justify-content: center;
		display: flex;
	}

	.apps-icon {
		transform: unset !important;
		text-align: center;
	}

	.apps-icon img {
		width: 15% !important;
	}

	.cp-desc p {
		font-size: 75% !important;
	}

	p {
		margin: 0 0 15px;
		font-size: 1rem !important;
		line-height: 23px;
		letter-spacing: 0px;
	}

	.column-parent {
		display: flex !important;
		flex-direction: column !important;
	}

	.pb-unset-i {
		padding-bottom: unset !important;
	}

	.pt-unset-i {
		padding-top: unset !important
	}

	.pt-20-i {
		padding-top: 20px !important;
	}

	.pt-30-i {
		padding-top: 30px !important;
	}

	.pt-50-i {
		padding-top: 50px !important;
	}

	.pb-50-i {
		padding-bottom: 50px !important;
	}

	.mw-full-i {
		max-width: 100% !important;
	}

	.center-i {
		margin: auto;
		width: 90% !important;
		text-align: center;
	}

	.column-center {
		display: grid;
		justify-content: center !important;
		align-content: center;
	}

	.j-center-i {
		display: flex;
		justify-content: center;
	}

	.spacing-2rem-m {
		margin: unset !important;
	}

	.text-center-i {
		text-align: center !important;
	}
	
}


/*# 39) Responsive (Mobile) #*/
@media (max-width: 400px) {
	h2 {
		font-size: 24px !important;
		line-height: 40px;
	}
	
}

@media (max-width: 767px) {
	.dm-none {
		display: none !important;
	}
	
	.nav-logo img,
	.nav-logo-inner img {
		max-width: 105px;
	}
	
	.togglefooter h4::after {
		content: '';
		width: 12px;
		height: 12px;
		background-image: url('/SPSetia/media/Revamped-Library/assets/icons/arrow-down-blue.svg');
		display: block;
		position: absolute;
		right: 0;
		top: 15px;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
        transition: transform 350ms cubic-bezier(.455, .03, .515, .955);
	}
	
	.footer-wrappp .togglefooter::after {
		content: '';
		width: 100%;
		height: 1px;
		background-color: #6e6e6e45;
		display: block;
	}
	
	#Footer .container .column:nth-child(1) {
		margin-bottom: 25px;
		justify-content: center;
	}
	
	.container.large.footer-wrappp {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	
	#Footer .widgets_wrapper .widget.f-col-2,
	.investor-aside {
		width: 100% !important;
	}
	
	.footerr-img img {
		max-width: 125px !important;
	}
	
	.footerr-img {
		margin: 0 auto !important;
		text-align: center;
	}
	
	#Footer .widgets_wrapper .column {
		width: 98% !important;
		float: left;
	}
	
	#Footer .widgets_wrapper {
		padding-bottom: 10px !important;
		padding-top: 40px !important;
	}
	
	#Footer .widgets_wrapper .widget {
		padding: unset !important;
		margin-bottom: 0;
	}
	
	.footer-copyright-column {
		padding-top: 0 !important;
	}
	
	.footerr-socmed-d {
		display: flex !important;
		position: unset !important;
		flex-direction: column !important;
		margin: 2rem 0 !important;
		gap: 15px;
		width: 100%;
	}
	
	/*
	.socmed {
		width: 74%;
	} */
	
	.footerr-socmed-d h4 {
		/* width: 26%; */
		padding: unset !important;
		font-size: 1rem !important;
	}
	
	.socmed>a:not(:last-child) {
		margin-right: 2%;
	}
	
	.widget-wrapp h4 {
		margin-bottom: 0 !important;
		position: relative;
		padding: 10px 0
	}
	
	.togglefooter h4 {
		font-size: 1rem !important;
	}
	
	.socmed a {
		width: 2.3rem !important;
	}
	
	.widget-wrapp li,
	.widget-wrapp p.font-grey {
		font-size: 85% !important;
	}
	
	.widget-wrapp ul a {
		font-size: 100% !important;
	}
	
	.widget-wrapp p,
	.widget-wrapp ul {
		max-height: 0;
		overflow: hidden;
		position: absolute;
		margin-bottom: 0 !important;
	}
	
	#Footer .footer_copy .one {
		padding-top: 0;
	}
	
	.widget-wrapp .togglefooter.clickedd3 p,
	.widget-wrapp .togglefooter.clickedd3 ul {
		max-height: 300px !important;
		position: relative;
		margin-bottom: 10px !important;
	}
	
	.togglefooter.clickedd3 h4 {
		padding: 10px 0 7px 0 !important;
	}
	
	.togglefooter.clickedd3 h4::after {
		background-image: url('/SPSetia/media/Revamped-Library/assets/icons/arrow-down-blue.svg');
		transform: rotate(180deg);
	}
	
	.copyright-mobile {
		display: flex;
		align-items: center;
		overflow: auto;
		width: 100%;
	}
	
	.cp-desc p {
		font-size: 69% !important;
	}
	
	.copyright {
		display: none !important;
	}
	
	p {
		margin: 0 0 0.9375rem;
		font-size: .9rem !important;
		line-height: 1.1875rem;
		letter-spacing: 0;
	}
	
	.small-txt {
		font-size: 13px;
	}
	
	p.big {
		font-size: 1rem !important;
	}
	
	h1, h2, h3, 
	h4, h5, h6 {
		margin-bottom: 15px;
	}
	
	h1 {
		font-size: 33px;
		line-height: 38px;
		letter-spacing: 2px;
		margin-bottom: 5px;
	}
	
	h2 {
		font-size: 30px;
		line-height: 40px;
	}
	
	h3 {
		font-size: 1.2rem !important;
	}
	
	.btn-v1, .btn-v4 {
		font-size: 14px;
	}
	
	.btn-v2, .btn-v3 {
		font-size: 11px;
	}
	
	#contact_form_div button[type="submit"],
	#contact_form_div input[type="text"],
	#contact_form_div textarea {
		font-size: 14px;
	}
	
	#contact_form_div #contact_label,
	.custom-tab-header>a {
		font-size: 14px !important;
	}
	
	.contact-header {
		display: flex;
		gap: 5px !important;
	}
	
	.custom-tab-title.tab-title-active {
		transform: translateY(-3px) !important;
	}
	
	.custom-tab-header {
		max-width: 145px !important;
		padding-right: 13px;
	}
	
	.custom-tab-header.openn>a {
		/* padding: 0 10px; */
		margin: 0 4%;
	}
	
	.custom-tab-header::after {
		content: '';
		width: 8px;
		height: 8px;
		top: 3px;
		right: 5px;
		border-width: 1px;
	}
	
	#contact_form_div p {
		color: var(--dark-blue-color);
	}
	
	.openn.custom-tab-header>a {
		min-height: 35px;
	}
	
	.contact-icon img {
		width: 15px;
		top: 3px;
	}
	
	.location-header p {
		font-size: 13px;
	}
	
	.spacing-2rem-m {
		margin: unset !important;
	}
	
	/*
	.big-h {
		font-size: 17px;
		line-height: 1.4;
		letter-spacing: unset !important;
		margin-bottom: unset !important;
		border-bottom: 1px solid #7b7b7b82;
		padding-bottom: 20px;
	} */
	
	.overlapped-container .overlapped-card:nth-child(1) {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.p-unset-m {
		padding: unset !important;
	}
	
	.pb-unset-m {
		padding-bottom: unset !important;
	}
	
	.pb-50-m {
		padding-bottom: 50px !important;
	}
	
	.pt-30-m {
		padding-top: 30px !important;
	}
	
	.pt-20-m {
		padding-top: 20px !important;
	}
	
	.full-w-m {
		width: 100% !important;
	}
	
	.card-details h4 {
		font-size: 18px;
	}
	
	.overlapped-theader {
		text-align: center !important;
	}
	
	.jc-c-m {
		justify-content: center;
	}
	
	.text-center-m {
		text-align: center !important;
	}
	
	.contact-desc {
		text-align: center;
	}
	
	.card-image .card-details p {
		font-size: 14px;
	}
	
	.menu-wrapper {
		display: none !important;
	}
	
	.nav-2 {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		min-height: 200px;
		/* padding-top: 65px; */
		justify-content: space-between;
	}
	
	.nav-2::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 1px;
		background: #bdbaba75;
		top: 0;
		left: 0;
	}
	
	.nav-lg2 {
		width: 100%;
		padding-top: 10px !important;
		/* margin-bottom: unset; */
	}
	
	.search-nav2 {
		width: 100%;
		/* order: -1; */
	}
	
	.nav-2-wrapper li a {
		font-size: .9rem;
		padding: unset;
		margin-right: 9px;
	}
	
	.nav2-socmed {
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	
	.nav2-socmed-wrapper img {
		width: 2.625rem !important;
	}
	
	form.search-nav2 button {
		float: left;
		width: max-content;
		padding: 10px;
		font-size: 16px;
		height: 100%;
	}
	
	form.search-nav2 input[type="text"] {
		padding: 10px 45px 10px 10px !important;
		width: 100%;
	}
	
	.nav2-socmed-wrapper {
		display: flex;
		width: 100%;
		padding-top: 5px;
	}
	
	.nav2-socmed-wrapper>a:not(:last-child) {
		margin-right: 4%;
		margin-bottom: unset !important;
	}
	
	.nav2-socmed p {
		font-size: 13px;
	}
	
	.home-banner1-desc h2,
	.home-banner2-desc h2 {
		letter-spacing: 0.15rem !important;
		line-height: 36px !important;
	}
	
	.nav-outset {
		justify-content: center !important;
	}
	
}


/*# 40) Responsive (General) #*/
@media screen and (min-width: 768px) and (max-width: 1075px) {
	.container.large.footer-wrappp {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	
	.container.large.footer-wrappp .column:nth-child(1),
	.container.large.footer-wrappp .column:nth-child(2) {
		width: 100% !important;
	}
	
	.container.large.footer-wrappp .column:nth-child(1) {
		margin-bottom: 2rem !important;
	}
	
}


/*# 41) Responsive (Landscape) #*/
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {
  .copyright-social {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
  }

  .socmed {
    width: 100% !important;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .apps-icon {
    transform: unset !important;
    text-align: center;
  }

  .apps-icon img {
    width: 15% !important;
  }

  .copyright-mobile {
    display: none;
  }

  .copyright-logos-wrapper {
    position: relative;
    width: 100% !important;
    display: block !important;
  }

  .footerr-socmed-d {
    display: none !important;
  }

  .column-center {
    display: grid;
    justify-content: center !important;
    align-content: center;
  }

  h2 {
    font-size: 30px;
  }

  .news-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .news-wrapper::after {
    display: none;
  }

  .big-header h2 {
    font-size: 1.9rem !important;
  }

  .text-center-m,
  .m-center-m {
    text-align: left !important;
  }

  .column-parent {
    display: flex !important;
    flex-direction: column !important;
  }

  .popup-modal-footer hr,
  .filter-modal-footer hr {
    display: none !important;
  }

}

/* landscape */
@media screen and (min-width: 300px) and (max-width: 1024px) and (orientation: landscape) {

  .breadcrumbs-item-wrapper,
  .breadcrumbs-item {
    border-radius: 50px !important;
  }

}


/* landscape Footer */
@media screen and (max-width: 767px) and (orientation: landscape) {

  #Footer .widgets_wrapper .widget.f-col-2,
  .investor-aside {
    width: 100% !important;
    margin-top: 0;
  }

  .investor-aside {
    margin-left: unset !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

  #Footer .widgets_wrapper .widget.f-col-2,
  .investor-aside {
    width: 30% !important;
    margin-top: 0;
  }

  .investor-aside {
    margin-left: unset !important;
  }

}


/*# 42) Trigger Image #*/
@media (max-width: 767px) {
	.trigger-image {
		opacity: 1 !important;
	}
	
}


/*# 43) Our Location #*/
.location-thumbnail-wrapper {
    display: flex;
    align-items: flex-start !important;
    gap: 8vw !important;
    border-radius: unset !important;
    flex-direction: column !important;
    padding: 10vw 0 5vw 0 !important;
}

.location-subtitle {
    width: 100% !important;
}

.location-image {
    width: 90% !important;
}


@media screen and (min-width: 768px) and (max-width: 1024px) {
    .location-thumbnail-wrapper {
		gap: unset !important;
	}
	
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .location-thumbnail-wrapper {
		gap: unset !important;
    }
}


/*# 44) Our Basis #*/
.basic-content {
    display: flex;
    gap: 4vw !important;
}

.basic-content {
    display: flex;
    gap: 1vw;
    align-items: center;
    margin-bottom: 1rem;
}

.location-thumbnail-wrapper {
    position: relative;
    display: flex;
    gap: 2vw;
    align-items: center;
    width: 100%;
    background-color: #58652E;
    padding: 5vw 0;
    border-radius: 0 100px 100px 0;
}

.location-image {
    width: 45%;
}

.location-subtitle {
    width: 55%;
    text-align: center;
}

.absolute-column {
    position: absolute;
    left: 0;
    bottom: 0;
}

.scrolltrigger-section.absolute-right {
    pointer-events: none;
}

.trigger-image {
    opacity: 0;
}

.product-wrapper {
    position: relative;
}

.product-wrapper img:before {
	content: '';
	width: 100%;
	height: calc(100% - 40px);
	background: transparent linear-gradient(180deg, #58652E 0%, #4F5A294F 0%, #414A224A 68%, #2C3317 100%) 0% 0% no-repeat padding-box;
	position: absolute;
	bottom: 0;
	transition: 0.3s ease-in-out all;
}

.absolute-right .column_image {
	margin: 0;
	float: right;
}

.text-center {
	text-align: center;
}



