html {
	height: 100%;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}

:root {
	--primatyColor: #ed1c24;
	--primary-color: #010712;
	--secondary-color: #818386;
	--bg-color: #FCFDFD;
	--button-color: #3B3636;
	--h1-color: #3F444C;
	--gray: rgb(241, 241, 241);
	--black: rgba(58, 58, 58, 1);
}

.eight h1 {
	position: relative;
	padding: 0;
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-weight: 300;
	font-size: 40px;
	color: var(--primatyColor);
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.eight h4 {
	position: relative;
	padding: 0;
	margin: 0;
	font-family: "Raleway", sans-serif;
	font-weight: 300;
	font-size: 40px;
	color: var(--primatyColor);
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.eight h1 span {
	display: block;
	font-size: 0.5em;
	line-height: 1.3;
}

.eight h1 em {
	font-style: normal;
	font-weight: 600;
}
.eight h4 span {
	display: block;
	font-size: 0.5em;
	line-height: 1.3;
}

.eight h4 em {
	font-style: normal;
	font-weight: 600;
}
/* === HEADING STYLE #1 === */

/* Style 8
----------------------------- */
.eight h1 {
	text-align: center;
    text-transform: uppercase;
    font-size: calc(9px + 1.0vmin);
    letter-spacing: 1px;
    display: grid;
    grid-template-columns: calc(15px + 5vmin) auto calc(15px + 5vmin);
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.eight h4 {
	text-align: center;
    text-transform: uppercase;
    font-size: calc(9px + 1.0vmin);
    letter-spacing: 1px;
    display: grid;
    grid-template-columns: calc(15px + 5vmin) auto calc(15px + 5vmin);
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.eight h2 {
	text-align: center;
	text-transform: uppercase;
	font-size: calc(9px + 1.1vmin);
	letter-spacing: 1px;
	display: grid;
	grid-template-columns: calc(20px + 5vmin) auto calc(20px + 5vmin);
	grid-gap: 22px;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}


.eight h1:after,
.eight h1:before {
	content: " ";
	display: block;
	border-bottom: 2px solid var(--primatyColor);
}
.eight h4:after,
.eight h4:before {
	content: " ";
	display: block;
	border-bottom: 2px solid var(--primatyColor);
}


/* ------- Helper Styles -------------*/
.eight {
	position: relative;
	width: 100%;

	padding: 1em;
	margin: 15px;
	margin: 0 auto 30px auto;
}

.relative_title_pos {
	z-index: 9999;
	top: calc(20px + 11vmin);
}

/* title */

/* nav */
.nav {
	width: 100%;
	height: 65px;
	position: fixed;
	line-height: 65px;
	text-align: center;
	top: 0;
	justify-content: space-between;
	z-index: 9999;
	padding: 0 3rem;
	height: fit-content;
	padding-top: 5px;
	padding-bottom: 5px;
}

body {
	overflow: hidden !important;
}

body[data-aos-duration='new-transition'] [data-aos],
[data-aos][data-aos][data-aos-duration='new-transition'] {
	transition-duration: 4000ms;
}

.nav div.logo {
	float: left;
	width: auto;
	height: auto;
	width: calc(1px + 11vw);
}

.nav img {
	width: 100%;
}

.nav div.logo a {
	text-decoration: none;
	color: #fff;
	font-size: 2.5rem;
}

.nav div.logo a:hover {
	color: #00e676;
}

.nav div.main_list {
	height: 65px;
	float: right;
}

.nav div.main_list ul {
	width: 100%;
	height: 65px;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav div.main_list ul li {
	width: auto;
	height: 65px;
	padding: 0;
	padding-right: 2rem;
}

.nav div.main_list ul li a {
	position: relative;
	text-decoration: none;
	color: #000;
	line-height: 65px;
	font-size: calc(8px + .9vmin);
	font-weight: 600;
	padding-bottom: 10px;
}

.nav div.main_list ul li a::after {
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primatyColor);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s;
}

.nav div.main_list ul li a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav div.main_list ul li .active {
	border-bottom: 3px solid var(--primatyColor);
}


/* Home section */
.navTrigger {
	display: none;
}

.nav {
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

button {
	background: var(--primatyColor);
	color: #fff;
	border: none;
	padding: 12px 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	gap: 8px;
	width: 100%;
	font-size: calc(8px + 1vmin);
	letter-spacing: 1px;
}

.button {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;

}

/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.container {
		margin: 0;
	}
}

@media screen and (max-width: 768px) {
	.navTrigger {
		display: block;
	}

	.nav div.logo {
		margin-left: 15px;
	}

	.nav div.main_list {
		width: 100%;
		height: 0;
		overflow: hidden;
	}

	.nav div.show_list {
		height: auto;
		display: none;
	}

	.nav div.main_list ul {
		flex-direction: column;
		width: 100%;
		height: 100vh;
		right: 0;
		left: 0;
		bottom: 0;
		background-color: var(--primatyColor);
		/*same background color of navbar*/
		background-position: center top;
	}

	.nav div.main_list ul li {
		width: 100%;
		text-align: right;
	}

	.nav div.main_list ul li a {
		text-align: center;
		width: 100%;
		font-size: 3rem;
		padding: 20px;
	}

	.nav div.media_button {
		display: block;
	}
}

/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
	cursor: pointer;
	width: 30px;
	height: 25px;
	margin: 22px auto;
	position: absolute;
	right: 30px;
	top: 0px;
	bottom: 0;
}

.navTrigger i {
	background-color: var(--primatyColor);
	border-radius: 2px;
	content: "";
	display: block;
	width: 100%;
	height: 4px;
}

.navTrigger i:nth-child(1) {
	-webkit-animation: outT 0.8s backwards;
	animation: outT 0.8s backwards;
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
	margin: 5px 0;
	-webkit-animation: outM 0.8s backwards;
	animation: outM 0.8s backwards;
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
	-webkit-animation: outBtm 0.8s backwards;
	animation: outBtm 0.8s backwards;
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
	-webkit-animation: inT 0.8s forwards;
	animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
	-webkit-animation: inM 0.8s forwards;
	animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
	-webkit-animation: inBtm 0.8s forwards;
	animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
	50% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(45deg);
	}
}

@keyframes inM {
	50% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(45deg);
	}
}

@-webkit-keyframes outM {
	50% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(45deg);
	}
}

