/* reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 1.6rem;
	position: relative;
}
h3 {
	font-size: 3.2rem;
	font-weight: normal;
}
h4 {
	font-size: 2.8rem;
	font-weight: normal;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: #fff;
}
a:hover {
	color: hsl(0, 0%, 0%);
}
.btn {
	padding: 0.3em 0.8em;
	font-size: 2rem;
}
[id] {
	/* scroll-margin-top: 69px; */
}
.md-display {
	display: flex;
	justify-content: center;
	align-items: center;
}

.badge-custom {
	background-color: white;
	color: black;
}
/* pomocnicze */
.hero-shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: -1;
}
.green-color {
	color: #28bd25;
}
.orange-color {
	color: #ffc107;
}
.bg-green-color {
	background-color: #28bd25;
	color: white;
}
.bg-orange-color {
	background-color: #ffc107;
	color: white;
}
.btn-pad {
	padding-top: 3.8rem;
	padding-left: 9rem;
	padding-right: 9rem;
	padding-bottom: 3.8rem;
}
.md-display {
	display: flex;
	justify-content: center;
	align-items: center;
}
/* navbar */
.navbar {
	transition-duration: 0.6s;
	padding: 1.8rem 0;
}
.navbar-nav .nav-link {
	margin-right: 10px;
}
.navbar-brand {
	font-size: 3.6rem;
	text-transform: uppercase;
	font-weight: bold;
}
.nav-link,
.navbar-toogler-icon {
	font-size: 1.8rem;
}
.navbar-toogler {
	padding: 1em 2em;
}

.nav-link {
	position: relative;
}

.nav-link::after {
	content: "";
	opacity: 0;
	height: 2px;
	width: 100%;
	background-color: green;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.7s;
}
.nav-link:hover::after {
	opacity: 1;
}

.tiny {
	padding: 0.5rem 0rem;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4);
	transition-duration: 0.6s;
}
.tiny .navbar-brand {
	font-size: 2.4rem;
	transition-duration: 0.6s;
}

/* header */
header {
	margin-top: 50px;
}
.carousel-item {
	position: relative;
	height: 650px;
	background-position: center;
	background-size: cover;
	z-index: 0;
}
.carousel-img-one {
	background-image: url("../img/head1.jpg");
}
.carousel-img-two {
	background-image: url("../img/head2.jpg");
}
.carousel-img-three {
	background-image: url("../img/head3.jpg");
}

.carousel-indicators [data-bs-target] {
	border-radius: 50%;
	width: 1.2em;
	height: 1.2em;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	width: 1.5em;
	height: 1.5em;
}

.header-btn {
	padding: 1.2em 3.5em 1.2em 3.5em;
	background-color: #28bd25;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 5px;
	color: #fff;
	border: none;
}
.header-btn:hover {
	background-color: #f1f128;
}

/* aboutus card */
.aboutus-bottom i {
	font-size: 3rem;
}
.aboutus-bottom h3 {
	font-size: 2.2rem;
	font-weight: bold;
}
/* aboutus banner */
.aboutus-banner {
	position: relative;
	background-image: url("../img/head3.jpg");
	background-position: 0 75%;
	z-index: 0;
}

/* pricing 1 */
.pricing-box {
	position: relative;
	border-radius: 25px;
	box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.pricing-box:hover {
	transform: scale(1.1);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Dodatkowy mocno widoczny cień na hoverze */
}

.pricing-box h4 {
	font-size: 2rem;
}
.pricing-box i {
	font-size: 2rem;
	margin-right: 1rem;
}
.pricing-box .h1 {
	font-size: 5rem;
}
.pricing-box .f-20 {
	font-size: 2.6rem;
}

/* pricing 2  */
.pricing-box .plan {
	font-size: 34px;
}

.pricing-badge {
	position: absolute;
	top: 0;
	z-index: 999;
	right: 0;
	width: 100%;
	display: block;
	font-size: 15px;
	padding: 0;
	overflow: hidden;
	height: 100px;
}

.pricing-badge .badge {
	float: right;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	right: -67px;
	top: 17px;
	position: relative;
	text-align: center;
	width: 200px;
	font-size: 13px;
	margin: 0;
	padding: 7px 10px;
	font-weight: 500;
	color: #ffffff;
	background: #fb7179;
}

.pricing-box p {
	line-height: 1.7;
}

/* team*/
.team .member {
	position: relative;
	padding: 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	background: #fff;
}
.team .member .teampic {
	overflow: hidden;
	width: 100%;
	border-radius: 50%;
}
.team .member .member-info {
	padding-left: 30px;
}
.team .member h4 {
	font-weight: 700;
	margin-bottom: 5px;
	color: #28bd25;
}
.team .member span {
	display: block;
	padding-bottom: 10px;
	position: relative;
	font-weight: 500;
}
.team .member span::after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 2px;
	background: black;
	bottom: 0;
	left: 0;
}
.team .member p {
	margin: 10px 0 0 0;
}
.team .member .social {
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: start;
}
.team .member .social a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: #eff2f8;
}
.team .member .social a i {
	font-size: 22px;
	color: #28bd25;
	margin: 0 2px;
}
.team .member .social a:hover {
	background: #28bd25;
}
.team .member .social i:hover {
	color: white;
}
.team .member .social a + a {
	margin-left: 8px;
}

/* section ab */

.content-section-b {
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
	padding: 50px 0;
}

.section-heading {
	margin-bottom: 30px;
}
.lead {
	font-size: 1.8rem;
}

.section-heading-spacer {
	border-top: 3px solid #28bd25;
	width: 200px;
	float: left;
}

/* contact */
.contact {
	background-color: #f9f9f9;
}
.contact .contact-form {
	margin: 20px;
}
.contact .form-group {
	margin-bottom: 24px;
}
.contact .card {
	border-radius: 10px;
	box-shadow: 0px 5px 5px -6px black;
}
.contact .row {
	margin-top: 30px;
}
.contact form input {
	padding: 10px;
	color: black;
	border: none;
	outline: none;
	font-size: 1.6rem;
	border-radius: 10px;
	box-shadow: 0px 5px 5px -6px black;
}
.contact form textarea {
	border: none;
	border-radius: 10px;
	resize: none;
	box-shadow: 0px 5px 5px -6px black;
	height: 220px;
}
.contact .submit {
	width: 160px;
	font-size: 1.6rem;
	font-weight: bold;
	background: #ffa500;
	color: white;
	margin-top: 10px;
	transition: 0.5s;
}
.contact .submit:hover {
	width: 170px;
}
/* footer */
.footer_menu ul li a {
	color: #fff;
	transition: 0.3s;
}
.footer_menu ul li a:hover {
	text-decoration: underline;
	color: #dc3545;
}
.footer_profile ul li a {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #fff;
}
.footer_profile ul li a:hover {
	background: #dc3545;
	border-radius: 50%;
}

/* modal-contact */
.modal-contact input,
.modal-contact select,
.modal-contact textarea {
	font-size: 1.6rem;
}
.modal-contact .btn {
	padding: 0.3em 0.8em;
	font-size: 1.5rem;
}

@media (min-width: 576px) {
	.carousel-item {
		height: 100vh;
	}
	.header-btn {
		padding: 2.2em 5.5em 2.2em 5.5em;
	}
}

@media (max-width: 768px) {
	.contact {
		padding: 0;
	}
	body, html {
    overflow-x: hidden;
  }
}
/*  
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
  } */
