@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Roboto:wght@400;500&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

button {
	border: 0;
}

.headerSection {
	margin: 40px 0 40px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navBtn {
	text-decoration: none;
	color: #0d213a;
	padding: 16px 15px 17px 15px;
	border: 1.5px solid #f4f4f7;
	font-size: 14px;
}

.btnBlog {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.btnBlog a,
.btnBlog div {
	margin: 20px 10px;
}

.navBtn:hover {
	border: 1.5px solid #26a1e5;
	color: #26a1e5;
	transition: border 0.3s linear;
}

/* dropdown */
.dropBtn {
	color: #0d213a;
	font-size: 16px;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
	transition: all 0.2s linear;
}

.dropBtnImg {
	margin: 10px 0 0 0;
	transition: all 0.2s linear;
}

.dropdown {
	position: relative;
	display: inline-block;
	transition: all 0.2s linear;
}

.dropdownContent {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	width: 306px;
	transition: all 0.2s linear;
}

.dropdownContentBtn {
	color: #0d213a;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	transition: all 0.2s linear;
}

.dropdownContentBtn:hover {
	color: #26a1e5;
	transition: all 0.2s linear;
}

.dropdown:hover .dropdownContent {
	display: block;
	transition: all 0.2s linear;
}

.dropdown:hover .dropBtn {
	background-color: #f4f4f7;
	transition: all 0.2 linear;
}

.dropBtn:hover {
	color: #0d213a;
	opacity: 54%;
	transition: all 0.2 linear;
}

/* dropdown end */
.firstSectionBtn {
	text-decoration: none;
	color: #0d213a;
	font-size: 16px;
}

.firstSectionBtn:hover {
	color: #0d213a;
	background-color: #f4f4f7;
	opacity: 54%;
	transition: 0.2s linear;
}

.firstSectionNav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.searchInput {
	width: 330px;
	height: 50px;
	padding: 0 0 0 20px;
	border: 0;
	outline: none;
	font-size: 14px;
	margin: 4.5px 0 4.5px 0;
	background-color: #f4f4f7;
}

.search-bg {
	background: #f4f4f7 url('../img/search.png') 292px 16px no-repeat;
}

.firstSection {
	border: 1px solid #f4f4f7;
}

.firstSectionBg {
	height: 685px;
	background: url('../img/headerBackground.png') 100% no-repeat;
	background-position: center;
}
.book-card img {
	max-width: 350px;
}
.secondeSectionBlog {
	background-color: #f4f4f7;
	border: 2px solid #f4f4f7;
	padding: 60px;
}

.secondeBlogInner {
	display: flex;
}

.leftBlog {
	margin: 0 37px 0 0;
	max-width: 300px;
	width: 100%;
}

.leftBlog img {
	max-width: 300px;
	min-width: 120px;
	width: 100%;
}

.blog-h1 {
	color: #0d213a;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	margin: 0 0 40px 0;
}

.blog-header {
	color: #26a1e5;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	margin: 0 0 30px 0;
}

.blog-h2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	max-width: 500px;
	width: 100%;
	margin: 0 0 20px 0;
}

.blog-p {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #0d213a;
	opacity: 75%;
	margin: 0 0 30px 0;
	width: 100%;
}

.blog-p2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: #0d213a;
	opacity: 54%;
	margin: 0 0 47px 0;
}

.blogBtn {
	padding: 17px 32px;
	text-decoration: none;
	color: #fff;
	background-color: #26a1e5;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	border: 0;
}

.thirdSection {
	margin: 120px 0 0 0;
}

.thirdBlogInner {
	display: flex;
}

.card {
	padding: 30px;
	border: 1px solid #e7e8eb;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

.card-p {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: #0d213a;
	opacity: 54%;
	margin: 0 0 10px 0;
}

.card-h3 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	color: #0d213a;
	margin: 0 0 10px 0;
}

.card-p2 {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #0d213a;
	opacity: 54%;
}

