@font-face {
    font-family: 'GothamRnd';
    src: url('../fonts/GothamRnd-Bold.woff2') format('woff2'),
         url('../fonts/GothamRnd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'GothamRnd';
    src: url('../fonts/GothamRnd-Book.woff2') format('woff2'),
         url('../fonts/GothamRnd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GothamRnd';
    src: url('../fonts/GothamRnd-BookItalic.woff2') format('woff2'),
         url('../fonts/GothamRnd-BookItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'GothamRnd';
    src: url('../fonts/GothamRnd-Medium.woff2') format('woff2'),
         url('../fonts/GothamRnd-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

:root {
	--bs-body-font-family: 'GothamRnd', sans-serif;
	--bs-body-color: #5a5a5a;
	--bs-body-color-rgb: 90, 90, 90;
	--bs-primary-rgb: 6, 180, 233;
	--bs-success-rgb: 147, 200, 67;
	--bs-info-rgb: 51, 130, 196;
	--bs-warning-rgb: 255, 217, 57;
	--bs-border-color: #dddddd;
	--bs-light-rgb: 235, 235, 235;
	--bs-border-radius-xxl: 1.4rem;
	--c1: #06b4e9;
	--c2: #93c843;
	--c3: #3382c4;
	--c4: #04679f;
}
[data-bs-theme=dark] {
	color-scheme: dark;
	--bs-body-bg: #202225;
	--bs-body-bg-rgb: 32, 34, 37;
	--bs-body-color: #ececec;
	--bs-body-color-rgb: 236,236,236;
	--bs-primary-rgb: 146, 230, 255;
	--bs-success-rgb: 169, 222, 89;
	--bs-info-rgb: 100, 183, 252;
	--bs-warning-rgb: 255, 217, 57;
	--bs-danger-rgb: 240, 109, 68;
	--c1: #92e6ff;
	--c2: #a9de59;
	--c3: #64b7fc;
}

::selection {
	background-color: #222222;
	color: #fff;
}
html[data-bs-theme="dark"] ::selection {
	background-color: #fff;
	color: #222222;
}
html[data-bs-theme="grey"] {
	filter: grayscale(1) !important;
}
strong {
	font-weight: 500;
}


/* ------ header ------ */
#logo {
	filter: grayscale(1) brightness(3);
	height: 80px;
	transition: filter 0.3s ease, height 0.3s ease;
}
#navBarMain.scroll #logo {
	filter: grayscale(0) brightness(1);
	height: 66px;
}
[data-bs-theme=dark] #navBarMain.scroll #logo {
	filter: grayscale(1) brightness(3);
}
.bannerImg {
	height: 76svh;
}
.bannerImg::after {
	background-color: rgba(31, 109, 173, .8);
	content: "";
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}
.banTxt {
	bottom: 0;
	left: 0;
	padding-left: 6rem;
	padding-bottom: 8rem;
	position: absolute;
	width: 50%;
	z-index: 1;
}
.curve {
	height: 100%;
	position: absolute;
	right: -1px;
	top: 0;
	width: auto;
}
.curve img {
	height: calc(100% + 1px);
}
.curve.v2 img {
	height: calc(140% + 1px);
}
.curve.v3 img {
	filter: grayscale(1) contrast(1.2);
	mix-blend-mode: luminosity;
}
.carousel-indicators [data-bs-target] {
	height: 5px;
}
@media (min-resolution: 1.5dppx) {
	.banTxt {
		zoom: .7;
	}
}
@media (max-width:1400px) {
	#logo {
		height: 70px;
	}
	.banTxt .display-5 {
		font-size: 2.5rem;
	}
	.banTxt {
		padding-left: 5rem;
		padding-bottom: 5rem;
		width: 60%;
	}
	.banTxt .fs-3 {
		font-size: 1.4rem !important;
	}
}
@media (max-width:1200px) {
	.banTxt {
		padding-left: 4rem;
		padding-bottom: 4rem;
	}
	.banTxt .display-5 {
		font-size: 2.2rem;
	}
	.banTxt .fs-3 {
		font-size: 1.15rem !important;
	}
}
@media (max-width:992px) {
	#navBarMain #logo {
		filter: grayscale(0) brightness(1) !important;
	}
	[data-bs-theme=dark] #navBarMain #logo {
		filter: grayscale(1) brightness(3) !important;
	}
	.curve {
		right: -42px;
	}
	.curve.v2 {
		right: -15px;
	}
}
@media (max-width:768px) {
	#logo { height: 55px !important }
	.bannerImg {
		height: initial;
	}
	.bannerImg img {
		aspect-ratio: 750 / 600;
	}
	.banTxt {
		padding: 3rem 3rem 4rem 3rem;
		width: 80%;
	}
}
@media (max-width:576px) {
	.banTxt {
		padding: 2rem 2rem 3rem 2rem;
		width: 100%;
	}
	.banTxt .display-5 { font-size: 1.8rem }
	.banTxt .fs-3 { font-size: 1.12rem !important }
	.banTxt .btn-success { zoom: .9 }
	.bannerImg img {
		aspect-ratio: 750 / 850;
	}
}


