@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --trm-white: #FFFFFF;
	--trm-black: #000000;
	--trm-blue: #2232AC;
	--trm-cream: #F5F4F0;
	--trm-yellow:#FFB700;
	--trm-light-yellow: #FFC73A;
	--trm-dark-blue: #1425A5;
	--trm-light-blue: #3A4FEF;
}

.trm-blue {
	color: var(--trm-blue);
}

.trm-yellow {
	color: var(--trm-yellow);
}

.trm-light-yellow {
	color: var(--trm-light-yellow);
}

.trm-phone-sizer {
	font-size: 2.8rem;
}


html {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	-o-hyphens: none;
	hyphens: none;
}





body {
	font-family: 'Poppins', sans-serif;
	font-size: medium;
	color: var(--trm-black);
}





a {
	text-decoration: underline dotted 1px;
	color: inherit;
}

a:hover {
	text-decoration: underline solid 1px;
	color: inherit;
}

a.no-decor {
	text-decoration: none;
}

a.no-decor:hover {
	text-decoration: none;
}





.trm-width-limiter {
	max-width: 1399px;
}

.trm-section-area {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.trm-section-area h2 {
	font-weight: 500;
	font-size: 2.5rem;
	line-height: 130%; /* 52px */
	letter-spacing: -0.6px;
}

.trm-section-area h3 {
	font-weight: 500;
	font-size: 1.2rem;
}





.topd {
	height: 25%;
}





.trm-content-card-area {
	flex-grow: 1;
  	margin: 0 0 0 0;
}





option {
	font-size: 0.8rem;
}





.trm-content-card {
	background-color: var(--trm-white);
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: 0s;
}

.trm-content-card:hover {
	color: var(--trm-white);
	background-position: top left; /* Center the image */
	background-origin: border-box;
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover;
}

@media (max-width: 768px) {
	.trm-content-card {
		height: 20rem !important;
	}
}

.trm-content-card .bi {
	font-size: 1.5rem;
}

.trm-content-card hr {
	border-style: solid;
	border-width: 1px;
	opacity: 100%;
	margin-top: 0;
	margin-bottom: 0;
}

.trm-content-card:hover hr {
	border-color: var(--trm-white);
}

.trm-content-card .hoverable-more {
	font-size: 1.25rem;
}

.trm-content-card .hoverable-info.learn-more {
	font-size: 1.25rem;
}

.trm-content-card .hovered-info {
	font-size: 1.0rem;
	display: none;
}

.trm-content-card:hover .hovered-info {
	display: block;
}

.trm-content-card:hover .hoverable-more {
	display: none;
}

.trm-content-card:hover .fa, .trm-content-card:hover .bi {
	color: var(--trm-white) !important;
}





header {
	color: var(--trm-white);
	z-index: 1000;
	position: sticky;
	top: 0;
	left: 0;
}

header h2 {
	font-size: 1rem;
	white-space: pre-line;
	text-align: left;
	margin-bottom: 0;
}

.toph {
	cursor: pointer;
}

.toph img {
	height: 2.4rem;
	width: 2.4rem;
	margin-right: 0.3rem;
}

.trm-header {
	width: 100%;
	margin: 0;
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: var(--trm-blue);
}

header .btn {
	border-radius: 0 !important;
	border: 0 !important;
	background-color: var(--trm-yellow) !important;
	transition-duration: 0s;
}

header a.btn:hover {
	background-color: var(--trm-light-yellow) !important;
}

header .form-select {
	border: 0;
	border-radius: 0;
	background-color: var(--trm-dark-blue) !important;
	color: var(--trm-white) !important;
	--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
	margin-right: 1rem !important;
	font-size: 1rem;
}

header select:hover {
	background-color: var(--trm-light-blue) !important;
}

header select option {
	font-family:  'Poppins', sans-serif;
	background-color: var(--trm-light-blue) !important;
}

header .menuopener {
	cursor: pointer;
}



#menu {
	height: 0;
	width: 100%;
	z-index: 900;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--trm-blue);
	color: var(--trm-white);
	transition: height 0.5s ease;
}

#menu.shown {
	height: 100vh;
}

#menu .menu-content {
	bottom: 5rem;
	position: absolute;
	width: 100%;
}

@media(max-width: 1120px) {
	#menu .menu-content {
		bottom: 6rem !important;
	}
}

@media (max-width: 767px) {
	#menu .menu-content {
		bottom: 5rem !important;
	}
}

@media (max-width: 330px) {
	#menu .menu-content {
		bottom: 3rem !important;
	}
}

