@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;800&display=swap');

body{
	margin: 0;
	padding: 92px 0 0 0;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #232323;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

/*------------------------------
	Utility
------------------------------*/

:root {
  --primary: #200081;
  --primary-hover: #461ACD;
  --green:#A1C100;
  --green-hover:#9EB629;
}
.bg-power{
	background-color:#EEF0FF;
	padding-top: 4em;
	padding-bottom: 4em;
}



.btn-icon{
	vertical-align: middle;
	margin-top: -4px;
	width: 35px;
}

.level{
	padding-top: 3em;
	padding-bottom: 3em;
}

.bg-main-1{
	background-image: url("../img/04.jpg");
	background-position: center center;
	background-size: cover;
	height: 100%;
}
.bg-main-2{
	background-image: url("../img/03.jpg");
	background-position: center center;
	background-size: cover;
	height: 100%;
}

.show-in-mobile{
	display: none;
}
/*------------------------------
	Icons
------------------------------*/
.feather {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/*------------------------------
	Typography and titles
------------------------------*/
a{
	color: var(--primary);
}
a:hover{
	color: var(--primary);
	text-decoration: underline;
}
p{
	line-height: 1.5em;
}
h1,
h2{
	font-family: 'Barlow', sans-serif;
	font-weight: 800;
}
h1.big{
	font-size: 3.3em;
	line-height: 1.1em;
}

.bold{
	font-weight: 800 !important;
}
span.highlight{
	background-image: linear-gradient( to bottom,transparent,transparent 68%,#C6EAFF 68%,#C6EAFF );
}

.display-1,
.display-2,
.display-3,
.display-4{
	font-weight: 800;
}

/*------------------------------
	Forms
------------------------------*/
.form-control{
	border-radius: 0;
	border-color: #ddd;
}
/*------------------------------
	Header
------------------------------*/
.navbar-brand{
	padding: 0;
}
.navbar .navbar-brand img{
	width: 210px;
}

.navbar-expand-lg .navbar-collapse{
	flex-basis: 100%;
}
.navbar-brand img{
	width: 210px;
}
.navbar{
	padding: 1rem;
	font-size: 1.2em;
	background: #fff;
	border-bottom: none;
}
.navbar .call-to-action{
	font-weight: normal;
	font-size: 1em;
	background:var(--primary);
	border-radius: 999px;
	color: #fff !important;
	padding-left: 1rem !important;
	padding-right: 1rem !important;
	padding-top: 7px;
	padding-bottom: 9px;
}
.nav-item{
	margin: 0 .3em;
	text-align: center; /*for responsive behavior*/
}

.active .nav-link{
	color: var(--primary);
}
.nav-link:hover{
	color: var(--primary);
}
.navbar .nav-link{
	padding-top: .7em;
    padding-bottom: .5em;
}

/*------------------------------
	Header nav user
------------------------------*/
.navbar-toggler{
	position: absolute;
    font-size: 1.7em;
	right: 30px;
	top: 27px;
}
.navbar-toggler:hover,
.navbar-toggler:focus{
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

/*------------------------------
	Reset dropdown item
------------------------------*/
.dropdown-item:hover{
	background-color: #fff;
	color: var(--primary);
}
.dropdown-item:focus{
	background-color: #fff;
	color: var(--primary);
}


/*------------------------------
	Footer
------------------------------*/
.footer ul li a{
	font-size: 1.1em;
}
.footer h5 a{
	color: #000;
}
.footer ul{
	margin-bottom: 50px;
}
.footer img{
	width: 190px;
}
.footer-last{
	background-color: var(--primary);
	color: #fff;
	padding: 1.5rem 0;
}
.footer-last p{
	font-size: .9rem;
}

/*------------------------------
	Main section
------------------------------*/
.main{
	padding-top: 4em;
	padding-bottom: 4em;
}



/*------------------------------
	Main section with squared images
------------------------------*/
@-webkit-keyframes action {
        0% { transform: translateY(0); }
        100% { transform: translateY(-7px); }
    }
@keyframes action {
        0% { transform: translateY(0); }
        100% { transform: translateY(-7px); }
    }
.squared-images{
	background: none;
	margin: 10px 0;
	position: relative;
}
.squared-images div img{
	width: 100%;
	border-radius: 15px;
}
.squared-images div{
	-webkit-animation: action 1.5s infinite alternate;
    animation: action 1.5s infinite alternate;
}
/*----------
	Img home
	----------*/
	.squared-images.in-steps #imgstep2a{
	position: absolute;
	left: 5%;
    top: -50px;
    width: 55%;
    /* height: 28%; */
	z-index: 8;
	-webkit-animation: action 8s infinite alternate !important;
    	animation: action 8s infinite alternate !important;
	}
	.squared-images.in-steps #imgstep2b{
	    position: absolute;
    right: 3%;
    top: 160px;
    width: 30%;
	height: 30%;
	z-index: 9;
    -webkit-animation: action 4s infinite alternate !important;
    animation: action 4s infinite alternate !important;
	}
	.squared-images.in-steps #imgstep2c{
	position: absolute;
    right: 0;
    top: -10px;
    width: 24%;
	height: 35%;
	z-index: 9;
	-webkit-animation: action 5s infinite alternate !important;
    	animation: action 5s infinite alternate !important;
	}
	





/*------------------------------
	Buttons
------------------------------*/
.btn{
	font-weight: bold;
	border-radius: 1rem;
}
.btn-link{
	color: var(--primary);
}
.btn-link:hover{
	color: var(--primary-hover);
}
.btn-lg{
	font-weight: bold;
	padding: .4em 1.5em .5em 1.5em;
}
.btn-success{
	background: var(--green);
	border-color:var(--green);
}
.btn-success:hover,
.btn-success:focus{
	background: var(--green-hover) !important;
	border-color:var(--green-hover) !important;
}
.btn-primary{
	background: var(--primary);
	border-color:var(--primary);
}
.btn-primary:hover,
.btn-primary:focus{
	background: var(--primary-hover) !important;
	border-color:var(--primary-hover) !important;
}
.btn-outline-primary{
	border-color: var(--primary);
	background-color: #fff;
	color: var(--primary);
}
.btn-outline-primary:hover{
	border-color: var(--primary-hover);
	background-color: #fff;
	color:var(--primary-hover);
}
.btn-rounded{
	border-radius: 1000em;
}


/*------------------------------
	Reset Pills
------------------------------*/
.nav-pills .nav-link{
	border-radius: 0;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
	background-color: var(--primary);
}

/*------------------------------
	Reset Badges
------------------------------*/
.badge-pill{
	padding-top:.20em;
}
.badge-info{
	border-radius: 2px;
	background-color: var(--primary);
	color: #fff;
}
.badge-default{
	background-color: #eee;
	color: #666;
}

/*------------------------------
	Reset Modals
------------------------------*/
.modal-header{
	border-bottom:none;
	border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.modal-footer{
	border-top: none;
}
.modal-content{
	border-radius: 0;
}
.modal-bottom{
	padding: 30px 20px;
}
.modal-header .close {
    padding: .3rem 1.2rem;
    margin: -1rem -1rem -1rem auto;
	font-size: 2.5rem;
}
.modal-header .close:focus{
	outline: none;
}




/*------------------------------
	Slider / Carousel
------------------------------*/
.wrap-slider{
	position: relative;
	height: 700px;
}
.cta{
	position: absolute;
	top: 190px;
	left: 0;
	z-index: 9;
	color: #fff;
	padding: 0 15px;
}
.cta h1{
	font-weight: normal;
	font-size: 2.2rem;
}
.wrap-slider .carousel{
	height: 700px;
	overflow: hidden;
}

.carousel-item{
	height: 700px;
	overflow: hidden;
}

.carousel-item img{
	/* position: absolute;
    min-width: 1000%;
    min-height: 1000%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0.1);
	z-index: -1; */
	position: absolute;
    min-width: 1000%;
    min-height: 1000%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0.1);
    z-index: -1;
}


.wrap-slider:before{
	position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
	background: rgba(0,0,0,.4);
	z-index: 1;
}
.carousel-indicators li{
	cursor: pointer;
}




/*------------------------------
	Logos
------------------------------*/
ul.logos{
	list-style-type: none;
	margin: 0;
	padding: 0;
	
}
ul.logos li{
	background-color: #fff;
	border-radius: 1rem;
	padding: 2px;
	width: 16.6%;
	overflow: hidden;
	margin: 0 .3rem;
}
ul.logos li img{
	width: 100%;
}




/*------------------------------
	Responsive
------------------------------*/
@media (max-width: 1200px){
	.squared-images.in-steps #imgstep2a{
    	top: 0px;
	}
}

@media (max-width: 1024px){
	h1.big{
		font-size: 3.5em;
	}
 
}

@media (max-width: 990px) {
	.main{
		padding-top: 3em;
    	padding-bottom: 3em;
	}
	h1.big{
		font-size: 2.5em;
	}
	.topics li{
		width:49.6%;
	}
	.display-4{
		font-size: 2.5em;
	}
	.navbar .call-to-action{
		margin-top: 1em;
		margin-bottom: 1em;
	}
	
}

@media (max-width: 768px){
	.out-in-mobile{
		display: none;
	}
	.show-in-mobile{
		display: block;
	}
}

@media (max-width: 640px){

}

@media (max-width: 480px){
    

}