.firstp {
	margin: 0 0 39px 0;
}

.secondep {
	margin: 0 0 26px 0;
}

.thirdp {
	margin: 0 0 26px 0;
}

.card-a {
	text-decoration: none;
	color: #26a1e5;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
}

.fourthSection {
	margin: 120px 0 0 0;
}

.fourthBlogInner {
	display: flex;
	justify-content: space-between;
}

.info-card {
	border: 1px solid #e7e8eb;
	max-width: 412px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.info-card:nth-child(1),
.info-card:nth-child(2) {
	margin: 0 8px 0 0;
}

.info-card:nth-child(1) .card-img {
	height: 100%;
}

.info-card:nth-child(3) .card-img {
	height: 100%;
}

.left-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 7%;
}

.fifthSectionCard .left-card {
	z-index: 2;
}

.fifthSectionCard span {
	background: linear-gradient(
		90deg,
		#f4f4f7 -1.11%,
		rgba(244, 244, 247, 0) 100%
	);
	height: 100%;
	position: absolute;
	max-width: 353px;
	width: 100%;
	z-index: 1;
	left: 15%;
	top: 0;
}

.authors-guideSection img {
	width: 100%;
}

.btn-img {
	padding: 19px;
	border: 1.5px solid #0d213a;
	border-radius: 50px;
}

.first-info-card {
	background-color: #ebf8ff;
}

.seconde-info-card {
	background-color: #cfebd9;
}

.third-info-card {
	background-color: #ffedd6;
}

.card-img {
	position: relative;
	max-width: 100px;
	min-width: 67px;
	width: 100%;
}

.right-card {
	display: flex;
	align-items: flex-end;
}

.first-info-card .right-card {
	width: 55%;
}

.seconde-info-card .right-card {
	width: 62;
}

.fifthSection {
	margin: 120px 0 0 0;
}

.fifthSectionCard {
	background-color: #f4f4f7;
	padding: 60px;
	position: relative;
}

.fifthSectionCard .left-card {
	margin: 0;
}

.fifthSectionCard .right-card {
	position: absolute;
	right: 0;
	top: 0;
	justify-content: flex-end;
	width: 100%;
	overflow: hidden;
}

.fifthSectionCard .right-card img {
	width: 100%;
	max-width: 1028px;
	min-width: 800px;
}

.fifthSectionSearchInput {
	width: 100%;
	height: 50px;
	padding: 0 0 0 20px;
	border: 0;
	outline: none;
	font-size: 14px;
	background-color: #e7e8eb;
	margin: 0 10px 0 0;
}

.cardInput {
	display: flex;
	margin: 65px 0 0 0;
}

.fifthSectionCard {
	display: flex;
	height: 100%;
}

.fifthSectionh2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
	color: #0d213a;
	width: 435px;
}

.fifthSectionp {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #0d213a;
	opacity: 54%;
	margin: 10px 0 0 0;
}

.sixthSection {
	margin: 120px 0 0 0;
}

.seventhSection {
	margin: 150px 0 0 0;
}

.seventhSectionBlog {
	display: flex;
	justify-content: space-between;
}

.seventhSectionp {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	line-height: 12px;
	color: #0d213a;
	opacity: 54%;
	width: 485px;
	margin: 0 0 60px 0;
}

.seventhSectionhr {
	border: 2px solid #0d213a;
	opacity: 22%;
}

.left-blog-img {
	margin: 0 0 60px 0;
}

.footer {
	margin: 49px 0 49px 0;
}

.footerInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.leftFooter {
	display: flex;
	align-items: center;
}

.leftFooterp {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #0d213a;
	opacity: 54%;
}

.leftFooterImg {
	height: 100%;
}

.networks {
	margin: 0 0 0 29px;
}

.container-my {
	max-width: 640px;
	margin: auto;
	padding: 0 16px;
}

.aboutImg {
	margin: 40px 0 40px 0;
	width: 100%;
}