/* ------ navBar ------ */
#navBarMain {
	position: fixed;
	z-index: 1020;
}
#navBarMain.scroll {
	background-color: #fff;
	box-shadow: 0 0 30px rgba(40, 40, 40, .2);
}
[data-bs-theme=dark] #navBarMain.scroll {
	background-color: #202225;
	box-shadow: 0 0 0 1px #3f4247;
}
#navBarMain .nav-link {
	--bs-nav-link-color: #fff;
	font-size: 1.08rem;
	font-weight: 600;
	padding-left: 1.1rem;
	padding-right: 1.1rem;
	position: relative;
	text-transform: uppercase;
}
#navBarMain.scroll .nav-link {
	--bs-nav-link-color: #7c7c7c;
}
[data-bs-theme=dark] #navBarMain.scroll .nav-link {
	--bs-nav-link-color: #cccccc;
}
#navBarMain .nav-link:hover {
	color: var(--c2);
}
#navBarMain .nav-link:focus {
	color: #fff;
}
#navBarMain.scroll .nav-link:focus {
	color: var(--c2);
}
#navBarMain .navbar-nav .nav-link.active,
#navBarMain .navbar-nav .nav-link.show {
	color: var(--c2);
}
#navBarMain .navbar-nav .nav-link.active::after {
	background-color: var(--c2);
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 50%;
	position: absolute;
	top: -3px;
	transform: translateX(-50%);
	width: 8px;
}
.navbar-toggler:focus {
	box-shadow: 0 0 0 .2rem rgba(184, 184, 184, .4);
}
@media (max-width:1400px) {
	#navBarMain .nav-link {
		font-size: 1rem;
		padding-left: .8rem;
		padding-right: .8rem;
	}
}
@media (max-width:992px) {
	#navBarMain {
		background-color:#fff;
		position: relative;
	}
	[data-bs-theme=dark] #navBarMain {
		background-color:#202225;
	}
	#navBarMain .nav-link {
		--bs-nav-link-color: #7c7c7c !important;
		font-size: 1.08rem;
	}
	[data-bs-theme=dark] #navBarMain .nav-link {
		--bs-nav-link-color: #cccccc !important;
	}
	#navBarMain .nav-link:focus {
		color: #7c7c7c !important;
	}
	#navBarMain .navbar-nav .nav-link.active::after {
		height: 7px;
		left: -1px;
		top: 17px;
		transform: none;
		width: 7px;
	}
}


