@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

.inter-regular {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.inter-bold {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}


.roboto-regular {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.roboto-bold {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.icon-link {
    display: flex;
    align-items: center;
    text-decoration: none; 
    color: #000; 
}

.icon-link .fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; 
    height: 30px; 
    background-color: #000; 
    border-radius: 50%; 
    color: #fff; 
    font-size: 16px;
    margin-right: 2px;
}

.icon-link .fa.nob {
	background: none;
	color: #a9a9a9;
	font-size: 9px;
	width: 20px;
}

.text-content {
    font-size: 14px; /* Adjust text size as needed */
    line-height: 1.5; /* Adjust line height if needed */
}


@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #fff;
	background: #333333 url("../images/bg-iee.webp") top center no-repeat;
	background-size: cover;
}

h1,
.h1 {
	font-size: 32px;
	font-family: "Inter", sans-serif;
	font-weight: 600;
}

@media (min-width: 1200px) {

	h1,
	.h1 {
		
	}
}

h2,
.h2 {
	font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

	h2,
	.h2 {
		font-size: 2rem;
	}
}

h3,
.h3 {
	font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {

	h3,
	.h3 {
		font-size: 1.75rem;
	}
}

h4,
.h4 {
	font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {

	h4,
	.h4 {
		font-size: 1.5rem;
	}
}

h5,
.h5 {
	font-size: 1.25rem;
}

h6,
.h6 {
	font-size: 1rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

b,
strong {
	font-weight: bolder;
}

small,
.small {
	font-size: 0.875em;
}

/* Start */

p .fa {
    margin: 0 8px; /* Space between text and icon */
    color: #000; /* Icon color */
    font-size: 16px; /* Adjust icon size as needed */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base style for animated elements */
.animated-item {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* Apply delays to create a sequential effect */
.anitem-1 {
    animation-delay: 0s; /* First item */
}

.anitem-2 {
    animation-delay: 0.3s; /* Second item */
}

.anitem-3 {
    animation-delay: 0.6s; /* Third item */
}


.top-container{
	display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.top-container .top-text{
	color: #fff;
}
.top-container .top-text a.back{
	color: #fff;
	text-decoration: none;
}
.top-container .top-text a.back:hover{

}
.top-container .top-img{
	width: 100px;
	
}
.top-container .top-img img{
	width: 100%;
}

.box-steps {
	margin: 30px auto 20px;
	width: max-content;
}

.box-steps ul {
	display: flex;
	margin: 0;
	padding: 0;
}

.box-steps li {
	display: block;
	font-size: 22px;
	font-weight: 700;
	list-style-type: none;
	background-color: #bfbfbf;
	color: #a9a9a9;
	padding: 0;
}

.box-steps li.active {
	background-color: #fff;
	color: #000;
}

.box-steps li.number {
	padding: 6px 0;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	text-align: center;
}

.box-steps li.line {
	background: #C8C8C8;
	margin: 23.3px 0 29.5px 0;
	width: 104px;
	height: 1px;
}

.box-option-container{
	display: flex;
	justify-content: center; 
	gap: 40px; 
}

.box-option{
	color: #fff;
	border-radius: 32px;
	position: relative;
	overflow: hidden;
	height: 400px;
	flex: 1 1 calc(33.333% - 20px); 
	max-width: 300px;
	z-index: 1;
	border: 4px solid #333; /* Initial transparent border */
    transition: color 0.3s ease; 
}

.box-option .front-text{
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7049194677871149) 35%, rgba(0, 0, 0, 0.888) 100%);
	font-size: 13px;
	text-align: left;
	padding: 100px 30px 40px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 100%;
}

@media (max-width: 991px) { 
	.top-container{
			display: block;
	}
	.top-container div{
			text-align: center;
			margin-bottom: 10px;
	}
	.top-container .top-img{
			width: 100%;
	}
	.top-container .top-img img{
			width: 50%;
	}
	.box-steps {
		margin: 50px auto 50px;
		width: max-content;
	}
	.box-option-container {
			flex-wrap: wrap; 
			padding: 0 10px;
	}
	.box-option {
			max-width: 100%; 
			margin-bottom: 0px; 
			flex: auto;
			height: 370px;
	}
	.box-option .front-text h3{
		font-size: 25px !important;
	}
}
@media (max-width: 415px) { 
	.top-container .top-img img{
		width: 30%;
}
	.box-steps{
		width: auto;
		text-align: center;
	}
	.box-option-container{
		gap: 10px; 
	}
}


.box-option .front-text h3{
	font-family: "Inter", sans-serif;
	font-size: 20px;
	font-weight: 700;
}

.box-option .back-image{
	transition: transform 2s, filter 1s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
}
.box-option:hover .back-image{
  transform: scale(1.2);
}