ul.breadcrumb li {
	display: inline;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #0d213a;
}

ul.breadcrumb a {
	text-decoration: none;
	color: #0d213a;
	opacity: 54%;
}

ul.breadcrumb a:hover {
	opacity: 100%;
	transition: all 0.3s linear;
}

ul.breadcrumb li + li:before {
	color: black;
	content: '/\00a0';
}

.breadcrumb {
	margin: 0 0 30px 0;
}

.abouth3 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
	margin: 0 0 30px 0;
}

.paragraph p {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	text-align: justify;
	color: rgba(13, 33, 58, 0.75);
	margin: 0 0 20px 0;
}

.paragraph h3 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
}

.paragraph h4 {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	color: #0d213a;
	margin: 40px 0 20px 0;
}

.ident {
	text-indent: 55px;
}

.homeBtn {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	color: #0d213a;
	padding: 17px 41px;
	border: 1.5px solid #0d213a;
	text-decoration: none;
}

.homeBtn:hover {
	border: 1.5px solid #26a1e5;
	color: #26a1e5;
	transition: all 0.3s linear;
}

.btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 60px 0 0 0;
}

.col-md-auto {
	margin: 0 0 50px 0;
}

.margin-top {
	margin: 30px 0 0 0;
}

.archiveCard {
	background: #ffffff;
	border: 1px solid #e7e8eb;
	display: flex;
	flex-direction: column;
	padding: 14px;
	margin: 10px 10px 0 10px;
}

.archiveArticles {
	margin: 22px 0 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.archivep {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #0d213a;
}

.archiveh2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
	margin: 40px 0 10px 0;
}

.nextBtn {
	margin: 60px 0 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.prev img {
	padding: 19px;
	border: 1.5px solid #0d213a;
	border-radius: 50px;
	transform: rotate(-180deg);
	opacity: 54%;
}

.next img {
	padding: 19px;
	border: 1.5px solid #0d213a;
	border-radius: 50px;
}

.nextBtn p {
	margin: 0 57px;
}

.toTop:hover {
	opacity: 54%;
	transition: all 0.2s linear;
}

.tomSection {
	margin: 40px 0 0 0;
}

.tom-h2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
	margin: 20px 0 0 0;
}

.downloadBtn {
	display: flex;
	align-items: center;
	padding: 14px 24px;
	border: 1.5px solid #28363d;
	text-decoration: none;
	width: 106px;
}

.downloadBtn-margin {
	margin: 30px 0 40px 0;
}

.pdf-p {
	margin: 0 14px 0 0;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	color: #0d213a;
}

.hr {
	border: 1px solid #f4f4f7;
}

.tom-h3 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
	margin: 60px 0 0 0;
}

.download-article {
	color: #0d213a;
	opacity: 54%;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
}

.download-h5 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #0d213a;
	margin: 10px 0 14px 0;
}

.download-views {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	color: #0d213a;
	opacity: 54%;
}

.cardPdf-p {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	color: #0d213a;
	opacity: 54%;
}

.download {
	margin: 0 0 0 17px;
}

.align-right {
	text-align: right;
}

.DownloadCard {
	background: #ffffff;
	border: 1px solid #e7e8eb;
	display: flex;
	justify-content: space-between;
	padding: 15px;
	margin: 20px 0 0 0;
}

.downloadCard-left {
	width: 75%;
}

.downloadCard-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.downloadCard-bottom {
	display: flex;
	align-items: center;
}

.paragraph-h2 {
	margin: 30px 0;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
	color: #0d213a;
}

.color-blue {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	opacity: 100%;
	color: #0d213a;
}

.reviewers-work-order,
.authors-guide {
	margin: 40px 0 0 0;
}

.reviewers-work-order img {
	width: 100%;
}

.description {
	margin: 0 0 0 40px;
	width: 100%;
}

.description-h5 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #0d213a;
	margin: 45px 0 0 0;
}

