html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	color: var(--color-01);
	/* font-family: 'Open Sans', sans-serif; */
	/* font-family: 'Roboto Condensed', sans-serif; */
	font-family: nunito-sans, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.3;
	height: 100%;
}

:root {
	--color-01: #0A478B;
	--color-02: #6781A9; /* Axhidrox */
	--color-03: #3C3C3B;
	--color-04: #F2F3F8;
}

.text-color-01 {
	color: var(--color-01);
}

.text-color-02 {
	color: var(--color-02);
}

.text-color-03 {
	color: var(--color-03);
}

.text-color-04 {
	color: var(--color-04);
}

.bg-color-01 {
	background-color: var(--color-01);
}

.bg-color-02 {
	background-color: var(--color-02);
}

.bg-color-03 {
	background-color: var(--color-03);
}

.bg-color-04 {
	background-color: var(--color-04);
}

.bg-grad-01 {
	background: linear-gradient(#6C91C1 33%, #0A478B);
}

.divider {
	width: 100%;
	height: 40px;
}

.divider_big {
	width: 100%;
	height: 60px;
}

.bg-img-01 {
	background-color: #ffffff;
	background-image: url("../img/bg-01.jpg");
	background-position: right center;
	background-repeat: no-repeat;
}

.bg-img-02 {
	background-color: #dff3fb;
	background-image: url("../img/bg-02.jpg");
	background-position: top center;
	background-repeat: no-repeat;
}

.bg-img-grad-01 {
	background-image: url("../img/bg-03.png"), url("../img/bg-04.png"), linear-gradient(#ffffff, #dfe4ed);
	background-position: right top 15%, left bottom 15%;
	background-repeat: no-repeat, no-repeat, no-repeat;
}

/* Buttons */

.btn-prim {
	color: #fff;
	font-size: 2.0rem;
	font-weight: 700;
	text-transform: uppercase;
	background-color: var(--color-01);
	/* background-image: url("../img/ico-forward-white.svg"); */
	/* background-position: center right 10px; */
	/* background-repeat: no-repeat; */
	/* background-size: 24px; */
	border-radius: 0px;
	padding: 15px 80px 15px 80px;
	transition: all 0.5s;
}

.btn-prim:hover {
	color: #fff;
	background-color: var(--color-02);
	/* background-position: center right 0px; */
	transition: all 0.5s;
}

.btn-dload {
	background-image: url("../img/ico-download-white.svg");
}

.btn-dload:hover {
	background-position: bottom 3px right 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-01);
	font-weight: 900;
}

.sct-h2 {
	width: fit-content;
	/* width: 100%; */
	color: var(--color-01);
	font-size: 3rem;
	text-align: center;
	text-transform: uppercase;
	background-color: #ffffff;
	margin-left: auto;
	margin-right: auto;
	padding: 20px 40px;
	border-radius: 0px;
	box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.15);
	margin-bottom: 50px;
}

.mt-20 {
	margin-top: 20px !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-40 {
	margin-top: 40px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.mt-60 {
	margin-top: 60px !important;
}

.mt-80 {
	margin-top: 80px !important;
}

.mt-100 {
	margin-top: 100px !important;
}

.mt-150 {
	margin-top: 150px !important;
}

.pt-20 {
	padding-top: 20px !important;
}

.pt-30 {
	padding-top: 30px !important;
}

.pt-40 {
	padding-top: 40px !important;
}

.pt-50 {
	padding-top: 50px !important;
}

.pt-100 {
	padding-top: 100px !important;
}

.pt-150 {
	padding-top: 150px !important;
}

.pb-100 {
	padding-bottom: 100px !important;
}

.pb-150 {
	padding-bottom: 150px !important;
}

.container-xxl {
    max-width: 1410px;
}

/* LOADER */

#loader-wrapper {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #ECF0F1;
	display: none;
}

.load {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	display: none;
}

.load hr {
	border: 0;
	margin: 0;
	width: 40%;
	height: 40%;
	position: absolute;
	border-radius: 50%;
	animation: spin 2s ease infinite;
}

.load :first-child {
	background: var(--color-01);
	animation-delay: -1.5s;
}

.load :nth-child(2) {
	background: var(--color-02);
	animation-delay: -1s;
}

.load :nth-child(3) {
	background: var(--color-01);
	animation-delay: -0.5s;
}

.load :last-child {
	background: var(--color-02);
}

@keyframes spin {

	0%,
	100% {
		transform: translate(0)
	}

	25% {
		transform: translate(160%)
	}

	50% {
		transform: translate(160%, 160%)
	}

	75% {
		transform: translate(0, 160%)
	}
}

.js .load,
.js #loader-wrapper {
	display: block;
}