#menu .trm-menu-item {
	font-weight: 500;
	font-size: 3.5rem;
	line-height: 150%;
}

#menu .trm-submenu-item {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 150%;
}

@media (max-width: 767px) {
	#menu .trm-menu-item {
		font-size: 2.0rem;
		line-height: 120%;
	}
	#menu .trm-submenu-item {
		font-size: 1rem;
		line-height: 110%;
	}
}

@media (max-width: 330px) {
	#menu .trm-menu-item {
		font-size: 1.1rem;
		line-height: 120%;
	}
	#menu .trm-submenu-item {
		font-size: 0.8rem;
		line-height: 120%;
	}
}

#menu .trm-menu-item.trm-contact {
	color: var(--trm-yellow);
}





#intro {
	height: calc(100vh - 4rem);

	background-color: var(--trm-blue);
	color: var(--trm-white);

	background-size: 100% 100%;
	background-position: top right;
	background-repeat: no-repeat;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

#intro.background {
	background-image: url(/assets/theme/trm-blue-bg-sc.jpg);
}

@media (max-width: 1120px) {
	#intro {
		height: calc(100vh - 8.5rem);
	}
}

@media (max-width: 767px) {
	#intro {
		height: calc(100vh - 6.5rem);
	}
}

#intro.innerintro {
	height: 30vh !important;
	background-size: 100% auto;
}

@media (max-width: 575px) {
	#intro.innerintro {
		height: 25vh !important;
	}
}

#intro .bottom-div {
	margin-bottom: 5rem;
	width: 100%;
	max-width: 1399px;
}

@media (max-width: 1120px) {
	#intro .bottom-div {
		margin-bottom: 7rem !important;
	}
}

@media (max-width: 767px) {
	#intro .bottom-div {
		margin-bottom: 7rem !important;
	}
}

@media (max-width: 330px) {
	#intro .bottom-div {
		margin-bottom: 6rem !important;
	}
}

#intro.innerintro .bottom-div {
	margin-bottom: 1rem !important;
}

#intro h1 {
	font-weight: 500;
	font-size: 3.5rem;
	line-height: 130%;
	padding-bottom: 1rem;
}

@media (max-width: 767px) {
	#intro h1 {
		font-size: 2rem;
		line-height: 120%;
	}
}

@media (max-width: 330px) {
	#intro h1 {
		font-size: 1.3rem;
		padding-bottom: 0.3rem;
	}
}

#intro .trm-counter-area {
	background-color: var(--trm-white);
	color: var(--trm-blue);
	font-size: 1.30rem;
	line-height: 120%;
}

@media (max-width: 767px) {
	#intro .trm-counter-area {
		font-size: 0.75rem;
	}
}

#intro .trm-counter-number {
	font-weight: 500;
	font-size: 2.50rem;
}

@media (max-width: 767px) {
	#intro .trm-counter-number {
		font-weight: 500;
		font-size: 1.5rem;
	}
}



#services {
	padding-top: 12.5rem;
	padding-bottom: 3.5rem;
	height: auto !important;
	background-color: var(--trm-cream);
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

@media (max-width: 767px) {
	#services {
		padding: 7rem 0 0 0;
	}
}

#services .trm-content-card-area {
	padding-top: 7rem;
}

#services .trm-content-card {
	border-top: 10px solid var(--trm-blue);
	height: 29rem;
	cursor: pointer;
}

#services .trm-content-card:hover {
	background-color: var(--trm-blue);
	background-image: url(/assets/theme/trm-blue-bg-sc.jpg);
	background-position: top right;
	background-repeat: none;
	background-size: auto 100%;
	box-shadow: 0 0 20px rgba(34, 50, 172, 0.6);
}

#services .trm-content-card .fa {
	color: var(--trm-blue);
}

#services .trm-content-card hr {
	margin: 1rem auto 0 auto;
	width: calc(100% - 1.5rem) !important;
}

#services .trm-content-card hr.hoverable-more {
	border-color: var(--trm-blue);
}

#services h2 {
	font-size: 2.5rem;
}

#services h3 {
	font-size: 1.6rem;
}

#services .trm-content-card .mobile-hover-hidden {
	display: none;
}

@media(max-width:767px) {
	#services .trm-content-card .mobile-hover-hidden {
		display: block;
	}
	#services .trm-content-card:hover .mobile-hover-hidden {
		display: none;
	}
}

@media(min-width: 768px) and (max-width: 1120px) {
	#services h3 {
		font-size: 1.2rem;
	}
	#services .trm-content-card .hovered-info {
		font-size: 1.0rem !important;
	}
	#services .trm-content-card .hoverable-more {
		font-size: 1.0rem !important;
	}	
	#services .trm-content-card .hoverable-info.learn-more {
		font-size: 1.0rem !important;
	}	
}

