/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One:wght@400;500;700;800;900&display=swap');

/* VARIABLES */
:root {
   --c-dark: #0f1137 ;
   --c-brand: #0f1137;
   --c-brand-light: hsl(215, 47%, 88%);
   --c-brand-rgb: 15, 17, 55;
   --c-body: #2c2c2c;
   --c-btn: #fff;
	--c-footer-link: #d2d1d1;
   --c-icon: #015e8d;
	--c-gray: #ddd;
	--c-accent: #015e8d;
   --font-main: "Roboto", sans-serif;
   --font-heading: "Poiret One", sans-serif;
   --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
   --transition: all 0.5s ease;
	
}

/* MAIN STYLES DEFAULT */
body {
   font-family: var(--font-main);
   line-height: 1.8;
	color: var(--c-body);
}

header {
    position: relative;
    background-color: var(--c-dark);
    height: 35vh;	
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

header .container {
	position: relative;
	z-index: 2;
}

header img {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
    object-fit: cover;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);	
	-webkit-transform: translateX(-50%) translateY(-50%);
   transform: translateX(-50%) translateY(-50%);
}

/* FONTS*/

h1, h2, h3, h4, h5 {
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 700;
}

@media screen and (max-width: 768px) {
h2 { 
	padding-top: 30px;}
}

h4 {
	padding-bottom: 20px;
}

h5.info {
	text-align: left; 
}

p.justify {
	text-align: justify;
	text-indent:10px;
}

p.space {
	margin-top:25px;
}
p.center {
	text-align: center;
}
	
.large-font {
   font-size: 48px;
}

a {
   text-decoration: none;
   color: var(--c-btn);
   transition: var(--transition);
}

a:hover {
   color: var(--c-brand-light);
}

/* VIDEO */
.video-responsive{
	overflow:hidden;
	padding-bottom:56.25%;
	position:relative;
	height:0;
}

.video-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

/* LISTS */
dl {
    margin-left:10px;
}

dd {
	margin-left:15px;
}

/* IMAGE STYLES */
img {
   max-width: 100%;
   height: auto;
	border-radius: 5%;
	box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
}

.noshadow {
	box-shadow: none;
}

/* SECTIONS */
section {
   padding-top: 20px;
   padding-bottom: 20px;
   z-index: 2;
   position: relative;
}

.section-intro {
   margin-bottom: 20px;
}

.section-title .line, .section-title .section-intro, .section-title .line {
   width: 100px;
   height: 4px;
   background: linear-gradient(to right,var(--c-icon), var(--c-gray));
   margin: 16px auto 24px auto;
}

.service .service-img {
   position: relative;
}

.feature i {
   background: -webkit-linear-gradient(var(--c-gray), var(--c-brand));
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-size: 54px;
}

.people  {
   box-shadow: 0 12px 12px rgba(0,0,0,0.1);
}

.people .person {
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	padding-bottom: 18px;
}

.people .person img {
    width: 75px;
    height: 75px;
    border-radius: 100px;
}

.people .heart {
    color: var(--c-accent);
}

/* BTN */
.btn {
   font-weight: 600;
   font-size: 14px;
   text-transform: uppercase;
   border-radius: 20px;
   padding: 10px 24px;
	margin-bottom:20px;
	}

.btn-brand {
    background: linear-gradient(to right,var(--c-icon), var(--c-gray));
    border-radius: 100px;
    border: none;
    font-weight: 600;
    color: var(--c-brand);
}

.btn-brand:hover {
    background: linear-gradient(to right, var(--c-gray), var(--c-icon));
    border-radius: 100px;
    border: none;
    font-weight: 600;
    color: var(--c-brand-light);
}

/* ICONBOX */
.iconbox {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 10px;
    color: var(--c-icon);
    font-size: 34px;
    flex: none;
}

.container {
    padding: 10px;
}

/* NAVBAR */
.navbar-dark .navbar-nav .nav-link.active, .navbar-light .navbar-nav  {
    background: -webkit-linear-gradient(var(--c-btn), var(--c-brand));
    background-clip:text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar, .navbar-custom {
   box-shadow: 0 12px 20px rgba(0,0,0,0.1);
	background: var(--c-dark) !important;
}

/* FOOTER */
#myFooter {
	background-color: var(--c-brand);
	color: var(--c-btn);
}

#myFooter .footer-copyright{
	background-color: var(--c-brand);
	padding-top: 3px;
	padding-bottom: 3px;
	text-align: center;
}

#myFooter .footer-copyright p {
	margin: 10px;
	color: var(--c-gray);
}

#myFooter ul {
	list-style-type: none;
	padding-left: 0;
	line-height: 1.7;
}

#myFooter h4 {
	font-size: 18px;
	color: var(--c-btn);
	font-weight: bold;
	margin-top: 30px;
}

#myFooter a {
	color: var(--c-footer-link);
	text-decoration: none;
}

#myFooter a:hover, #myFooter a:focus {
	text-decoration: none;
	color: var(--c-btn);
}

#myFooter .myCols {
	text-align: center;
}

#myFooter .social-networks {
	width: 100%;
	margin: 0 auto;
	padding-bottom:10px;
}

#myFooter .social-networks img {
	width: 36px;
	height: 36px;
	background: transparent;
	border:0;
	margin: 0 5px;
	filter: none;
	outline: none;
	box-shadow: none;
}

@media screen and (max-width: 768px) {
#myFooter {
    text-align:center;}
}