/* ------ btn ------ */
.btn {
	font-size: 1.15rem;
	font-weight: 500;
	padding: .6rem 1.1rem;
}
.btn-primary {
  --bs-btn-bg: var(--c1);
  --bs-btn-border-color: var(--c1);
  --bs-btn-hover-bg: var(--c3);
  --bs-btn-hover-border-color: var(--c3);
  --bs-btn-active-bg: var(--c3);
  --bs-btn-active-border-color: var(--c3);
}
.btn-outline-primary {
	--bs-btn-color: var(--c1);
	--bs-btn-border-color: var(--c1);
	--bs-btn-hover-bg: var(--c1);
	--bs-btn-hover-border-color: var(--c1);
	--bs-btn-active-bg: var(--c1);
	--bs-btn-active-border-color: var(--c1);
	--bs-btn-disabled-color: var(--c1);
	--bs-btn-disabled-border-color: var(--c1);
}
.btn-info {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--c3);
	--bs-btn-border-color: var(--c3);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--c1);
	--bs-btn-hover-border-color: var(--c1);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--c3);
	--bs-btn-active-border-color: var(--c3);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--c3);
	--bs-btn-disabled-border-color: var(--c3);
}
html[data-bs-theme="dark"] .btn-info {
	--bs-btn-color: var(--bs-body-bg);
	--bs-btn-hover-color: var(--bs-body-bg);
}
.btn-outline-info {
	--bs-btn-color: var(--c3);
	--bs-btn-border-color: var(--c3);
	--bs-btn-hover-bg: var(--c3);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-border-color: var(--c3);
	--bs-btn-active-bg: var(--c3);
	--bs-btn-active-border-color: var(--c3);
	--bs-btn-active-color: #fff;
	--bs-btn-disabled-color: var(--c3);
	--bs-btn-disabled-border-color: var(--c3);
}
.btn-success {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--c2);
	--bs-btn-border-color: var(--c2);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--c1);
	--bs-btn-hover-border-color: var(--c1);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--c1);
	--bs-btn-active-border-color: var(--c1);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--c1);
	--bs-btn-disabled-border-color: var(--c1);
}
html[data-bs-theme="dark"] .btn-success {
	--bs-btn-color: var(--bs-body-bg);
	--bs-btn-hover-color: var(--bs-body-bg);
}
.btn-outline-light {
	--bs-btn-hover-color: var(--c3);
}
.btn-outline-warning {
	--bs-btn-color: #f3e2b4;
	--bs-btn-border-color: #f3e2b4;
	--bs-btn-hover-bg: #f3e2b4;
	--bs-btn-hover-border-color: #f3e2b4;
	--bs-btn-active-bg: #f3e2b4;
	--bs-btn-active-border-color: #f3e2b4;
	--bs-btn-disabled-color: #f3e2b4;
	--bs-btn-disabled-border-color: #f3e2b4;
}
.btn-outline-success {
	--bs-btn-color: var(--c2);
	--bs-btn-border-color: var(--c2);
	--bs-btn-hover-bg: var(--c2);
	--bs-btn-hover-border-color: var(--c2);
	--bs-btn-active-bg: var(--c2);
	--bs-btn-active-border-color: var(--c2);
	--bs-btn-disabled-color: var(--c2);
	--bs-btn-disabled-border-color: var(--c2);
}
.btn-light {
	--bs-btn-color: var(--c3);
	--bs-btn-hover-bg: var(--c3);
	--bs-btn-hover-border-color: var(--c3);
	--bs-btn-hover-color: #fff;
}
.btn-close:focus {
	box-shadow: 0 0 0 .22rem rgba(40, 40, 40,.12);
}