@keyframes outM {
	50% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(45deg);
	}
}

@-webkit-keyframes inT {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
	}

	50% {
		-webkit-transform: translateY(9px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(9px) rotate(135deg);
	}
}

@keyframes inT {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(9px) rotate(0deg);
	}

	100% {
		transform: translateY(9px) rotate(135deg);
	}
}

@-webkit-keyframes outT {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
	}

	50% {
		-webkit-transform: translateY(9px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(9px) rotate(135deg);
	}
}

@keyframes outT {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(9px) rotate(0deg);
	}

	100% {
		transform: translateY(9px) rotate(135deg);
	}
}

@-webkit-keyframes inBtm {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
	}

	50% {
		-webkit-transform: translateY(-9px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(-9px) rotate(135deg);
	}
}

@keyframes inBtm {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-9px) rotate(0deg);
	}

	100% {
		transform: translateY(-9px) rotate(135deg);
	}
}

@-webkit-keyframes outBtm {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
	}

	50% {
		-webkit-transform: translateY(-9px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(-9px) rotate(135deg);
	}
}

@keyframes outBtm {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-9px) rotate(0deg);
	}

	100% {
		transform: translateY(-9px) rotate(135deg);
	}
}

.affix {
	padding: 0;
	background-color: #fff;
	/* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
	box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 2px;
	z-index: 9999;
	padding: 0 2.8rem;
	height: fit-content;
	padding-top: 5px;
	padding-bottom: 5px;
}

.myH2 {
	text-align: center;
	font-size: 4rem;
}

.myP {
	text-align: justify;
	padding-left: 15%;
	padding-right: 15%;
	font-size: 20px;
}

@media all and (max-width: 700px) {
	.myP {
		padding: 2%;
	}
}

/* end nav */


/* onner page */
.inner_page {
	margin-top: calc(1px + 9vh);
}

.title {
	text-align: center;
	padding: 0 25px;
	margin-bottom: calc(8px + 2vmin);
}

.title span {
	font-size: calc(1px + 1.2vw);
	font-weight: 600;
	color: var(--primatyColor);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: calc(1px + 1.6vh);
	margin: auto;
}

/* prduct sec */
/* .product_sec .outer,.product_sec .container,.product_sec .main-container {
    height: 100vh;
} */
/* .product_sec{
	width: 200%;
	height: 100vh;
	display: flex;
	flex-wrap: nowrap;
} */
.product_sec .main-container {
	display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
}

.product_sec .main-container .item .img-container {
	width: 100%;
}

.product_sec .main-container .item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.product_sec .main-container .item .content h2 {
	font-size: calc(1px + 1.2vw);
	font-weight: 600;
}

/* .product_sec .main-container .item:nth-child(2) .img-container img {
	width: 90%;
}

.product_sec .main-container .item:nth-child(3) .img-container img {
	width: 93%;
} */

/* .product_sec .main-container .item:nth-child(1) .img-container img {
	width: 90%;
}

.product_sec .main-container .item:nth-child(2) .img-container img {
	width: 93%;
}

.product_sec .main-container .item:last-child .img-container img {
	width: 100%;
} */

/* .product_sec .outer {
	width: 100%;
	height: 100vh;
} */
/* .product_sec .main-container .item .main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product_sec .main-container .item .main-container img{
    width: 100%;
} */

/* End */

/* flipbook sec */
.flipbook {
	position: relative;
}

.flipbook_title {
	position: absolute;
	margin: auto;
	top: 0;
	z-index: 9999;
	left: 50%;
	top: calc(10px + 5vw);
	transform: translate(-50%, -50%);
}

/* end */
.slide_one_title {
	margin-top: calc(1px + 4vw);
	margin-left: auto;
	margin-right: auto;
}

.slide_two_title {
	margin-top: unset;
	/* margin-bottom: calc(1px + 4vw); */
}

.title span:after,
.title span:before {
	content: " ";
	display: block;
	background-color: var(--primatyColor);
	height: 1px;
	width: calc(8px + 10vmin);
}

.slide_one_title {
	width: fit-content;
}

body {
	font-family: "Lato", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
	overflow-y: visible;
	position: relative;
	height: unset;
}

.hide {
	display: none !important;
}

html,
body {
	overflow-x: hidden;
	margin: 0;
}

.wrapper {
	width: 500%;
	height: fit-content;
	display: flex;
	flex-wrap: nowrap;
	background: #fff;
}

.wrapper_2 {
	width: 200%;
	display: flex;
	flex-wrap: nowrap;
	z-index: 999 !important;
	height: fit-content!important;
	margin: auto;
}

.firstContainer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.lastContainer {
	display: flex;
	height: 100vh;
	background: yellow;
}

.blue {
	background-color: aquamarine;
}

.red {
	background-color: red;
}

.orange {
	background-color: orange;
}

.purple {
	background-color: purple;
}

.panel {
	width: 100%;
}


/* section first slide */
.slide_one .main-container {
	display: grid;
    gap: calc(1px + 3vw);
    height: 100%;
    align-items: start;
    grid-template-columns: 1fr 2fr;
}

.slide_one .title span {
	font-size: calc(1px + 1.2vw);
	font-weight: 600;
	color: var(--primatyColor);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: calc(1px + 1.6vh);
	margin: auto;
	font-weight: 400;
}

.slide_one .main-container .content h2 {
	color: var(--primatyColor);
	font-weight: 600;
}

.slide_one .main-container .content {
	height: 100%;
}

.slide_one .main-container .content {
	padding-top: calc(1px + 5vw);
	padding-left: calc(1px + 3vw);
}

.slide_one .main-container .img-container {
	width: 100%;
	height: 100%;
}

.slide_one .main-container .img-container img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide_one .main-container .content .title {
	margin-bottom: calc(1px + 1vw);
}

.title_for_side_one span:after {
	display: none;
}

.title_for_side_one span:before {
	height: 1px;
}

/*  */
.sec_8 .main-image-container .item {
	display: flex;
	gap: 20px;
	flex-direction: column;

}

.sec_8 .main-image-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	align-items: center;
	gap: 100px;
}