.top-right-desc {
	font-size: 1.25rem;
}





#languages {
	padding-top: 10.5rem;
	padding-bottom: 10.5rem;
	background-color: var(--trm-blue);
	color: var(--trm-white);
	background-image: url(/assets/theme/trm-blue-bg-sc.jpg);
	background-size: 100% 100%;
}

.trm-language-area {
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width: 1399px;
	margin: 0 auto;
	justify-content: space-evenly;
}


.trm-language-area h2 {
	font-weight: 500;
	font-size: 2.5rem;
}

.trm-language-list {
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 140%;
	padding-top: 7rem;
	text-decoration: none;
}

.trm-language-list a {
	text-decoration: none;
}

.trm-language-list a:hover {
	text-decoration: underline solid 1px;
	color: inherit;
}

@media (max-width: 767px) {
	.trm-language-list {
		font-size: 2.7rem;
		line-height: 115%;
	}
}

@media (max-width: 330px) {
	.trm-language-list {
		font-size: 2.6rem;
	}
}





#references {
	padding-top: 10.5rem;
	padding-bottom: 3.5rem;
	height: auto !important;
	background-color: var(--trm-cream);
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

#references .trm-content-card-area {
	padding-top: 5rem;
	height: 34rem !important;
}

#references h3 {
	font-size: 1.6rem;
}

#references .trm-content-card {
	border-top: 10px solid var(--trm-yellow);
	height: 100% !important;
}

#references .trm-content-card:hover {
	background-image: url(/assets/theme/trm-yellow-bg.webp);
	background-color: var(--trm-yellow);
	background-position: bottom right;
	background-repeat: none;
	background-size: cover;
}

#references .trm-content-card .fa {
	color: var(--trm-yellow);
}

#references .trm-content-card hr {
	border-color: var(--trm-yellow);
}

#references .trm-content-card:hover hr {
	border-color: var(--trm-white);
}




.trm-slider {
	position: relative;
	overflow-x: hidden;
	flex-wrap: nowrap !important;
}

.trm-slider .col-md-4 {
	padding-left: 0 !important;
}

.trm-slider-slide {
	margin-left: 0;
	transition: margin-left 1.5s ease;	
}

.trm-slider-slide-left {
	margin-left: -33.33% !important;
}

@media (max-width: 1024px) {
	.trm-slider-slide-left {
		margin-left: -50% !important;
	}
}

@media (max-width: 480px) {
	.trm-slider-slide-left {
		margin-left: -100% !important;
	}
}

.manual-slide-container {
	transform: translateY(-23rem);
	pointer-events: none;
}

.manual-slide {
	font-size: 10rem;
	color: var(--trm-black);
	opacity: 10%;
	transition: all 0s;
	z-index: 500;
	pointer-events: auto;
}

.manual-slide:hover {
	cursor: pointer;
	opacity: 30%;
}




#contact {
	padding: 10.5rem 0 10.5rem 0;
}

#contact.cream-contact {
	background-color: var(--trm-cream);
}

#contact.white-contact {
	background-color: var(--trm-white);
}

@media (max-width: 767px) {
	#contact {
		padding: 7rem 0 7rem 0;
	}
}

#contact h2 {
	font-size: 2.5rem;
	margin-bottom: 7rem;
}

#contact label {
	font-size: 1.25rem;
	font-weight: 500;
}

#contact textarea {
	flex-grow: 1;
	height: 10rem;
}

#contact.cream-contact textarea {
	background-color: var(--trm-cream);
}

#contact.white-contact textarea {
	background-color: var(--trm-white);
}

#contact.cream-contact input, 
#contact.cream-contact select {
	background-color: var(--trm-cream);
}

#contact.white-contact input, 
#contact.white-contact select {
	background-color: var(--trm-white);
}

#contact select option {
	background-color: var(--trm-light-blue);
	color: var(--trm-white);
}

#contact .trm-form-input {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 2px solid var(--trm-black);
	transition-duration: 0s !important;
}

#contact .form-submit-button {
	background-color: var(--trm-yellow);
	font-weight: 500;
	border-radius: 0;
	transition-duration: 0s;
	color: initial;
}

#contact .form-submit-button:hover {
	background-color: var(--trm-light-yellow);
}


#contact .contact-nav-button {
	font-weight: 500;
	font-size: large;
	color: inherit;
	background-color: inherit;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
	border-color: darkgray darkgray darkgray darkgray;
	transition-duration: 0s;
}