/* ------ misc ------ */
.fs-5b {
	font-size: 1.1rem;
}
.bg-gradient3 {
	background: linear-gradient(90deg, #2182c1 0%, #166aa8 100%);
}
.bg-gradient4 {
	background: linear-gradient(90deg, #93c843 0%, #7eb32f 100%);
}
.mainPad {
	padding-bottom: 6rem;
	padding-top: 6rem;
}
.bg-body-secondary {
	background-color: #f4f4f4 !important;
}
html[data-bs-theme="dark"] .bg-body-secondary {
	background-color: #17191b !important;
}
.shadowFc {
	box-shadow: 0 0 30px rgb(40, 40, 40, .15);
}
html[data-bs-theme="dark"] .shadowFc {
	box-shadow: 0 0 30px rgb(200, 200, 200, .15);
}
.textBalance {
	text-wrap: balance;
}
.smallx2 {
	font-size: .8rem;
}
.catalogueImg {
	max-height: 245px;
}
@media (max-width:1400px) {
	.fs-5 { font-size: 1.2rem !important }
	.mainPad {
		padding-bottom: 4rem;
		padding-top: 4rem;
	}
	.catalogueImg {
		height: 224px;
		width: 224px;
	}
}
@media (max-width:992px) {
	.mainPad {
		padding-bottom: 2rem;
		padding-top: 2rem;
	}
	.mainPad.v2 {
		padding-bottom: 2rem;
		padding-top: 0;
	}
	.d5Fc {
		font-size: calc(1.6rem + 2.1vw) !important;
		overflow-wrap: break-word;
		text-transform: initial !important;
		word-wrap: break-word;
	}
}
@media (max-width:576px) {
	.catalogueImg {
		height: 200px;
		width: 200px;
	}
}


/* ------ links ------ */
.link-dark {
	color: #5a5a5a !important;
}
html[data-bs-theme="dark"] .link-dark {
	color: #ececec !important;
}
.link-light {
	color: #fff !important;
}
.link-light:hover {
	color: #d2f0a4 !important;
}
.link-info:hover {
	color: var(--c1) !important;
}
.link-success:hover {
	color: #7fb331 !important;
}


/* ------ pIcon ------ */
.pIcon {
	background-color: var(--c3);
	background: linear-gradient(110deg, rgb(51, 130, 196) 0%, rgb(147, 200, 67) 100%);
	border-radius: 50%;
	height: 300px;
	position: relative;
	width: 300px;
}
.pIcon::after {
	border: 1px solid #d1d1d1;
	border-radius: 50%;
	bottom: -12px;
	content: '';
	left: -12px;
	position: absolute;
	right: -12px;
	top: -12px;
}
.pIcon img {
	aspect-ratio: 300 / 300;
	border: 6px solid transparent;
	border-radius: 50%;
}
.prLink img {
	border: 6px solid transparent;
	transition:all 0.3s ease;
}
.prLink:hover img {
	transform: scale(.97);
}
.prLink h2 {
	transition:all 0.3s ease;
}
.prLink:hover h2 {
	color: var(--c2) !important;
}
@media (max-width:1400px) {
	.pIcon {
		height: 230px;
		width: 230px;
	}
}
@media (max-width:992px) {
	.wrapCircles .h3 {
		font-size: 1.5rem;
	}
}
@media (max-width:768px) {
	.wrapCircles .h3 {
		font-size: 1.65rem;
	}
	.pIcon {
		height: 224px;
		width: 224px;
	}
}


/* ------ whatsapp ------ */
#waBtn {
	background: rgb(37,211,102) none repeat scroll 0% 0% !important;
	box-shadow: 0 0 0 3px rgba(255,255,255,.95);
	border-radius: 50%;
	bottom: 20px;
	height: 50px;
	overflow: hidden;
	position: fixed;
	padding: 5px;
	right: 20px;
	transition: all 0.5s ease 0s;
	width: 50px;
	z-index: 200;
}
[data-bs-theme=dark] #waBtn {
	box-shadow: 0 0 0 3px rgba(73, 76, 82, .95);
}
@media (max-width:768px) {
	#waBtn {
		bottom: 12px;
		height: 42px;
		right: 12px;
		width: 42px;
	}
}


/* ------ logos ------ */
.wrapLogos a:hover {
	border-color: transparent !important;
	box-shadow: 0 0 0 2px var(--c2);
}
.descText {
	color: #959595;
}
#logoC1 {
	height: 100%;
	margin: auto;
	max-width: 210px;
}
#logoC2 {
	height: 154px;
	margin: auto;
}
#logoC3 {
	height: 86px;
	margin: auto;
}
@media (max-width:768px) {
	.wrapLogos a {
		min-height: 154px;
	}
	#logoC1 {
		max-width: 180px;
	}
	#logoC2 {
		max-height: 120px;
	}
}


/* ------ bannerMid ------ */
.bannerMid .imgBn {
	filter: grayscale(1);
	mix-blend-mode: soft-light;
	opacity: .5;
}
.midIcon {
	width: 160px;
}
[data-bs-theme=dark] .midIcon {
	filter: invert(100%);
}
[data-bs-theme=dark] .bannerMid .text-white {
	color: #202225 !important;	
}
@media (max-width:768px) {
	.midIcon {
		width: 120px;
	}
	.bannerMid .h1 {
		  font-size: calc(1.25rem + 1.5vw);
	}
	.bannerMid .fs-4 {
		font-size: calc(1.15rem + .3vw) !important;
	}
}