.sec_8 .main-image-container .item h3 {
	font-size: calc(1px + 1.2vw);
	font-weight: 600;
}

.sec_8 .main-image-container .item .img-container img {
	width: 100%;

}

.sec_8 .main-image-container .item .content {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sec_8 .main-image-container .item .content span {
	background-color: var(--primatyColor);
}

.sec_8 .main-image-container_2 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin-top: 60px;
	width: 80%;
    margin: 0 auto;
	margin-top: calc(5px + 2vmin);

}

.sec_8 .main-image-container_2 img {
	width: 100%;
}

.sec_8 .main-image-container_2 .content h3 {
	color: var(--primatyColor);
	text-align: center;
	font-size: calc(1px + 1.2vw);
	margin-top: 10px;
}

/* sec table */
.table_sec .outer,
.productpage-table,
.product-page-table {
	width: 100%;
}

tbody,
td,
tfoot,
th,
thead,
tr {
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	padding: calc(5px + .5vmin);
}

th {
	background-color: var(--primatyColor);
	color: #fff;
}

td,
tr {
	border: 1px solid #a8a8a8a2;
}

.table_sec .title {
	margin-top: calc(1px + -1vw) !important;
	margin-bottom: calc(1px + 3vw) !important;
}

/* footer */
footer {
	height: fit-content;
	background: #f1f1f1;
	margin-top: calc(1px + 5vw);
	padding: 0 2.8rem;
}

