:root {
    --custom-color-green: #0fdbae;
    --custom-color-gray: #939cad;
    --custom-color-blue: #244472;
}

@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/roboto-regular-webfont.woff2) format("woff2");
	font-display: swap
}

@font-face {
	font-family: Roboto;
	font-style: italic;
	font-weight: 400;
	src: url(../fonts/roboto-italic-webfont.woff2) format("woff2");
	font-display: swap
}

@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/roboto-bold-webfont.woff2) format("woff2");
	font-display: swap
}

@font-face {
	font-family: Roboto;
	font-style: italic;
	font-weight: 700;
	src: url(../fonts/roboto-bolditalic-webfont.woff2) format("woff2");
	font-display: swap
}



html,
body,
.page {
    height: 100%; 
}

body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    
    min-width: 320px;
    font-family: Roboto, sans-serif;
	font-size: 14px;
	color: #939cad;
	line-height: 1.5;
	font-weight: 400;

    justify-content: space-between;
}

.page {
  display: flex;
  flex-direction: column;
}

.header {
  flex: 0 0 auto;
  background-color: #dcdcdc;
}

.page-content {
  flex: 1 1 auto;
  position: relative; /* need this to position inner content */
  overflow-y: auto;
}


::-moz-selection {
	background-color: var(--custom-color-green);
	color: #fff
}

::selection {
	background-color: var(--custom-color-green);
	color: #fff
}

::-webkit-input-placeholder {
	color: #666
}

::-moz-placeholder {
	color: #666
}

:-ms-input-placeholder {
	color: #666
}

::-ms-input-placeholder {
	color: #666
}

::placeholder {
	color: #666
}



h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	padding: 0;
	color: #244472
}

ul {
	margin: 0;
	padding: 0;
	list-style-type: none
}

p {
	margin: 0;
	padding: 0
}




path,
svg {
	transition: all .6s
}

a,
button {
	transition: all .6s
}

a:active,
a:focus,
a:hover,
button:active,
button:focus,
button:hover {
	outline: 0;
	text-decoration: none;
	border: none;
	outline: 0
}


.container {
	max-width: 1200px
}






.h1,
.h2,
.h3 {
	line-height: 130%;
	font-weight: 700;
	color: #244472
}

.h1 span,
.h2 span,
.h3 span {
	position: relative;
	display: inline-block;
	z-index: 1
}

.h1 span::before,
.h2 span::before,
.h3 span::before {
	content: '';
	position: absolute;
	bottom: 3px;
	right: -1%;
	left: -1%;
	width: 102%;
	height: 17px;
	background-color: var(--custom-color-green);
	z-index: -1
}

@media only screen and (max-width:1200px) {
	.h1 span::before,
	.h2 span::before,
	.h3 span::before {
		height: 10px
	}
}

.h1 {
	margin-bottom: 1.5em;
	font-size: 42px
}

@media only screen and (max-width:1200px) {
	.h1 {
		font-size: 38px
	}
}

@media only screen and (max-width:992px) {
	.h1 {
		font-size: 32px
	}
}

@media only screen and (max-width:767px) {
	.h1 {
		font-size: 28px;
		text-align: center
	}
}

@media only screen and (max-width:576px) {
	.h1 {
		font-size: 26px
	}
}

.h2 {
	font-size: 36px
}

@media only screen and (max-width:1200px) {
	.h2 {
		font-size: 30px
	}
}

@media only screen and (max-width:992px) {
	.h2 {
		font-size: 24px
	}
}

@media only screen and (max-width:767px) {
	.h2 {
		font-size: 20px
	}
}

.h3 {
	font-size: 22px;
	margin-bottom: 1.8em
}

@media only screen and (max-width:1200px) {
	.h3 {
		font-size: 20px;
		margin-bottom: 1em
	}
}

@media only screen and (max-width:992px) {
	.h3 {
		font-size: 18px;
		margin-bottom: .5em
	}
}

@media only screen and (max-width:767px) {
	.h3 {
		font-size: 16px
	}
}
















/*
FOOTER
*/


.footer {
	position: relative;
	padding: 50px 0;
}

@media only screen and (max-width:1200px) {
	.footer {
		padding: 40px 0
	}
}

@media only screen and (max-width:992px) {
	.footer {
		padding: 30px 0
	}
}

.footer::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 250px;
	background-color: #f6f9fe;
	z-index: -1
}

@media only screen and (max-width:1200px) {
	.footer::before {
		height: 200px
	}
}

@media only screen and (max-width:992px) {
	.footer::before {
		height: 150px
	}
}

@media only screen and (max-width:767px) {
	.footer::before {
		height: 150%
	}
}

.footer__container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px
}

@media only screen and (max-width:992px) {
	.footer__container {
		flex-direction: column
	}
}

.footer p {
	color: #244472
}

.footer a {
	color: #244472
}

.footer a:hover {
	color: #4d95fe
}






/*
HEADER section
*/


.header {
    flex: 0 0 auto;
    background-color: #f6f9fe;
    padding: 15px 0;
}

.header .navbar {
	width: 100%;
	padding: 0
}

.header .navbar-collapse {
	flex-grow: 0;
	width: 60%
}

@media only screen and (max-width:767px) {
	.header .navbar-collapse {
		flex-grow: 1;
		padding: 20px;
		text-align: right
	}
}

.header .nav-item {
	margin-right: 40px
}

@media only screen and (max-width:767px) {
	.header .nav-item {
		margin-right: 0;
		margin-bottom: 10px
	}
}

.header .navbar-light .navbar-nav .nav-link {
	position: relative;
	color: #244472;
	font-size: 16px;
	padding: 0;
	z-index: 1
}

@media only screen and (max-width:992px) {
	.header .navbar-light .navbar-nav .nav-link {
		font-size: 14px
	}
}

@media only screen and (max-width:767px) {
	.header .navbar-light .navbar-nav .nav-link {
		font-size: 20px
	}
}

.header .navbar-light .navbar-nav .nav-link:hover {
	color: #244472
}

.header .navbar-light .navbar-nav .nav-link:hover::before {
	height: 8px
}

.header .navbar-light .navbar-nav .nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -5%;
	right: -5%;
	width: 110%;
	height: 0;
	background-color: var(--custom-color-green);
	z-index: -1;
	transition: all .6s
}

@media only screen and (max-width:767px) {
	.header__btn {
		margin-right: 0;
		margin-left: auto
	}
}

.header__container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between
}

.header__logo {
	width: 175px
}

@media only screen and (max-width:992px) {
	.header__logo {
		width: 130px
	}
}


.header__phone {
    text-decoration: none;
}

.header__phone > img,
.header__whatsapp > img {
    height: 25px;
    margin-left: 10px;
    margin-right: 10px;
}










/*
CSS3 garbage
*/
@-webkit-keyframes opacity {
	0% {
		opacity: 1
	}
	90% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

@keyframes opacity {
	0% {
		opacity: 1
	}
	90% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}








.btn {
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 45px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 5px;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	padding: 0 65px;
	background-color: var(--custom-color-green);
	color: #fff;
	border: none
}