/* ------ btTop ------ */
.btTop {
	background-color: rgba(60, 60, 60, .4);
	backdrop-filter: blur(5px);
	border: none;
	border-radius: .5rem;
	bottom: 27px;
	color: #fff;
	display: none;
	font-size: 1rem;
	height: 36px;
	line-height: 35px;
	outline: none;
	position: fixed;
	right: 86px;
	text-align: center;
	transition: all 0.3s ease;
	width: 36px;
	z-index: 1040;
}
.btTop:hover {
	background-color: var(--c3);
	color: #fff;
}
@media (max-width:768px) {
	.btTop {
		bottom: 17px;
		height: 32px;
		line-height: 31px;
		right: 66px;
		width: 32px;
	}
}


/* ------ blogBox ------ */
.blogBox {
	margin-top: -2rem;
	width: 88%;
}
.wrapBlog img {
	aspect-ratio: 300 / 210;
}
.wrapBlog a:hover .blogBox,
.wrapBlog2 a:hover .blogBox {
	box-shadow: 0 0 0 2px var(--c3) !important;
}
[data-bs-theme=dark] .wrapBlog .bg-white,
[data-bs-theme=dark] .wrapBlog2 .bg-white {
	background-color: #1b1d1f !important;
}


/* ------ blogBox ------ */
.catImg {
	aspect-ratio: 300 / 300;
}


/* ------ footer ------ */
footer .fa-arrow-up-right-from-square {
	margin-left: 6px;
	opacity: .6;
	position: relative;
	top: -1px;
}
footer .link-light:hover {
	color: #b4e36d !important;
}
.footArrow {
	margin-top: 6px;
}
#logo2 {
	fill: #fff;
	height: 80px;
}
@media (max-width:768px) {
	#logo2 { height: 68px }
}


/* ------ access ------ */
#accessBtn {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, .9);
	border: none;
	color: var(--bs-body-color);
	font-size: 3rem;
	height: 48px;
	left: 14px;
	line-height: 0;
	margin: 6px 0 0 0;
	outline: none;
	padding: 0;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	width: 48px;
	z-index: 100001;
}
html[data-bs-theme="dark"] #accessBtn {
	background-color: var(--bs-body-bg) !important;
	box-shadow: 0 0 0 2px rgba(40, 40, 40, .9);
}
#accessBtn:hover {
    color: #393939;
}
html[data-bs-theme="dark"] #accessBtn:hover {
    color: var(--c1);
}

#optionsMenu {
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0 0 15px rgba(52, 52, 52, .2);
	left: -470px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	width: 310px;
	z-index: 1000000;
}
html[data-bs-theme="dark"] #optionsMenu,
html[data-bs-theme="dark"] #optionsMenu .bg-white {
    background-color: #1c1e20 !important;
}
html[data-bs-theme="dark"] #optionsMenu .text-white {
    color: #202225 !important;
}

#optionsMenu .list-group-item:hover {
    background-color: #f7faff;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item:hover {
    background-color: #17191b;
}
#optionsMenu .list-group-item.active {
    --bs-list-group-active-bg: #ebfaff;
    --bs-list-group-active-color: var(--c3);
    --bs-list-group-active-border-color: #abcfdb;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item.active {
    --bs-list-group-active-bg: #2c3033;
    --bs-list-group-active-color: #ddebff;
    --bs-list-group-active-border-color: #767a7c;
}
#optionsMenu .list-group-item.active:hover {
    background-color: #f7faff;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item.active:hover {
    background-color: #17191b;
}
html[data-bs-theme="dark"] #closeOptions {
    color: #202225 !important;
}
@media only screen and (max-width:1200px) {
    #accessBtn {
        bottom: 12px;
		height: 38px;
		font-size: 2.375rem;
		left: 12px;
        top: initial;
        transform: initial;
		width: 38px;
    }
    #optionsMenu {
        bottom: 12px;
        top: initial;
        transform: initial;
    }
}


/* ------ bannerInside ------ */
.bannerInside {
	height: 65svh;
}
.bannerInside::after {
	background-color: rgba(31, 109, 173, .8);
	content: "";
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}
.banItxt {
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 1;
}
@media (max-width:768px) {
	.bannerInside {
		border-width: 7px;
		height: initial;
	}
	.bannerInside .background {
		aspect-ratio: 750 / 600;
	}
}
@media (max-width:576px) {
	.bannerInside .background {
		aspect-ratio: 750 / 700;
	}
}