footer .main_footer_container {
	display: grid;
	padding-top: calc(1px + 5vw);
	justify-content: space-between;
	gap: calc(8px + 10vmin);
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

footer .main_footer_container .img-container {
	width: calc(80px + 15vmin);
}

footer .main_footer_container img {
	width: 100%;
}

footer .main_footer_container h3 {
	color: var(--primatyColor);
	font-size: calc(8px + 1vmin);
	margin-bottom: calc(8px + 3vmin);
}

footer .main_footer_container .item {
	padding-left: 0;
	width: 100%;
}

footer .main_footer_container ul {
	padding-left: 0;
	width: 100%;
}

footer .main_footer_container ul li {
	text-decoration: none;
	list-style: none;
	padding-left: 0;
	margin-left: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #8a8a8a5d;
	width: 100%;
}

footer .main_footer_container ul li a,
.copyright a {
	text-decoration: none;
	color: #000;
}

footer a:hover {
	color: var(--primatyColor) !important;
}

footer .copyright {
	text-align: center;
	padding-top: calc(8px + 1vw);
	padding-bottom: calc(8px + 1vw);
}

footer .copyright {
	font-size: calc(8px + .8vmin);
}

footer .copyright a {
	transition: 0.3s;
}

footer .copyright a:hover {
	color: var(--primatyColor);
	transition: 0.3s;
}

footer .main_footer_container ul li a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: calc(8px + .8vmin);
}

footer .main_footer_container ul li a span:first-child {
	color: var(--primatyColor);
	font-size: calc(8px + 1.8vmin);
}

/* blog */
.blog-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: calc(8px + 3vmin);
}

.blog-container p {
	color: #999999;
	font-size: calc(8px + 1.5vmin);
	font-weight: 500;
}

.blog-container .item {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	height: 100%;
}

.blog-container .item img {
	width: 100%;
}

.blog-container .item .content {
	padding: 15px;
}

.blog-container .item .content span {
	color: var(--primatyColor);
}

.blog-container .item .content h3 {
	font-size: calc(8px + 2vmin);
	font-weight: 600;
}

.blog .title {
	margin-top: calc(1px + 3.5vw) !important;
	margin-bottom: calc(1px + 3vw) !important;
}