.description-tom {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: #0d213a;
	opacity: 54%;
	margin: 30px 0 0 0;
}

.description-h3 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 25px;
	color: #0d213a;
	margin: 10px 0 0 0;
}

.description-p {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #0d213a;
	opacity: 54%;
	margin: 30px 0 0 0;
}

.description-authors {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #26a1e5;
	margin: 10px 0 0 0;
}

.book-card {
	margin: 30px 0 0 0;
	display: flex;
	width: 100%;
}

.book-card img {
	width: fit-content;
	height: fit-content;
}

.description-btns {
	display: flex;
	align-items: center;
	margin: 50px 0 0 0;
}

.description-link {
	margin: 10px 0 0 0;
}

.description-h6 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #0d213a;
	margin: 10px 0 0 0;
}

.description-margin {
	margin: 126px 0 0 65px;
}

.articleSection {
	margin: 0 0 60px 0;
}

.articleSecondeSection {
	margin: 20px 0 0 0;
}

.search-btn {
	background: #26a1e5;
	padding: 16px;
	display: flex;
	align-items: center;
}

.search {
	display: flex;
	align-items: center;
	margin: 30px 0 0 0;
}

.search-h1 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
	margin: 20px 0 0 0;
}

.search-h2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	color: #000000;
	margin: 40px 0 0 0;
}

.date-time select {
	border: 1.5px solid #f4f4f7;
	padding: 12px;
	color: rgba(13, 33, 58, 0.54);
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	margin: 10px 10px 0 0;
	outline: none;
}

.date-time {
	display: flex;
	justify-content: space-between;
}

.search-p {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	text-align: justify;
	color: rgba(13, 33, 58, 0.54);
	margin: 30px 0 0 0;
}

.result-h1 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
}

.result-card {
	display: flex;
	align-items: center;
	margin: 40px 0 0 0;
}

.result-h1 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	color: #26a1e5;
}

.result-p {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: rgba(13, 33, 58, 0.75);
	margin: 20px 0 0 0;
}

.result-views {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: rgba(13, 33, 58, 0.54);
	margin: 20px 0 0 0;
}

.result-description {
	margin: 0 0 0 22px;
}

.default-input {
	border: 1.5px solid #f4f4f7;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: rgba(13, 33, 58, 0.42);
	padding: 12px;
	width: 220px;
	margin: 10px 0 0 0;
	outline: none;
}

.search-hr {
	border: 1px solid #f4f4f7;
	margin: 30px 0 0 0;
}

.result-h3 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
	margin: 40px 0 0 0;
}

.signup-h1 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	color: #0d213a;
	margin: 40px 0 0 0;
}

.signup-h2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	color: #0d213a;
	margin: 40px 0 0 0;
}

.signup {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.signup-input {
	margin: 20px 0 0 0;
	display: flex;
	flex-direction: column;
}

.signup-input input {
	width: 310px;
	margin: 10px 0 0 0;
}

.signup-input p {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	text-align: justify;
	color: rgba(13, 33, 58, 0.54);
}

/* placeholder color */
::-webkit-input-placeholder {
	/* WebKit browsers */
	color: rgba(13, 33, 58, 0.42);
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: rgba(13, 33, 58, 0.42);
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: rgba(13, 33, 58, 0.42);
}

:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: rgba(13, 33, 58, 0.42);
}

/* placeholder color end */

.span-blue {
	color: #26a1e5;
}

.checkbox input {
	padding: 9px 7px;
	border: 0;
	cursor: pointer;
	zoom: 2;
	margin: 0 5px 0 0;
}

.checkbox {
	display: flex;
	width: 48%;
	margin: 20px 0 0 0;
}

.checkbox p {
	flex-wrap: wrap;
	align-items: center;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	line-height: 14px;
	color: #0d213a;
}

.consent {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0 0 0;
}

.checkbox a {
	text-decoration: none;
	color: #26a1e5;
}

.signup-btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 30px 0 0 0;
}