/* ------ inside ------ */
.aside {
	width: 320px;
}
#wrapSubmenu img {
	bottom: -50px;
	height: 280px;
	opacity: .04;
	position: absolute;
	right: -30px;
	z-index: 0;
}
@media (max-width:1400px) {
	.aside {
		width: 290px;
	}
}
@media (max-width:992px) {
	.aside {
		border-bottom: 1px solid #ddd;
		border-right: none;
		width: initial;
	}
	.aside.v2 {
		left: -1.5rem;
		position: relative;
		width: calc(100% + 3rem);
	}
	.internalTitle {
		bottom: 40px;
		padding: .7rem 2rem .7rem 2rem;
	}
}


/* ------ internalBanner ------ */
.internalBanner2 {
	background-color: rgba(31, 109, 173, 1);
}
.internalBanner2 .row {
	margin-top: 5rem;
}
.internalBanner2 .banner {
	filter: grayscale(1);
	height: 100%;
	left: 0;
	opacity: .1;
	position: absolute;
	top: 0;
	width: 100%;
}
@media (max-width:992px) {
	.internalBanner2 .row { margin-top: 0 }
}
@media (max-width:768px) {
	.internalBanner2 { border-width: 7px }
}


/* ------ insideMenu ------ */
.insideMenu .nav-link {
	color: #fff;
	font-size: 1.12rem;
	font-weight: 500;
	padding-bottom: .6rem;
	padding-top: .6rem;
}
html[data-bs-theme="dark"] .insideMenu .nav-link {
	color: #202225;
}
.insideMenu .nav-link:hover span {
	text-decoration: underline;
	text-underline-offset: 7px;
	text-decoration-color: #aadf5c;
}
.insideMenu .nav-link i {
	opacity: .5;
	margin-top: 6px;
}
.insideMenu .nav-link.active {
	color: #fff;
}
.insideMenu .nav-link.active span {
	text-decoration: underline;
	text-underline-offset: 7px;
}
html[data-bs-theme="dark"] .insideMenu .nav-link.active {
	color: #202225;
}
.insideMenu .nav-link.active i {
	opacity: 1;
}
@media (max-width:768px) {
	.insideMenu .nav-link {
		font-size: 1.02rem;
	}
}


/* ------ toggleSubmenuBtn ------ */
#toggleSubmenuBtn {
	background-color: rgba(255, 255, 255, .25);
	border: none;
	color: var(--bs-body-color);
	font-size: 1.1rem;
	font-weight: 500;
	position: relative;
}
[data-bs-theme=dark] #toggleSubmenuBtn {
	background-color: transparent;
}
#toggleSubmenuBtn .fas {
	color: var(--c2);
	transition: transform 0.3s ease;
}
#toggleSubmenuBtn.collapsed .fas {
	transform: rotate(0deg);
}
#toggleSubmenuBtn:not(.collapsed) .fas {
	transform: rotate(-180deg);
}
@media (max-width:768px) {
	#toggleSubmenuBtn {
		font-size: 1.05rem;
	}
}