/* NAV */

.navbar {
	/* max-height: 75px; */
	/* background-color: rgba(255, 255, 255, 0.0) !important; */
	background-color: #FBFBFC;
	font-weight: 400;
	padding: 0rem;
	/* box-shadow: 0px 0px 20px 0px rgba(1, 1, 1, 0.1); */
	/* backdrop-filter: blur(5px); */
	transition: all 0.7s;
}

.navbar .navbar-brand {
	color: var(--color-01);
	font-weight: 900;
	font-size: 1.5rem;
	text-transform: uppercase;
	padding-top: 0rem;
	padding-bottom: 0rem;
	transition: all 0.7s;
}

.navbar .navbar-brand span {
	color: var(--color-02);
	margin-left: 0px;
	/* padding-top: 0; */
	/* padding-bottom: 0rem; */
	transition: all 0.7s;
}

.navbar .navbar-brand:hover {
	color: var(--color-02);
	transition: all 0.7s;
}

.navbar .navbar-brand:hover span {
	color: var(--color-01);
	transition: all 0.7s;
}

.navbar-nav li {
	font-size: 1.125rem;
	font-weight: 400;
	/* letter-spacing: 1px; */
	padding: 0 0 0 30px;
	text-transform: uppercase;
}

.navbar-nav li:first-child {
	padding: 0;
}

.navbar .navbar-nav .nav-link {
	color: var(--color-01);
	padding: 35px 0px 35px 0px;
	position: relative;
	transition: all 0.7s;
}

/*.navbar-dark .navbar-nav .nav-link:hover {
	color:#e30613;
	border-bottom:solid 3px rgba(227,6,19,1.0);
	transition:all 0.5s;
}
.navbar-dark .navbar-nav .nav-link:focus {
	color:#00344f;
}
.navbar-dark .navbar-nav .nav-item .active {
	color:#e30613;
	border-bottom:solid 3px rgba(227,6,19,1.0);
	transition:all 0.7s;
}*/

.navbar .navbar-nav .nav-link:hover {
	color: var(--color-02);
}

.navbar .navbar-nav .nav-link.active {
	color: var(--color-02);
}

.navbar .navbar-nav .nav-link:focus {
	color: var(--color-02);
}

.navbar .navbar-nav .nav-link:before {
	/* color: #fff; */
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	padding: 0;
	background-color: var(--color-02);
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navbar .navbar-nav .active:before,
.navbar .navbar-nav .nav-link:hover:before {
	/* color: #00a8c1; */
	visibility: visible;
	left: 0;
	-webkit-transform: scaleX(1.0);
	transform: scaleX(1.0);
}

/* NAV DROPDOWN */

.dropdown-menu {
	color: #000;
	text-align: left;
	background-color: rgba(255, 255, 255, 0.9) !important;
	margin: 0;
	padding: 10px;
	border: none;
	border-radius: 10px 10px 10px 10px;
	right: 0;
	left: auto;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.7s;
}

/* .dropdown-menu:hover {
	background-color: #4488c8 !important;
	transition: all 0.7s;
} */

.dropdown-menu .dropdown-item {
	color: var(--color-01);
	font-size: 1.125rem;
	font-weight: 400;
	text-transform: none;
	text-align: left;
	padding: 10px;
	transition: all 0.7s;
}

.dropdown-menu .dropdown-item:hover {
	color: var(--color-02);
	background-color: rgba(255, 255, 255, 0.0) !important;
	transition: all 0.7s;
}

.dropdown-toggle::after {
	color: var(--color-02);
	display: inline-block;
	margin-left: 10px;
	vertical-align: 3px;
	content: "";
	border-top: 8px solid;
	border-right: 6px solid transparent;
	border-bottom: 0;
	border-left: 6px solid transparent;
}

/* .dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    background-color: #00a8c1 !important;
} */

.navbar .navbar-nav .dropdown .nav-link {
	/* color: #fff; */
	/* font-size: 1.0rem; */
	/* font-weight: 800; */
	/* background-color: #00a8c1; */
	/* padding: 25px 0px; */
	margin-right: auto;
}

/* #navi-spy.navbar-dark .navbar-nav .dropdown .nav-link:hover {
	color: #fff;
	background-color: #4488c8;
} */

.navbar .navbar-nav .dropdown .nav-link:before {
	visibility: hidden;
	/* ukrywa pasek hover */
}

.scroll {
	background-color: rgba(255, 255, 255, 0.9) !important;
	/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); */
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	transition: all 0.7s;
}

