@import "style.css";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/*default class*/
body {
	-webkit-box-sizing: border-box;
	-moz-box-sizing   : border-box;
	-o-box-sizing     : border-box;
	box-sizing        : border-box;
	font-family       : 'Open Sans', sans-serif;
}


.transition_me {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition   : all 0.3s ease-in-out;
	-o-transition     : all 0.3s ease-in-out;
	transition        : all 0.3s ease-in-out;
}

.index_over {
	z-index: 1000
}

.form-select:focus {
	border-color: none;
}

button:focus:not(:focus-visible),
button,
select,
input,
textarea {
	outline: none;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	margin-bottom: 0px;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus .form-check-input:focus {
	box-shadow: none;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover,
.carousel-control-next,
.carousel-control-prev {
	opacity: 1;
}

.point {
	cursor: pointer;
}

.tiny_font {
	font-size: 12px
}

.back_me {
	background: transparent
}


.carousel-control-next,
.carousel-control-prev {
	width: 7%;
}

/*main-class*/
:root {
	--main--color  : #a5252d;
	--second--color: #fff;
	--third--color : #000;
}

.main_color {
	color: var(--main--color);
}

.second_color {
	color: var(--second--color);
}

.third_color {
	color: var(--third--color);
}

.main_bg {
	background: var(--main--color);
}

.second_bg {
	background: var(--second--color);
}

.third_bg {
	background-color: var(--third--color);
}

.opacity_bg {
	background-color: var(--opacity--back);
}

.our_opacity {
	opacity: 0.4;
}

.uppercase {
	text-transform: uppercase;
}

.my_letter {
	letter-spacing: 1.8px;
}

.my_row {
	align-items    : center;
	justify-content: center;
}

.main_bt {
	background-color: var(--main--color);
	color           : var(--second--color);
}

.main_bt:hover {
	background-color: var(--third--color);
	color           : var(--second--color);
}

.main_link {
	color          : var(--main--color);
	text-decoration: none;
}

.main_link:hover {
	color: var(--third--color);
}

/* start index page*/

.header {
	background-color: #474747;
	width           : 100%;
	height          : 210px;
	position        : relative;
	display         : flex;
	justify-content : center;
}

.header .in_head {
	background-color: #FFF;
	width           : 137px;
	height          : 137px;
	border-radius   : 50%;
	border          : 3px solid var(--third--color);
	position        : absolute;
	top             : 30%;
	z-index         : 999;
}

.body {
	position: relative;
	padding : 30px 0px;
}

.body::after {
	content                : '';
	position               : absolute;
	border-top-left-radius : 50%;
	border-top-right-radius: 50%;
	top                    : -80px;
	background             : var(--second--color);
	padding-top            : 100px;
	z-index                : 200;
	width                  : 100%;
	top                    : -100px;
}

.bio {
	border-radius: 20px;
	text-align   : center;
	padding      : 30px 20px;
	box-shadow   : 0 0 8px -1px #a5252d4a;
	width        : 85%;
}

.bio_2{
	border-radius: 20px;
	text-align   : center;
	padding      : 30px 20px;
	box-shadow   : 0 0 8px -1px #a5252d4a;
	width        : 90%;
	margin: 0px auto;
}

.title {
	text-align: center;
	margin    : 20px 0px;
}

.title::after {
	content         : '';
	position        : absolute;
	width           : 40%;
	height          : 4px;
	background-color: var(--main--color);
	text-align      : center;
	margin          : 0px auto;
	left            : 29%;
}

.i_con {
	border         : 1px solid var(--main--color);
	border-radius  : 50%;
	height         : 40px;
	width          : 40px;
	display        : flex;
	justify-content: center;
	align-items    : center;
}

/* The actual timeline (the vertical ruler) */
.timeline {
	position : relative;
	max-width: 1500px;
	margin   : 0;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
	content         : '';
	position        : absolute;
	width           : 6px;
	background-color: var(--main--color);
	top             : 0;
	bottom          : 0;
	left            : 5%;
	margin-left     : -3px;
}

/* Container around content */
.container_time {
	padding         : 10px 20px;
	position        : relative;
	background-color: inherit;
	width           : 95%;
}

/* The circles on the timeline */
.container_time::after {
	content         : '';
	position        : absolute;
	width           : 30px;
	height          : 30px;
	right           : -17px;
	background-color: var(--main--color);
	top             : 30px;
	border-radius   : 50%;
	z-index         : 1;
}

/* Place the container to the right */
.right {
	left: 5%
}

/* Fix the circle for containers on the right side */
.right::after {
	left: -15px;
}

/* The actual content */
.content {
	padding         : 20px 10px;
	background-color: white;
	position        : relative;
	border-radius   : 6px;
}

.date_line {
	background-color: #EEE;
}