.signup-btn {
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	color: #ffffff;
	padding: 17px 38px;
	background-color: #26a1e5;
	margin: 10px 0 0 0;
}

.signin-btn {
	padding: 17px 24px;
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	color: #0d213a;
	border: 1.5px solid #f4f4f7;
	margin: 10px 0 0 0;
}

.forgot-pass {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: #0d213a;
	text-decoration: none;
	margin: 10px 0 0 0;
}

.forgot-pass:hover {
	opacity: 52%;
	transition: all 0.3s linear;
}

.error-blog {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error-blog h1 {
	font-size: 400px;
	background: linear-gradient(180deg, #f4f4f7 0%, rgba(255, 255, 255, 0) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.error-blog h2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 39px;
	text-align: center;
	color: #0d213a;
	position: absolute;
	top: 200px;
	width: 405px;
}

.error-blog p {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	color: rgba(13, 33, 58, 0.75);
	position: absolute;
	top: 300px;
	width: 353px;
}

.error-btn-top {
	top: 400px;
	position: absolute;
}

.search-btn-mobile {
	display: none;
}

.rightFooter {
	display: flex;
}

.tomImg {
	max-width: 336px;
	min-width: 70px;
	width: 100%;
}
.article_page_links {
	margin: 20px 0 0 0;
}
.article_page_links a::after {
	content: '/';
}
.article_page_links a:last-child::after {
	content: '';
}
.article_page_links a {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #26a1e5;
	text-decoration: none;
}
@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1399px) {
	.info-card {
		max-width: 355px;
	}

	.fifthSectionCard span {
		left: 0;
	}
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 1199px) {
	.mobile-header.height {
		height: 470px;
	}

	.btnBlog {
		flex-direction: column;
	}

	.nav li {
		margin: 16px 0;
	}

	.header-burger {
		display: block;
		position: relative;
		width: 30px;
		height: 20px;
	}

	.header-burger p {
		margin: 0 0 0 35px;
	}

	.header-burger::before,
	.header-burger::after {
		content: '';
		position: absolute;
		background-color: #585858;
		width: 100%;
		height: 2px;
		left: 0;
	}

	.header-burger::before {
		top: 0;
		transition: all 0.3s linear;
	}

	.header-burger::after {
		bottom: 0;
		transition: all 0.3s linear;
	}

	.header-burger span {
		position: absolute;
		background-color: #585858;
		left: 0;
		width: 100%;
		height: 2px;
		top: 9px;
		transition: all 0.3s linear;
	}

	.header-burger.active span {
		transform: scale(0);
		transition: all 0.3s linear;
	}

	.header-burger.active {
		z-index: 7;
		background-color: #fff;
	}

	.header-burger.active::before {
		transform: rotate(45deg);
		top: 9px;
		transition: all 0.3s linear;
	}

	.header-burger.active::after {
		transform: rotate(-45deg);
		bottom: 9px;
		transition: all 0.3s linear;
	}

	.btnBlog {
		top: -1000px;
		position: absolute;
	}

	.btnBlog.active {
		position: absolute;
		z-index: 6;
		top: 29%;
		display: flex;
		flex-direction: column;
		background-color: #fff;
		overflow: auto;
		max-width: 936px;
		width: 100%;
	}

	.dropdownContent,
	.dropdownContentBtn {
		margin: 0 !important;
	}

	.leftBlog img {
		width: 100%;
	}

	.fifthSectionCard {
		padding: 44px;
	}

	.book-card {
		flex-direction: column;
	}

	.description {
		width: 100%;
		margin: 0;
	}
}

@media only screen and (max-width: 992px) {
}

@media only screen and (max-width: 991px) {
	.card-h2 {
		font-weight: 500;
		font-size: 14px;
		line-height: 17px;
	}

	.btn-img {
		padding: 10px;
	}

	.card {
		padding: 10px;
	}

	.card:nth-child(1),
	.card:nth-child(2) {
		margin: 0 8px 0 0;
	}

	.card-h3 {
		font-weight: 500;
		font-size: 14px;
		line-height: 17px;
	}

	.card-p2 {
		font-weight: 400;
		font-size: 10px;
		line-height: 12px;
	}

	.card-a {
		font-weight: 500;
		font-size: 10px;
		line-height: 12px;
	}

	.blog-h1 {
		margin: 0 0 16px 0;
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.fifthSectionCard span {
		display: none;
	}

	.btnBlog.active {
		max-width: 696px;
	}

	.secondeSectionBlog {
		padding: 25px;
	}

	.fifthSectionCard {
		padding: 20px;
	}

	.blog-h2 {
		font-weight: 500;
		font-size: 16px;
		line-height: 19px;
	}

	.blog-p {
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
	}

	.blog-p2 {
		font-weight: 500;
		font-size: 8px;
		line-height: 10px;
	}

	.secondeSectionBlog.blogBtn {
		font-weight: 500;
		font-size: 14px;
		line-height: 16px;
		height: 40px;
		width: 140px;
		position: relative;
		display: flex;
	}

	.blog-header {
		font-weight: 500;
		font-size: 8px;
		line-height: 10px;
	}
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 767px) {
	.leftBlog {
		margin: 0 20px 0 0;
	}

	.leftBlog img {
		max-width: 200px;
		min-width: 120px;
	}

	.fifthSectionh2 {
		margin: 0;
	}

	.fifthSectionCard {
		flex-direction: column;
	}

	.fifthSectionCard .right-card {
		position: relative;
	}

	.fifthSectionCard .left-card {
		padding: 20px;
	}

	.fifthSectionCard {
		padding: 0;
	}

	.fifthSectionCard span {
		display: block;
		background: linear-gradient(
			90deg,
			#f4f4f7 -1.11%,
			rgba(244, 244, 247, 0) 100%
		);
		transform: rotate(90deg);
		left: 35%;
		max-width: 170px;
		top: 15%;
	}

	.fifthSectionCard .cardInput {
		flex-direction: column;
		align-items: flex-start;
	}

	.fifthSectionCard .cardInput a {
		margin: 10px 0 0 0;
	}

	.fifthSectionCard {
		overflow: hidden;
	}

	.firstSectionBg {
		background-size: 900px;
		height: 364px;
	}

	.headerSection {
		flex-direction: column;
	}

	.headerSection a:nth-child(1) {
		margin: 0 0 40px 0;
	}

	.col-md-auto {
		width: 50%;
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.fifthSectionh2 {
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.fifthSectionp {
		font-weight: 400;
		font-size: 10px;
		line-height: 12px;
	}

	.fifthSectionSearchInput::placeholder {
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
	}

	.blogBtn {
		font-weight: 500;
		font-size: 14px;
		line-height: 16px;
	}

	.btnBlog.active {
		min-width: 320px;
		top: 100%;
	}

	.search-btn-mobile {
		display: block;
		padding: 10px;
		background-color: #f4f4f7;
	}

	.search-bg {
		background: #f4f4f7;
	}

	body.active::before {
		content: '';
		background: rgba(13, 33, 58, 0.65);
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 5;
	}

	body.active .firstSection .container {
		background-color: #fff;
	}

	.mobile-bg.active {
		z-index: 6;
	}

	.firstSection .searchInput {
		display: none;
	}

	.firstSection .searchInput.active {
		display: block;
		margin: 10px;
	}

	.searchBlog {
		z-index: 7;
		background-color: #fff;
		width: 100%;
	}

	.mobile-header {
		width: 100%;
		margin: 15px;
		position: absolute;
		top: 0;
		background: #fff;
	}

	.mobile-header.active {
		z-index: 6;
	}

	.mobile-header.active .search-btn-mobile {
		z-index: 1;
	}

	.mobile-header .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0;
	}

	.firstSectionNav {
		position: relative;
		justify-content: center;
		height: 70px;
	}

	.header-burger p {
		z-index: 6;
	}

	.search-btn-mobile.active {
		z-index: 8;
	}

	.date-time {
		flex-direction: column;
	}

	.tom-h2 {
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.tom-h3 {
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.download-h5 {
		font-weight: 500;
		font-size: 14px;
		line-height: 17px;
	}

	.download-article {
		font-weight: 400;
		font-size: 8px;
		line-height: 9px;
	}

	.download-views {
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
	}

	.tomImg {
		max-width: 200px;
		width: 100%;
	}

	.book-card img {
		max-width: 200px;
	}
}

@media only screen and (max-width: 576px) {
}

@media only screen and (max-width: 575px) {
	.thirdSectionBlog {
		overflow: auto;
	}

	.thitdSectionBlog::-webkit-scrollbar {
		width: 0;
	}

	.thirdBlogInner {
		min-width: 700px;
	}

	.fourthBlogInner {
		overflow: auto;
	}

	.card-p,
	.card-p2 {
		margin: 0;
	}

	.info-card {
		min-width: 170px;
	}

	.secondeSectionBlog {
		padding: 15px 0;
		min-height: 450px;
		height: 100%;
	}

	.col-md-auto:first-child img {
		width: 70%;
	}

	.col-md-auto img {
		width: 100%;
	}

	.blogBtn {
		padding: 12px 22px;
	}

	.footerInner {
		flex-direction: column;
		align-items: flex-start;
	}

	.networks {
		margin: 35px 30px 0 0;
	}

	.networks:last-child {
		margin-right: 0;
	}

	.left-blog-img {
		max-width: 240px;
		width: 100%;
	}

	.abouth3 {
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.paragraph p {
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
	}

	.archiveh2 {
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.archivep {
		font-weight: 500;
		font-size: 12px;
		line-height: 15px;
	}

	.paragraph-h2 {
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.signup-input input {
		width: 288px;
	}

	.signup-h1 {
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.signup-h2 {
		font-weight: 500;
		font-size: 16px;
		line-height: 19px;
	}

	.checkbox {
		width: 100%;
	}

	.consent {
		flex-direction: column;
	}

	.date-time select {
		margin: 0;
	}

	.result-h1 {
		font-weight: 500;
		font-size: 14px;
		line-height: 17px;
	}

	.result-p {
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
	}

	.result-views {
		font-weight: 500;
		font-size: 8px;
		line-height: 10px;
	}

	.result-description {
		margin: 0 0 0 12px;
	}

	.nextBtn p {
		font-weight: 500;
		font-size: 14px;
		line-height: 16px;
	}

	.next img {
		padding: 14px;
	}

	.prev img {
		padding: 14px;
	}

	.error-blog h2 {
		width: 100%;
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.error-blog h1 {
		font-size: 180px;
	}

	.error-blog p {
		width: 100%;
		font-weight: 400;
		font-size: 12px;
		line-height: 14px;
	}

	.errorSection {
		height: 400px;
	}

	.description-h3 {
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}

	.description-h6 {
		font-weight: 500;
		font-size: 12px;
		line-height: 15px;
	}

	.description-h5 {
		font-weight: 500;
		font-size: 12px;
		line-height: 15px;
	}

	.description-authors {
		font-weight: 500;
		font-size: 12px;
		line-height: 15px;
	}

	.description-tom {
		font-weight: 500;
		font-size: 12px;
		line-height: 12px;
	}
}

@media only screen and (max-width: 546px) {
}

@media only screen and (max-width: 545px) {
	.seventhSectionBlog {
		position: relative;
	}

	.seventhSectionBlog .right-blog {
		position: absolute;
		top: 0;
		right: 0;
	}

	.seventhSectionp {
		width: 100%;
	}

	.fifthSectionCard .right-card img {
		min-width: 590px;
	}

	.fifthSectionCard span {
		top: 25%;
	}
}