/* ------ mainText ------ */
.embedContainer {
	border-radius: 1.1rem;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.embedContainer.map {
	padding-bottom: 70%;
}
.embedContainer iframe,
.embedContainer object,
.embedContainer embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mainText p + h2,
.mainText p + h3,
.mainText p + h4,
.mainText ul + h2,
.mainText table + h2 {
	margin-top: 1.8rem;
}
.mainText h3 + h4 {
	margin-top: 1.4rem;
}
.mainText p:last-child {
	margin-bottom: 0;
}
.mainText figure {
	width: 100%;
}
.mainText figure img {
	border-radius: 1.2rem;
	height: auto;
	width: 100%;
}
.mainText figcaption {
	font-size: .875em;
	font-style: italic;
	margin-top: .3rem;
}
.mainText .embed-container {
	margin-bottom: 1rem;
}
.mainText .embed-container + h2,
.mainText .embed-container + h3,
.mainText .embed-container + h4 {
	margin-top: 2rem;
}
.mainText a {
	color: var(--c3);
	font-weight: 500;
}
.mainText a:hover {
	color: var(--c2);
}
.mainText ul {
	list-style: none;
	margin: 0 0 1.5rem 0;
	padding: 0 0 0 .5rem;
}
.mainText > ul:last-child {
	margin: 0;
}
.mainText ul li {
	padding: 2px 0 2px 20px;
	position: relative;
}
.mainText ul li::before {
	content: "\f111";
	color: var(--c2);
	font: var(--fa-font-solid);
	font-size: .5rem;
	left: 0;
	position: absolute;
	top: 12px;
}
.mainText .list-group li::before {
	top: 18px;
}
.mainText .text-right {
	text-align: right;
}
.mainText figure.table {
	overflow-x: auto;
}
.mainText .table {
	--bs-table-bg: transparent;
	--bs-table-color: #333e48;
}
.mainText table {
	margin-bottom: 1.9rem;
	width: 100%;
}
.mainText table:last-child {
	margin-bottom: 0;
}
@media (max-width:768px) {
	.mainText ul {
		margin: 0 0 .8rem 0;
	}
	.mainText .w-50 {
		width: 100% !important
	}
}
@media (max-width:576px) {
	.embedContainer.map {
		padding-bottom: 95%;
	}
}


/* ------ accordion ------ */
.accordion {
	--bs-accordion-active-color:#fff;
	--bs-accordion-active-bg:var(--c2);
	--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(147, 200, 67, .25);
	--bs-accordion-border-radius:1rem;
	--bs-accordion-inner-border-radius: 1rem;
}
html[data-bs-theme="dark"] .accordion {
	--bs-accordion-active-bg:#17191b;
	color: rgb(147, 200, 67);
	color: #93c843;
}
.accordion-button::after {
	--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2393c843'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}


/* ------ pagination ------ */
.paginationInside .page-link {
	border: 1px solid #ddd;
	color: var(--bs-body-color);
	min-width: 36px !important;
}
.active > .page-link,
.page-link.active {
	background-color: var(--c2);
	border-color: var(--c2);
	color: #fff;
	font-weight: 500;
	text-align: center;
}
html[data-bs-theme="dark"] .active > .page-link,
html[data-bs-theme="dark"] .page-link.active {
	color: var(--bs-body-bg);
}
.page-link:focus {
	box-shadow: var(--bs-pagination-focus-box-shadow);
	box-shadow: 0 0 0 .25rem rgba(186, 186, 186, .2);
}


/* ------ form-control ------ */
.form-control {
	border-color: #d2d2d2;
	font-size: 1.06rem;
	padding: .6rem 1.1rem;
}
.form-select {
	border-color: #d2d2d2;
	font-size: 1.06rem;
	padding: .6rem 2.25rem .6rem 1.1rem;
}
.form-label {
	color: #7fb331;
	font-weight: 500;
	margin-bottom: .3rem;
	padding-left: .3rem;
}
.form-control:focus,
.form-select:focus {
	border-color: var(--c3);
	box-shadow: 0 0 0 .25rem rgba(51, 130, 196, .22);
}
.form-select.dark {
	background-color: rgba(34, 34, 34, .3);
	border-color: rgba(34, 34, 34, .05);
	color: #fff;
	padding: .375rem 2.35rem .375rem .85rem;
}
.form-select option {
	background-color: #fff;
	color: #5a5a5a;
}


/* ------ table ------ */
.table-striped > tbody > tr:nth-of-type(2n+1) > * {
	background-color: #ecfbff;
}
[data-bs-theme=dark] .table-striped > tbody > tr:nth-of-type(2n+1) > * {
	background-color: #1b1d1f;
}


/* ------ breadcrumb ------ */
.breadcrumb a {
	color: var(--bs-body-color);
}
[data-bs-theme="dark"] .breadcrumb a {
	color: rgba(255, 255, 255, .9);
}
.breadcrumb a:hover {
	color: var(--c3);
}
[data-bs-theme="dark"] .breadcrumb a:hover {
	color: #d5ff96;
}
[data-bs-theme="dark"] .breadcrumb-item.active {
	color: #fff;
}
.hiddenText {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 20ch;
}


/* ----------- google -----------*/
#google_translate_element .goog-te-combo {
    background-color: #fff;
    border: 1px solid #acacac;
    border-radius: 4px;
    font-size: 1rem;
    padding: .7rem 1rem;
    text-transform: capitalize;
    width: 100%;
}
[data-bs-theme="dark"] #google_translate_element .goog-te-combo {
    background-color: #202225;
}