.scroll .dropdown-menu {
	background-color: rgba(255, 255, 255, 0.9) !important;
	border-radius: 0px 0px 10px 10px;
}

.scroll .navbar-nav .nav-link {
	padding: 20px 0px;
}

/* Section HERO */

.sct-hero h1 {
	color: var(--color-01);
	font-size: 2.875rem;
	margin-bottom: 0;
}

.sct-hero h1 span {
	font-weight: 700;
}

.sct-hero h2 {
	width: fit-content;
	color: #ffffff;
	font-size: 2.5rem;
	background-color: #6D91C1;
	padding: 30px 40px;
	margin-bottom: 0;
}

/* Section 01 */

.sct-01 .txt-photo {
	font-size: 2.5rem;
	line-height: 120%;
	margin-bottom: 0;
	padding-left: 75px;
	padding-right: 50px;
}

.sct-01 .txt-photo strong {
	font-weight: 900;
}

/* Section 02 */

.card-deck-icons .card {
	color: #ffffff;
	text-align: center;
	border: none;
	border-radius: 0;
}

.card-deck-icons .card .card-img-top {
	width: auto;
	max-height: 180px;
	margin: 40px 15px 0 15px;
}

.card-deck-icons .card .card-body {
	padding-bottom: 40px;
}

.card-deck-icons .card h4 {
	color: #ffffff;
	font-size: 2rem;
	margin-top: 20px;
}

.card-deck-icons .card p {
	font-size: 1.5rem;
}

/* Section QUIZ-GAME */

.quiz-game .prize {
	width: 496px;
}

.quiz-game p {
	color: var(--color-03);
	font-size: 1.625rem;
	margin-bottom: 0;
}

.quiz-game h3 {
	font-size: 2.625rem;
	text-transform: uppercase;
	margin-bottom: 0;
}

.quiz-game .ref {
	color: var(--color-03);
	font-size: 1.0rem;
	margin-bottom: 0;
}

.quiz-game .ref a {
	color: var(--color-03);
	text-decoration: underline;
}

.quiz-game .ref a:hover {
	color: var(--color-01);
	text-decoration: none;
}

/* Section Q&A */

.sct-qaa .card {
	background-color: #DFE3EE;
}

.sct-qaa .card .card-body {
	padding-left: 50px;
}

.sct-qaa .card h3 {
	font-size: 2rem;
	margin-bottom: 0;
}

.sct-qaa .card .author {
	font-size: 1.5rem;
	padding-left: 30px;
	font-weight: 700;
	margin-top: 25px;
	border-left: 5px solid var(--color-03);
	margin-bottom: 0;
}

.sct-qaa .card .p1 {
	font-size: 1.5rem;
	font-weight: 400;
	margin-top: 25px;
	margin-bottom: 0;
}





























/* Section REF */

.ref {
	color: var(--color-03);
	font-size: 0.875rem;
}


/* PRE-FOOTER */

.sct-pre-footer {
	height: 400px;
	background-color: #dfe4ed;
	background-image: url("../img/bg-05.jpg");
	background-position: center bottom;
	background-repeat: no-repeat;
}

/* FOOTER */

.footer-logo {
	width: 250px;
	margin-bottom: 40px;
}	