/* home page */
.video_sec .outer {
	width: 100%;
}

.home_page {
	margin-top: 0 !important;
}

.home_second_sec .main-image-container {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
}

.sec_2 .main-image-container img {
	width: 100%;
}

.home_second_sec .main-image-container .content {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	gap: 30px;
	padding: 30px;
}

.home_second_sec .main-image-container .content p {
	line-height: 1.8;
	text-align: justify;
	font-size: calc(8px + 1vmin);
}

.home_third_sec .main-image-container .items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: flex-end;
}

.home_third_sec {
	height: 100vh;
}

.home_third_sec .main-image-container .items .first_image {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home_third_sec .main-image-container .items .first_image:nth-child(1) {
	z-index: 9;
}

.home_third_sec .main-image-container .items .first_image:nth-child(2) {
	margin-left: -55%;
	z-index: 8;
}

.home_third_sec .main-image-container .items .first_image:nth-child(3) {
	margin-left: -109%;
	z-index: 7 !important;
}

.home_third_sec .main-image-container .items .first_image .content {
	padding: 0;
}

.home_third_sec .main-image-container .items .first_image .content h3 {
	font-weight: 600;
	font-size: calc(8px + 2vmin);
}

.circle {
	display: flex;
	align-items: center;
}

.home_third_sec .main-image-container .items:nth-child(2) {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	gap: 40px;
}

.home_third_sec .main-image-container {
	grid-template-columns: 1fr 1fr !important;
}

.home_third_sec .main-image-container .items:nth-child(2) h3 {
	font-weight: 600;
	font-size: calc(8px + 1.5vmin);
}

.heading_para {
	color: var(--primatyColor);
	font-weight: 600;
	margin: 0;
	padding: 0;
	font-size: calc(14px + 4.5vmin);

}

.subscribe .outer {
	width: 100%;
}

.subscribe .button_group {
	display: flex;
	width: 100%;
	gap: 30px;
}

.subscribe .button_1 {
	width: 100%;
}

.subscribe {
	padding: 30px;
	margin-top: 60px;
}

.subscribe .content {
	padding: 0px !important;
}

.subscribe h1 {
	font-size: calc(14px + 7vmin);
}
.subscribe h4 {
	font-size: calc(14px + 7vmin);
}

.subscribe button .material-symbols-outlined {
	font-size: calc(8px + 5vmin);
}

.subscribe a:nth-child(2) .button_1 button {
	background-color: #333333 !important;
}

.subscribe a {
	text-decoration: none;
	width: 100%;
}

.content-button {
	display: flex;
	flex-direction: column;
	align-items: baseline;
}

.content-button p {
	margin: 0;
	padding-bottom: 5px;
}

.content-button p:nth-child(2) {
	font-size: calc(8px + 2vmin);
	font-weight: 800;
}

.sec_5 img {
	width: 100%;
}

/* about sec */
.about_page {
	margin-top: calc(40px + 10vmin);
	padding-left: 30px;
	padding-right: 30px;
}

.about_heading {
	font-size: calc(8px + 6vmin);
	margin-bottom: calc(8px + 5vmin);
}

.about_page .section {
	margin-bottom: calc(10px + 20vmin) !important;
}

.about_page .main-image-container {
	grid-template-columns: 1fr 1fr !important;
	gap: 30px;
	align-items: flex-start;
}

/* policy page */
.policy_page {
	margin-top: 0;
}

.policy_page .header_image .img-container {
	height: calc(80px + 45vmin);
}

.policy_page .header_image .img-container img {
	height: 100%;
	width: 100%;
}

.policy_page .content {
	position: relative;
	top: 67%;
}

.policy_page .content h1 {
	font-size: calc(8px + 7vmin);
	color: #fff;
}

.policy_page .content h4 {
	font-size: calc(8px + 7vmin);
	color: #fff;
}

.policy_page .btContentHolder {
	padding-top: 60px;
}

.sec_third h3 {
	font-size: calc(8px + 2vmin);
	font-weight: 700;
}
