@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
body {
	margin: 0;
	padding: 0;
	font-family: 'Nunito', sans-serif;
}
h1, h2, h3, h4, h5 { font-family: 'Alice', serif }
a:hover { color: #c8a165 }
.mt15 { margin-top: 15px }
.mt25 { margin-top: 25px }
.mr15 { margin-right: 15px }
.mr25 { margin-right: 25px }
.flex_box { display: flex }

@media (min-width: 1200px) and (max-width: 1299px) {
	.menu_container { width: 1170px }
}
@media (min-width: 1300px) and (max-width: 1409px) {
   .menu_container { width: 1270px }
}
@media (min-width: 1410px) and (max-width: 1589px){
    .menu_container { width: 1380px }
}
@media (min-width: 1590px){
    .menu_container { width: 1560px }
}
.menu_container {
	display: flex;
	margin: 25px auto;
	
}
.menu_container>div {
	flex-grow: 1;
}
.menu_container ul  {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
    font-weight: 600;
    text-transform: uppercase;
}
.menu_container li {
	list-style: none;
}
.menu_container li a {
    text-decoration: none;
    color: #222;
}
.menu_wrap {
	background-color: #f3f3f1;
}
.menu_container .app_logo {
	max-width: 250px;
	margin-right: 15px;
}
.menu_container .app_logo img {
	max-width: 100%;
	max-height: 100%;
}
.menu_container .app_menu {
	display: flex;
	justify-content: center;
}
.menu_container .app_menu li {
	padding: 0 10px;
}
.menu_container .app_menu li a {
	padding: 10px 0;
	position: relative
}
.menu_container .app_menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    text-align: center;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #c87065;
    transition: all 500ms ease 0s;
}
.menu_container .app_menu li a:hover { color: #c87065 }
.menu_container .app_menu li a:hover::before { width: 40% }
.menu_container .app_tools {
	display: flex;
	justify-content: center;
}
.menu_container .app_tools a {
	display: flex;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #fff;
	padding: 7px;
	cursor: pointer;
    align-items: center;
    justify-content: center;
}
.menu_container .app_tools a img { max-width: 100% }
.menu_container .app_tools li:hover,
.menu_container .app_tools li:hover a {
    border-radius: 0;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}
.menu_container .app_tools li {
	margin: 0 10px;
	position: relative;
	border-radius: 50%;
}
.menu_container .app_tools li > div {
	display: none;
	opacity: 0;
	position: absolute;
	left: -150%;
	border-radius: 10px;
	overflow: hidden;
}
.menu_container .app_tools li .lang_box a {
    display: flex;
    padding: 10px 30px;
    background-color: #fff;
    width: auto;
	border-radius: 0;
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
	cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
}
.menu_container .app_tools li .lang_box a:hover { background-color: #eee }
.menu_container .app_tools li:hover { box-shadow: 0px 0px 30px 1px rgb(0 0 0 / 6%) }
.menu_container .app_tools li:hover > div {
    display: block;
    opacity: 1;
    background: #fff;
    z-index: 9;
}

.menu_container .app_tools li .search_box {
	padding: 5px;
	width: 300px;
}
.menu_container .app_tools li .search_box form {
	position: relative;
	display: flex;
	align-items: center;
}
.menu_container .app_tools li .search_box input {
	width: 100%;
	border: none;
	outline: none;
}
.menu_container .app_tools li .search_box button {
	position: absolute;
	right: 2px;
	border: none;
	border-radius: 20px;
}
.module_title {
    text-align: center;
    margin: 25px 0 15px;
	padding-bottom: 15px;
    font-size: 32px;
	position: relative;
}
.module_title::before {
	background: #c87065 none repeat scroll 0 0;
	margin: 0 auto;
	right: 0;
	left: 0;
	bottom: 0;
	content: "";
	height: 2px;
    position: absolute;
    width: 50px;
}
.qs_box {
    transition: 0.3s ease;
    background-color: #fff;
    border: 1px solid #eeeeee;
	border-radius: 5px;
	text-align: center;
	padding: 15px 5px;
	margin: 0 1px;
	position: relative;
	transition: 0.3s ease;
}
.qs_box:hover{ box-shadow: 0px 0px 18px 1px rgb(0 0 0 / 6%) }
.qs_box a {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	text-decoration: none;
}
.qs_box h5 {
	color: #c87065;
	font-size: 28px;
	transition: 0.3s ease;
	margin-bottom: 15px;
}
.qs_box h6 {
	color: #434343;
	font-size: 18px;
	font-weight: 600;
	transition: 0.3s ease;
	margin-bottom: 20px;
}
.qs_box:hover span {
	opacity: 1;
	bottom: 10px;
}
.qs_box:hover h5 { margin-bottom: 5px }
.qs_box:hover h6 { margin-bottom: 30px }
.qs_box span {
	transition: 0.3s ease;
	opacity: 0;
	margin: 0;
	background: #c8a165;
	color: #fff;
	width: auto;
    padding: 0 5px;
    border-radius: 3px;
    font-size: 14px;
	position: absolute;
	bottom: -100px;
	left: 0;
	right: 0;
	margin: auto;
	width: 100px; 
}

.lesson_button {
	position: relative;
	box-shadow: 0px 0px 30px 1px rgba(0,0,0,0.06);
	border-radius: 10px;
	background-color: #ffffff;
	text-align: center;
	padding: 50px 5px 43px;
	margin-bottom: 25px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.lesson_button:before, .lesson_button:after, .lesson_button span:before, .lesson_button span:after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	border-width: 1px 0px 0px 1px;
	border-radius: 10px 0px 0px 0px;
	z-index: -1;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.lesson_button:after{
	top: auto;
	bottom: 0;
	border-radius: 0px 0px 0px 10px;
	border-width: 0px 0px 1px 1px;
}
.lesson_button .lesson_link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.lesson_button span:before{
	left: auto;
	right: 0;
	border-radius: 0px 10px 0px 0px;
	border-width: 1px 1px 0px 0px;
}
.lesson_button span:after{
	top: auto;
	left: auto;
	bottom: 0;
	right: 0;
	border-radius: 0px 0px 10px 0px;
	border-width: 0px 1px 1px 0px;
}
.lesson_button:hover:before{
	width: 90px;
	height: 60px;
	border-color: #c8a165;
}
.lesson_button:hover:after{
	width: 60px;
	height: 90px;
	border-color: #c8a165;
}
.lesson_button:hover span:before{
	width: 60px;
	height: 90px;
	border-color: #c8a165;
}
.lesson_button:hover span:after{
	width: 90px;
	height: 60px;
	border-color: #c8a165;
}
.lesson_button .lesson_icon { margin-bottom: 15px }
.lesson_button .lesson_icon img { border-radius: 50% }
.lesson_button h4{
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 17px;

	font-size: 18px;
	color: #222222;
	font-weight: 600;
}
.lesson_button h4:before, .lesson_button h4:after{
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	width: 104px;
	height: 1px;
	background-color: #c8a165;
}
.lesson_button h4:after{
	width: 56px;
	top: calc(100% + 5px);
}
.lesson_button p{
	margin: 0;
	font-size: 20px;
}

.our_location_wrap {
	position: relative;
	
}
.our_location:hover {
    transform: scale(1);
    z-index: 10;
}
.our_location {
    position: absolute;
    height: 20px;
    width: 20px;
    background: #00c3ed;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s all linear;
    border: 2px solid #fff;
    transform: scale(.9);
	animation: pulse_location 2s infinite;
}
@keyframes pulse_location {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(0, 195, 237, 0.6);
		box-shadow: 0 0 0 0 rgba(0, 195, 237, 0.6);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(0, 195, 237, 0);
		box-shadow: 0 0 0 10px rgba(0, 195, 237, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(0, 195, 237, 0);
		box-shadow: 0 0 0 0 rgba(0, 195, 237, 0);
	}
}
.our_location:hover .our_location_details{
    visibility: visible;
    opacity: 1;
}
.our_location:hover{ background-color: #081340 }
.our_location_details {
	width: 280px;
    height: auto;
    background-color: #fff;
    position: absolute;
    left: -88px;
    top: 20px;
    box-shadow: 1px 0 30px #dae0ef;
    border: 1px solid #dae0ef;
    text-align: left;
    padding: 7px;
    visibility: hidden;
    opacity: 0;
    transition: .3s all linear;
    z-index: 10;
    border-radius: 5px;
}
.our_location_details p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.2;
}
.our_location_details a {
    font-size: 16px;
    display: block;
    line-height: 1.3;
    margin-bottom: 8px;
    width: 100px;
    margin: 5px auto;
    color: #fff;
	text-decoration: none;
    background-color: #47c1e8;
    padding: 2px 10px;
    text-align: center;
    border-radius: 5px;
}
.our_location_details a:hover { opacity: .7 }
.our_location.Omby {
    top: 14%;
    left: 63%;
}
.our_location.Istanbul {
	top: 27%;
	left: 52%;
}
.our_location.Gorgan {
    top: 30%;
    left: 59%;
}
.our_location.Antwerpen {
    top: 19%;
    left: 46%;
}
.our_location.Washington {
    top: 26%;
    left: 26%;
}

.videos_wrap {
	margin: 25px 0;
	padding: 25px 0;
	background-color: #f6f6f6
}
.module_title.module_right { text-align: left }
.module_title.module_right::before { margin: 0 }
.videos_wrap .video_box { margin-bottom: 25px }
.videos_wrap .video_link {
	position: relative;
	text-decoration: none;
	display: block;
	border-right: 1px dotted #D3B484;
}
/* .videos_wrap .video_link:hover { background-color: rgb(255, 255, 255, .9) } */
.videos_wrap .video_link.no_border { border-right: none }
.videos_wrap .video_link::before {
	
}
.video_link img {
	width: 175px;
	border-radius: 3px;
	float: left;
    margin-right: 10px;
}
.video_link span {
	text-decoration: none;
	color: #222;
	font-size: 18px;
}
.play-button-div {
	position: relative;
	display: inline-block;
	float: left;
}
.play-button-icon {
	position: absolute;
	left: 60%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.news_wrap {
	margin: 25px 0;
	padding: 25px 0;
	background-color: #f6f6f6
}
.single_post {
    background: #fff none repeat scroll 0 0;
    padding: 20px;
	transition: all 0.5s ease 0s;
	min-height: 380px;
}
.category_post {
    padding: 0;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
	box-shadow: 0px 0px 40px rgb(0 0 0 / 10%);
}
.single_post:hover { box-shadow: 1px 25px 54px rgb(0 0 0 / 12%) }
.post_photo img { width: 100% }
.post_meta a {
	color: #222;
	text-decoration: none;
}
.post_meta {
	display: flex;
	padding: 20px 0 0;
}
.category_post .post_meta {
    padding: 15px;
    height: 100px;
    overflow: hidden;
}
.post_date {
 	border: 1px solid #d6948c;
    color: #d6948c;
    height: 50px;
    width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
	font-weight: 600;
}
.post_year { padding-left: 10px }
.post_year p {
	font-weight: 600;
	color: #c87065;
	margin: 0;
	font-size: 14px;
	text-transform: capitalize;
}
.post_year a {
	text-decoration: none;
	color: #222
}
.post_content img { max-width: 100% }

.books_wrap {
	margin: 25px 0;
	padding: 25px 0;
}
.book_item {
	text-decoration: none;
	text-align: center;
	color: #222;
}
.book_item img {
    -webkit-transform-origin: left;
    transform-origin: left;
    box-shadow: 0 1px 2px rgb(0 0 0 / 22%);
    display: inline-block;
    -webkit-transform-style: flat;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    box-sizing: border-box;
    -webkit-transition: 0.2s;
    -moz-perspective: 1200px;
    perspective: 1200px;
	width: 100%;
}
.book_item:hover img{
	-webkit-transform: rotateY(-20deg) rotateZ(0deg);
	-moz-transform: rotateY(-20deg) rotateZ(0deg);
	-ms-transform: rotateY(-20deg) rotateZ(0deg);	
}

.partners_wrap {
	margin: 25px 0 0;
	padding: 25px 0 50px 0;
	background-color: #f6f6f6
}
.partner_box {
    display: flex;
    justify-content: center;
    align-content: center;
	background-color: #fff;
	padding: 27px 0px 28px;
	border: 1px solid #e8e8e8;
    border-radius: 10px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.partner_box img {
	max-width: 100%;
	max-height: 71px;
	width: auto!important;
}

.footer { background: #eeeeee none repeat scroll 0 0}
.footer .module_title {
	font-size: 20px;
}
.footer .mobile_app { margin-bottom: 25px }
.footer .mobile_app ul {
    margin: 0;
    padding: 0;
    text-align: center;
}
.footer .mobile_app li {
    list-style: none;
    display: inline-block;
}
.footer .social_icon { margin-bottom: 25px }
.footer .social_icon ul {
    margin: 0;
    padding: 0;
    text-align: center;
}
.footer .social_icon li {
    list-style: none;
    display: inline-block;
}
.footer .social_icon li a {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    padding: 7px;
    cursor: pointer;
	color: #666666;
	text-decoration: none;
	justify-content: center;
}
.footer .social_icon li a:hover { color: #c8a165 }
.footer .site_info {
	text-align: center;
	padding: 15px 0;
}
.footer .site_info img {
	max-width: 150px;
	margin: 15px 0;
}

.sub_categories_box {
	display: flex;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
	padding: 10px 0;
}
.sub_categories_box a {
    display: flex;
    text-decoration: none;
    text-transform: uppercase;
    color: #333;
    font-size: 14px;
    align-items: center;
    font-weight: 600;
    background-color: #eee;
    padding: 3px 15px 3px 4px;
    border-radius: 14px;
    margin: 0 10px;
	white-space: nowrap;
	width: auto!important;
}
.sub_categories_box a:hover { background-color: #f7f7f7 }
.sub_categories_box a img {
    width: 24px!important;
    height: 24px;
    border-radius: 50%;
	margin-right: 5px;
}

.justify-content-end {
	justify-content: center!important;
    margin: 25px 0
}

.page-link:hover,
.page-item.active .page-link {
	background-color: #eee;
	color: #333;
	border-radius: 50%!important;
}
.page-link {
	border: none;
	color: #333;
	font-weight: 600;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: none;
}

.ai_tab_box {
	display: flex;
	align-items: center;
	height: 100%;
}
.ai_tab {
	margin: 0;
    padding: 0;
    text-align: right;
    width: max-content;
	background-color: #f6f6f6;
	border-radius: 14px;
}
.ai_tab li {
	display: inline-block;
	list-style: none;
	text-align: center;
	padding: 5px 25px;
    display: inline-block;
    list-style: none;
    text-align: center;
    padding: 5px 25px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
	border-radius: 14px;
	cursor: pointer;
	position: relative;
}
.ai_tab li a {
	color: #333;
	text-decoration: none;
}
.ai_tab li:before {
    content: '';
    position: absolute;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
	background-color: #eee;
}
.ai_tab li.active { background-color: #eee }
.ai_tab li:hover:before,
.ai_tab li.active:before { background-color: #fec007 }
.media_tab_box a { 
    font-size: 14px;
    font-weight: 900;
}
.learn_tab_box {
    padding: 15px 0 25px;
    justify-content: center;
}
.learn_tab_box li { 
    font-size: 16px;
    font-weight: 900;
}
.books_categories { 
    padding-left: 15px!important;
    cursor: pointer;
}

.post_thumb img { width: 100% }
.post_thumb iframe {
	width: 100%;
	min-height: 600px;
}
.top_posts {
	margin: 0;
	padding: 0;
}
.top_posts li {
	list-style: none;
	margin-bottom: 15px;
}
.top_posts li p { margin: 0 }
.top_posts li a {
	color: #333;
	text-decoration: none;
	display: flex;
	align-items: center;
	line-height: 20px;
}
.top_posts li a:hover { color: #c87065 }
.top_posts li img {
	border-radius: 5px;
	width: 75px;
	margin-right: 10px;
}

.post_author {
	display: flex;
	align-items: center;
}
.post_author img {
	border-radius: 50%;
	width: 50px;
}
.post_author a {
	margin-left: 5px;
	font-weight: 600;
	color: #555;
	text-decoration: none;
}
.post_comments {
    text-transform: lowercase;
    font-weight: 800;
}

.post_share p {
	font-weight: 600;
	margin-bottom: 10px;
}
.post_share a {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	text-decoration: none;
	color: #333;
	width: fit-content;
}
.post_share a:hover { color: #c87065 }
.post_share a:hover i { background-color: #c87065 }
.post_share i {
    margin-right: 5px;
    background-color: #666;
    color: #eee;
    border-radius: 50%;
    font-size: 16px;
    padding: 4px 5px;
}

.btn-send {
    background: #f7f7f7;
    border: 1px solid #eee;
	border-radius: 5px;
	color: #333;
}
.breadcrumb_wrapper { padding: 25px 0 }
.breadcrumb_wrapper ul {
	margin: 0;
	padding: 0;
}
.breadcrumb_wrapper ul li {
	list-style: none;
	display: inline-block;
	margin-right: 5px;
	color: #c87065;
}
.breadcrumb_wrapper ul li a {
	color: #333;
	text-decoration: none;
}
.breadcrumb_wrapper ul li a:hover { color: #c87065 }
.breadcrumb_wrapper ul li i { color: #333 }

.error_shape {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 404px;
    height: 404px;
    margin: 35px auto;
    border-radius: 50%;
    background-color: #f3f3f1;
    font-size: 102px;
    color: #555;
}
.error_content {
	font-size: 16px;
	text-align: center
}
.module_title a {
	color:#212529;
	text-decoration: none;
}
.module_title a:hover {
	color: #c87065;
}