.footer {
	color: #fff;
	/* text-transform: uppercase; */
	text-align: center;
	padding: 50px 0 50px;
}

.footer p {
	font-size: 1.0rem;
}

.footer .navi {
	margin: 0 auto;
	font-weight: 400;
}

.footer .navi li {
	font-size: 1.0rem;
	text-transform: uppercase;
	display: inline;
	list-style: disc;
}

.footer .navi li a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.7s;
}

.footer .navi li a:hover {
	color: var(--color-02);
	transition: all 0.5s;
	text-decoration: none;
	transition: all 0.7s;
}

.footer ul li {
	/* border-left: solid 1px #ffffff; */
	padding: 0 10px;
}

.footer ul li:first-child {
	border: none;
}

.footer ul {
	padding-inline-start: 0px;
}






/* LOGIN */

.e-login-bg {
	height: 100vh;
	min-height: 500px;
	background-color: #ffffff;
	background-image:  linear-gradient(rgba(255, 255, 255,.5), rgba(255, 255, 255,.5)), url("../img/bg-01.jpg");
	background-position: right center;
	background-repeat: no-repeat;
}

.e-login {
	background-color: rgba(255, 255, 255, 0.75);
	/* background-color: #fff; */
	text-align: left;
	padding: 60px;
	border-radius: 0px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
	/* backdrop-filter: blur(20px); */
}

.e-login h3 {
	color: var(--color-01);
	font-size: 2rem;
}

.e-login p {
	color: var(--color-01);
	font-size: 1.125rem;
}

.e-login .login {
	width: 100%;
	text-align: center;
}

.e-login .login-input {
	color: var(--color-01);
	width: 100%;
	height: 70px;
	font-size: 2.0rem;
	/* height: calc(3.875rem + 2px); */
	text-align: center;
	padding: 15px;
	/* line-height: 1.5; */
	font-weight: 700;
	/* margin-bottom: 0.675rem; */
	border: solid 1px var(--color-01);
	border-radius: 0px;
}

.e-login .login-input::placeholder {
	color: var(--color-01);
	font-size: 1.5rem;
	font-weight: 400;
}

.e-login .login-input:focus {
	outline: 0;
	/*box-shadow:0 0 0 3px rgba(243,147,19, 1.0);*/
	box-shadow: none;
}

.e-login .btn-login {
	color: #fff;
	width: 100%;
	height: 70px;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	background-color: var(--color-01);
	background-image: url("../img/ico-forward-white.svg");
	background-position: center right 30px;
	background-repeat: no-repeat;
	background-size: 24px;
	border-radius: 0px;
	padding: 0px 70px 0px 50px;
	margin-top: 20px;
	overflow: hidden;
	transition: 0.5s;
}

.e-login .btn-login:hover {
	background-position: center right 5px;
}

.e-login .ref {
	font-size: 0.75rem;
	text-align: justify;
	margin-bottom: 0;
}

.e-login .ref a {
	color: var(--color-01);
	text-decoration: underline;
}

.e-login .ref a:hover {
	color: var(--color-01);
	text-decoration: none;
}

/* .e-login .btn-login:focus {
	background-color: #888;
	border: none;
} */

.e-login-bg .logo {
	width: 200px;
}

/* COOKIES */

.box-cookies {
	font-size: 0.75rem;
	background-color: rgba(245, 245, 245, 0.90);
	padding: 10px 100px 10px 10px;
	width: 100%;
	z-index: 1040;
}

.box-cookies a {
	color: var(--color-01);
	font-weight: 700;
	text-decoration: underline;
	transition: all 0.7s;
}

.box-cookies a:hover {
	color: var(--color-01);
	text-decoration: none;
	transition: all 0.3s;
}

.box-cookies p {
	padding: 0;
	margin: 10px;
}

.box-cookies button {
	color: #fff;
	text-transform: uppercase;
	background-color: var(--color-01);
	/* background-color: rgba(50, 58, 63, 0.8); */
	border-radius: 0px;
	background-image: url("../img/ico-close-white.svg");
	background-position: center right 10px;
	background-repeat: no-repeat;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	padding: 10px 40px 10px 20px;
	border: none;
	transition: all 0.5s;
}