#contact.cream-contact .contact-nav-button.active {
	border-bottom-color: var(--trm-cream);
}

#contact.white-contact .contact-nav-button.active {
	border-bottom-color: var(--trm-white);
}

#contact .contact-nav-button:hover {
	background-color: var(--trm-light-yellow);
}

#contact .nav-tabs {
	border-bottom-color: darkgray !important;
}



#contact .contact-container {
	align-self: center;
}

#contact .trm-form-hoverable {
	transition-duration: 0s !important;
}

#contact .trm-form-hoverable:hover {
	color: var(--trm-light-blue) !important;
}

#contact .trm-form-hoverable:hover .trm-form-input {
	border-bottom: 2px solid var(--trm-light-blue) !important;
}

#contact .trm-form-hoverable:hover .form-control::placeholder {
	color: var(--trm-light-blue) !important;
}

#contact.white-contact .medus {
	background: var(--trm-white);
	color: var(--trm-white);
	border: none;
}

#contact.cream-contact .medus {
	background: var(--trm-cream);
	color: var(--trm-cream);
	border: none;
}


#CCalculatorDetailedForm {
	opacity: 0;
}

#CCallToAction {
	opacity: 0;
	border-radius: 5px;
	border-color: var(--trm-blue);
	border-width: 1px;
	border-style: solid;
}

.inner-teaser h2 {
	padding-top: 5rem;
	padding-bottom: 2rem;
}

@media (max-width: 575px) {
	.inner-teaser h2 {
		padding-top: 2rem;
		padding-bottom: 1rem;
	}
}

.inner-body {
	padding-top: 4rem;
}

.inner-body h3 {
	padding: 2rem 1rem 2rem 1rem;
	background-color: var(--trm-blue);
	box-shadow: 0 0 20px rgba(34, 50, 172, 0.6);
	color: var(--trm-white);
}


.inner-body-nugget {
	padding-top: 0rem;
}

@media (max-width: 767px) {
	.inner-body-nugget:first-child {
		padding-top: 2rem;
	}
}

.inner-body-nugget:nth-child(n + 2) {
	padding-top: 3rem;
}

.inner-body-nugget:last-child {
	padding-bottom: 3rem;
}


footer {
	background-color: var(--trm-blue);
	color: var(--trm-white);
}


/**
* Privacy & cookie area
*/
.cc-window {
	font-family: 'Poppins', sans-serif !important;
	font-size: 0.8rem !important;
	width: fit-content !important;
	max-width: 95% !important;
	margin: 0 auto 0.3rem auto;
	padding: 0.4rem 0.6rem 0.4rem 0.6rem !important;
	color: rgb(34, 50, 172) !important;
	border: 1px solid lightgray;
	white-space: nowrap;
}

.cc-link {
	padding: 0 0.2rem 0 0 !important;
}

.cc-window.cc-floating {
	max-width: 100% !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
}

.cc-window a.cc-link {
	font-family: 'Poppins', sans-serif !important;
	color: rgb(34, 50, 172) !important;
	font-weight: normal !important;
	opacity: 1 !important;
	min-width: 0 !important;
	text-decoration: underline solid 1px;
}

.cc-btn {
	font-family: 'Poppins', sans-serif !important;
	font-weight: normal !important;
	border-radius: 0px !important;
	min-width: 0 !important;
	text-decoration: none !important;
}

.cc-btn:first-child {
	font-family: 'Poppins', sans-serif !important;
	color: rgb(255, 255, 255) !important;
	border-color: transparent !important;
	background-color: rgb(34, 50, 172) !important;
}

.cc-btn:first-child:hover {
	font-family: 'Poppins', sans-serif !important;
	opacity: 0.75 !important;
	text-decoration: none !important;
}

.cc-floating.cc-theme-classic {
    border-radius: 0 !important;
}

.cc-revoke {
	border: 1px solid lightgray;
}

.cc-banner.cc-bottom {
	bottom: 0.5rem !important;
}

.cc-floating .cc-message {
	margin-bottom: 0.5rem !important;
}

@media (max-width: 767px) {
	.cc-window {
		width: fit-content !important;
	}
	.cc-window.cc-floating {
		max-width: fit-content;
	}
	.cc-bottom {
		bottom: 0.05rem !important;
	}
	.cc-theme-classic {
		border-radius: 0 !important;
	}
	.cc-window .cc-message {
		margin-bottom: 0.2rem !important;
	}
	.cc-btn {
		padding: 0.2em 0.8em;
		font-size: .8rem !important;
		font-weight: 500;
	}
}