.box-cookies button:hover {
	background-color: var(--color-02);
	transition: all 0.5s;
}

.box-cookies button:focus {
	outline: 0;
	box-shadow: none;
}

/* HOP TOP */

.hop-top {
	width: 60px;
	height: 60px;
	border-radius: 0;
	text-align: center;
	/* background-color: rgba(50, 58, 63, 0.8); */
	background-color: var(--color-01);
	position: fixed;
	bottom: 20px;
	right: -60px;
	z-index: 1030;
	/* border: solid 1px var(--color-02); */
	transition: all 0.5s;
}

.hop-top img {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.hop-top:hover {
	background-color: var(--color-02);
	/* border: solid 1px #1b1e4b; */
	transition: all 0.7s;
}

.scroll .hop-top {
	right: 20px;
}




































/* Large devices (desktops, less than 1200px) */
@media (max-width:1199.98px) {

	/* Section 01 */

	.sct-01 .txt-photo {
		font-size: 2.25rem;
		padding-left: 50px;
		padding-right: 40px;
	}

	/* Section Q&A */

	.sct-qaa .card .card-body {
		padding-left: 30px;
	}

	.sct-qaa .card h3 {
		font-size: 1.75rem;
	}

	.sct-qaa .card .author {
		font-size: 1.25rem;
		padding-left: 20px;
		margin-top: 20px;
	}

	.sct-qaa .card .p1 {
		font-size: 1.25rem;
		margin-top: 20px;
	}
	
}

/* Medium devices (tablets, less than 992px) */
@media (max-width:991.98px) {

	.btn-prim {
		font-size: 1.75rem;
		padding: 15px 40px 15px 40px;
	}

	/* NAV */
	/* logo i hamburger */

	.navbar {
		/* max-height: 75px; */
		background-color: rgba(255, 255, 255, 0.85) !important;
	}
	
	.navbar .navbar-brand {
		font-size: 1.25rem;
	}
	
	.dropdown-menu {
		background-color: rgba(255, 255, 255, 0.0) !important;
		border-radius: 0;
		box-shadow: none;
	}

	.scroll .dropdown-menu {
		background-color: rgba(255, 255, 255, 0.85) !important;
	}

	.dropdown-menu .dropdown-item {
		padding: 15px 15px 15px 20px;
		font-size: 1.0rem;
		text-align: left;
		transition: all 0.7s;
	}

	.navbar-toggler {
		padding: 0.8rem 0.8rem;
		font-size: 1.0rem;
		line-height: 1;
		background-color: var(--color-01);
		border: none;
		border-radius: 0;
	}

	.navbar-toggler-icon {
		color: #fff;
	}

	.navbar {
		padding-left: 10px;
		/* background-color: rgba(255, 255, 255, 0.90) !important; */
	}

	.navbar-nav li {
		font-size: 1.0rem;
		padding: 0 0 0 20px;
	}

	.navbar-nav li:first-child {
		padding: 0 0 0 20px;
	}

	.navbar .navbar-nav .nav-link {
		padding: 20px 30px;
		transition: all 0.0s;
	}

	.navbar .navbar-nav .active:before,
	.navbar .navbar-nav .nav-link:hover:before {
		visibility: hidden;
	}

	.navbar .navbar-nav .nav-link.active {
		border-left: 1px solid var(--color-01);
		padding-left: 29px;
	}

	/* Section 01 */

	.sct-01 .txt-photo {
		font-size: 2.0rem;
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Section QUIZ-GAME */

	.quiz-game p {
		font-size: 1.25rem;
	}

	.quiz-game h3 {
		font-size: 2.0rem;
	}


}

/* Small devices (landscape phones, less than 768px) */
@media (max-width:767.98px) {

	.btn-prim {
		font-size: 1.5rem;
		padding: 10px 30px 10px 30px;
	}

	.sct-h2 {
		font-size: 1.5rem;
		padding: 15px 30px;
	}

	.mt-20 {
		margin-top: 10px !important;
	}

	.mt-30 {
		margin-top: 15px !important;
	}

	.mt-40 {
		margin-top: 20px !important;
	}

	.mt-50 {
		margin-top: 25px !important;
	}

	.mt-60 {
		margin-top: 30px !important;
	}

	.mt-80 {
		margin-top: 40px !important;
	}

	.mt-100 {
		margin-top: 50px !important;
	}

	.mt-150 {
		margin-top: 50px !important;
	}

	.pt-20 {
		padding-top: 10px !important;
	}

	.pt-30 {
		padding-top: 15px !important;
	}

	.pt-40 {
		padding-top: 20px !important;
	}

	.pt-50 {
		padding-top: 25px !important;
	}

	.pt-100 {
		padding-top: 50px !important;
	}

	.pt-150 {
		padding-top: 50px !important;
	}

	.pb-100 {
		padding-bottom: 50px !important;
	}

	.pb-150 {
		padding-bottom: 50px !important;
	}

	/* Section HERO */

	.sct-hero h1 {
		font-size: 2.0rem;
	}

	.sct-hero h2 {
		font-size: 1.5rem;
		padding: 15px 20px;
	}

	/* Section 01 */

	.sct-01 .txt-photo {
		font-size: 1.75rem;
		padding: 30px;
	}

	/* Section 02 */

	.card-deck-icons .card .card-img-top {
		max-height: 120px;
		margin: 25px 10px 0 10px;
	}

	.card-deck-icons .card .card-body {
		padding: 10px;
	}

	.card-deck-icons .card h4 {
		color: #ffffff;
		font-size: 1.5rem;
	}

	.card-deck-icons .card p {
		font-size: 1.125rem;
	}

	/* Section Q&A */

	.sct-qaa .card .card-body {
		padding-left: 20px;
	}

	.sct-qaa .card h3 {
		font-size: 1.5rem;
	}

	.sct-qaa .card .author {
		font-size: 1.125rem;
		padding-left: 15px;
		margin-top: 15px;
	}

	.sct-qaa .card .p1 {
		font-size: 1.125rem;
		margin-top: 15px;
	}

	/* FOOTER */

	.footer-logo {
		max-width: 200px;
		margin-bottom: 50px;
	}	

	.footer {
		padding: 50px 20px 50px 20px;
		text-align: left;
	}

	.footer .navi {
		text-align: left;
	}

	.footer .navi li {
		display: block;
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	/* .footer ul li:first-child {
		border-left: solid 1px #ffffff;
	} */

	/* LOGIN */

	.e-login-bg {
		height: 100vh;
		min-height: 500px;
		background-color: #ffffff;
		background-image:  linear-gradient(rgba(255, 255, 255,.85), rgba(255, 255, 255,.75)), url("../img/bg-01.jpg");
		background-position: right center;
		background-repeat: no-repeat;
	}
	
	.e-login {
		background-color: rgba(255, 255, 255, 0.0);
		text-align: left;
		margin-top: 0rem;
		padding: 0px 15px 15px 15px;
		box-shadow: none;
		border-radius: 0;
		/* backdrop-filter: blur(40px); */
	}

	.e-login h3 {
		font-size: 1.5rem;
	}

	.e-login p {
		font-size: 1.0rem;
	}

	.e-login .login-input::placeholder {
		font-size: 1.25rem;
	}

	.e-login .btn-login {
		margin: 15px 0 0 0;
	}

	.e-login .ref {
		text-align: left;
	}
	

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width:575.98px) {

	/* Section HERO */

	.sct-hero h1 {
		font-size: 1.75rem;
	}

	.sct-hero h2 {
		font-size: 1.25rem;
		padding: 10px 15px;
	}

	/* Section 01 */

	.sct-01 .txt-photo {
		font-size: 1.5rem;
		padding: 30px 10px;
	}

	/* Section 02 */

	.card-deck-icons .card .card-img-top {
		max-height: 150px;
		margin: 30px 15px 0 15px;
	}

	.card-deck-icons .card .card-body {
		padding: 0 15px 30px 15px;
	}

	.card-deck-icons .card h4 {
		color: #ffffff;
		font-size: 1.75rem;
	}

	.card-deck-icons .card p {
		font-size: 1.25rem;
	}



}