/*
Theme Name: RanLp

Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/

/* Main CSS */

.site-header {
	padding: 20px 0;
	background-color: #fff;
}

.site-logo {
	float: right;
	width: 20%;
}

.nav-bar {
	float: right;
	width: 55%;
	margin-top: 10px;
}

.phone-carticon {
	width: 25%;
	float: left;
	margin-top: 7px;
}

.phone-carticon ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
	float: left;
}

.phone-carticon ul li {
	float: right;
	margin-right: 20px;
}

.phone-carticon ul li:first-child {
	margin-right: 0;
}

.phone-carticon ul li.cart-icon {
	position: relative;
	margin-top: 8px;
}

.phone-carticon ul li.button-hd > a {
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	background-color: #6C5CE7;
	display: block;
	width: 150px;
	height: 45px;
	line-height: 41px;
	text-align: center;
	border: 1px solid #6C5CE7;
	transition: all 0.4s ease;
	margin: 0 auto;
}

.phone-carticon ul li.button-hd > a:hover {
	color: #6C5CE7;
	background-color: #fff;
}

.register-link {
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	margin-top: 8px;
}

.register-link > a {
	font-weight: bold;
}

.phone-carticon ul li.cart-icon span {
	color: #fff;
	font-size: 14px;
	background-color: #6C5CE7;
	width: 20px;
	height: 20px;
	line-height: 20px;
	border-radius: 100px;
	display: block;
	position: absolute;
	top: -8px;
	right: -8px;
	text-align: center;
}

.top-sec {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	padding: 180px 0 600px;
	position: relative;
}

.sec-content h1 {
	color: #fff;
	font-size: 60px;
	font-weight: 800;
}

.top-sec-desc {
	font-size: 24px;
	color: #fff;
	width: 60%;
	margin: 50px auto 0;
}

.sec-bottom-img {
	position: absolute;
	bottom: -110px;
	left: 0;
	right: 0;
}

.main-form-sec {
	padding: 150px 0 200px;
}

.section-metas {
	margin-bottom: 40px;
}

.section-metas h2 {
	font-size: 42px;
	font-weight: 700;
	color: #132F6D;
}

.sec-meta-desc {
	font-size: 24px;
	color: #132F6D;
    margin-top: 20px;
}

.main-form-block input[type="text"], .main-form-block input[type="tel"], .main-form-block input[type="email"] {
	width: 100%;
	border: 1px solid #C7C7C7;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	padding: 0 20px;
	background-color: #F7FAFC;
	color: #333333;
    transition: all 0.3s;
}

.main-form-block input[type="text"]:hover, .main-form-block input[type="text"]:focus, .main-form-block input[type="tel"]:hover, .main-form-block input[type="tel"]:focus, .main-form-block input[type="email"]:hover, .main-form-block input[type="email"]:focus {
    border: 1px solid #6C5CE7;
}

.main-form-block input[type="submit"] {
	width: 100%;
    background-color: #6C5CE7;
	border: 1px solid #6C5CE7;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
    text-align: center;
	padding: 0 20px;
	color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.main-form-block input[type="submit"]:hover {
    background-color: #fff;
    color: #6C5CE7;
}

.videos-sec {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 200px 0;
	position: relative;
}

.video-sec-inner {
	position: absolute;
	top: -180px;
	right: 0;
	width: 100%;
}

.video-wrap video {
	width: 100%;
}

.modal-content .close {
	background-color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 30px;
	line-height: 40px;
	height: 40px;
	width: 40px;
	text-align: center;
	border-radius: 100%;
}

.modal-content {
	background-color: transparent;
	border: 0;
	padding: 0;
}

.vis-thumb-inner button {
	background: none;
	border: 0;
}

.vid-thumb {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	width: 100%;
	height: 270px;
	display: table;
}

.vis-thumb-inner {
	display: table-cell;
	vertical-align: middle;
    cursor: pointer;
}

.vis-thumb-inner img {
	transition: all 0.3s;
    cursor: pointer;
}

.vis-thumb-inner:hover img {
	transform: scale(1.2);
}

.vis-title {
	display: block;
	font-size: 24px;
	color: #fff;
	text-align: center;
	margin-top: 8px;
}

.more-vid-link {
	margin-top: 70px;
}

.more-vid-link a {
	display: inline-block;
	background-color: #132F6D;
	color: #fff;
	font-size: 24px;
	line-height: 24px;
	padding: 10px 15px;
	border: 1px solid #132F6D;
	transition: all 0.3s;
}

.more-vid-link a:hover {
	background-color: #fff;
	color: #132F6D;
}

.owl-prev span, .owl-next span {
	display: none;
}

#videocarousel .owl-prev {
	content: "";
	display: block;
	position: absolute;
	top: 100px;
	left: -60px;
	background-image: url(images/arrow-white-eft.png);
	width: 80px;
	height: 57px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    cursor: pointer;
}

#videocarousel .owl-next {
    content: "";
    display: block;
    position: absolute;
    top: 100px;
    right: -60px;
    background-image: url(images/arrow-white-right.png);
    width: 80px;
    height: 57px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.testimonials-sec::before {
	content: "";
	display: block;
	position: absolute;
	top: -60px;
	right: 80px;
	background-image: url(images/testi-before.png);
	width: 344px;
	height: 626px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.testimonials-sec {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	padding: 100px 0;
}

.testimonials-sec::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -80px;
	left: 20px;
	background-image: url(images/testi-after.png);
	width: 574px;
	height: 443px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.testi-slider-sec {
	width: 70%;
	margin: 0 auto;
}

.testi-single {
	background-color: #fff;
	box-shadow: 0 0 18px #0984E32E;
	margin: 55px 25px 25px;
	padding: 85px 60px 50px;
	position: relative;
}

.testi-single::before {
	content: "";
	display: block;
	position: absolute;
	top: -25px;
	right: 25%;
	background-image: url(images/testi-quote.png);
	width: 61px;
	height: 54px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.testi-avatar {
	text-align: center;
}

.testi-avatar {
	text-align: center;
	position: absolute;
	top: -55px;
	right: 0;
	width: 100%;
}

.avatar-img-wrapper {
	height: 100px;
	width: 100px;
	display: inline-block;
	margin: 0 auto;
	border-radius: 100%;
	overflow: hidden;
	object-fit: cover;
}

.testi-text {
	font-size: 20px;
	color: #333333;
	margin-bottom: 15px;
}

.testi-meta {
	text-align: left;
}

.testi-name {
	color: #132F6D;
	font-size: 20px;
	font-weight: 600;
	display: inline-block;
}

#testislide .owl-prev {
	content: "";
	display: block;
	position: absolute;
	top: 170px;
	left: -35px;
	background-image: url(images/arrow-left.png);
	width: 80px;
	height: 57px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

#testislide .owl-next {
    content: "";
    display: block;
    position: absolute;
    top: 170px;
    right: -35px;
    background-image: url(images/arrow-right.png);
    width: 80px;
    height: 57px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.owl-dots {
    text-align: center;
}

.owl-dot {
	height: 25px;
	width: 25px;
	border-radius: 100%;
	background-color: #132F6D !important;
	margin-left: 15px;
    transition: all 0.3s;
}

.owl-dot:hover, .owl-dot.active {
	background-color: #6C5CE7 !important;
}

.owl-dots > div:last-child {
    margin-left: 0px;
}

#faqs_list .card a img.plusimg {
	display: block;
}

#faqs_list .card a img.minusimg {
	display: none;
}

.plusminus-icons {
	float: right;
	width: 28px;
	margin-top: 5px;
	height: 28px;
	margin-left: 20px;
	margin-right: 20px;
}

.plusminus-icons .plusimg {
	margin-top: 10px;
}

.plusminus-icons .minusimg {
	margin-top: 22px;
}

#faqs_list .card.active a img.plusimg {
	display: none;
}

#faqs_list .card.active a img.minusimg {
	display: block;
}

#faqs_list .card {
	margin-bottom: 25px;
	border-radius: 0;
	box-shadow: 0 0 18px #0984E32E;
    background-color: #fff;
    border-color: transparent;
}

.card-link {
	font-size: 24px;
	color: #132F6D;
	display: block;
	border-radius: 0px !important;
	height: 60px;
	line-height: 60px;
}

.faq-sec {
	background-color: #F7FAFC;
	padding: 80px 0;
}

.card-body {
	color: #132F6D;
	font-size: 20px;
}

.faq-img {
	text-align: center;
	margin-top: 100px;
}

.faq-lists {
	padding-left: 60px;
}

.footer-form-sec {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 50px 0;
}

.section-metas.white h2 {
	color: #ffffff;
}

.footer-form-block input[type="text"], .footer-form-block input[type="tel"], .footer-form-block input[type="email"] {
	width: 100%;
	border: 1px solid #FFFFFF;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	padding: 0 20px;
	background-color: #FFFFFF;
	color: #333333;
	transition: all 0.3s;
}

.footer-form-block input[type="submit"] {
	width: 100%;
	background-color: #132F6D;
	border: 1px solid #132F6D;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	text-align: center;
	padding: 0 20px;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 0 18px #0984E326;
	transition: all 0.3s;
}

.footer-form-block input[type="text"]:hover, .footer-form-block input[type="text"]:focus, .footer-form-block input[type="tel"]:hover, .footer-form-block input[type="tel"]:focus, .footer-form-block input[type="email"]:hover, .footer-form-block input[type="email"]:focus {
	border: 1px solid #6C5CE7;
}

.footer-form-block input[type="submit"]:hover {
	background-color: #0984E326;
	color: #fff;
}

.footer-bottom {
	text-align: center;
	background-color: #000;
	padding: 15px 0;
}

.footer-widgets {
	background-color: #132F6D;
	color: #fff;
	padding: 50px 0;
}

.site-footer{
	position: relative;
}

.widget .widget-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.widget_nav_menu ul li {
    margin-bottom: 10px;
}

.widget_nav_menu ul li:last-child {
    margin-bottom: 0px;
}

.widget_nav_menu ul li a {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.3s;
}

.widget_nav_menu ul li a:hover {
    color: #0984E3;
}

.footer-social {
	margin-top: 150px;
	text-align: center;
}

.footer-social li {
	display: inline-block;
	margin-left: 20px;
}

.footer-social li:last-child {
	margin-left: 20px;
}

.course-topics-lists {
	background-color: #F7FAFC;
	padding: 80px 0;
}

.topic-cat-single {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 320px;
	border-radius: 30px;
	position: relative;
    overflow: hidden;
}

.topic-cat-single::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #132F6D96;
	height: 100%;
	width: 100%;
	border-radius: 30px;
}

.topic-cat-single:hover::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #6C5CE796;
	height: 100%;
	width: 100%;
	border-radius: 30px;
}

.topic-cates::after {
	content: "";
	display: block;
	clear: both;
}

.topic-cates > div {
    width: 48%;
}

.topic-cates > div:nth-child(2n-1) {
    float: right;
    margin-bottom: 30px;
}

.topic-cates > div:nth-child(2n) {
    float: left;
    margin-bottom: 30px;
}

.topic-cat-inner {
	color: #fff;
	z-index: 1;
	position: relative;
}

.topic-cat-inner a {
	color: #fff;
	font-size: 42px;
    font-weight: bold;
    display: block;
    transition: all 0.3s;
}

.course-img img {
	height: 260px;
}

.all-courses {
	background-color: #F7FAFC;
	padding: 80px 0;
}

.course-card-single {
	background-color: #fff;
}

.course-meta {
	padding: 10px 10px 10px 10px;
}

.course-meta-title {
	font-size: 28px;
	font-weight: 600;
	color: #132F6D;
}

.course-meta-price {
	font-size: 28px;
	color: #132F6D;
}

.course-meta-btns {
	padding: 0 10px 10px 10px;
	text-align: center;
}

.course-meta-btns a {
	color: #6C5CE7;
	font-size: 20px;
	font-weight: 600;
	border: 3px solid #6C5CE7;
	display: inline-block;
	width: 48%;
	text-align: center;
	padding: 10px 0;
    transition: all 0.3s;
}

.course-meta-btns a:hover {
	color: #fff;
	background-color: #6C5CE7;
}

.archive .all-courses-block {
	padding: 80px 0;
    background-color: #F7FAFC;
}

.about-sec-top {
	background-color: #F7FAFC;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	padding: 80px 0;
}

.about-details {
	background-color: #fff;
	padding: 70px;
	margin-top: 35px;
	box-shadow: 0 0 18px #0984E342;
}

.about-sec-single {
	margin-bottom: 40px;
}

.about-sec-single:last-child {
	margin-bottom: 0px;
}

.about-sec-single h4 {
	font-size: 24px;
	font-weight: 700;
	color: #132F6D;
	margin-bottom: 30px;
}

.ab_detail p {
	font-size: 24px;
	font-weight: 400;
    color: #132F6D;
}

.ab_detail > p:last-child {
	margin-bottom: 0px;
    padding-bottom: 0px;
}

.about-lecturers {
	margin-top: 100px;
}

.about-lecturers .section-metas {
	margin-bottom: 115px;
}

.lecturer-single {
	background-color: #F7FAFC;
	border: 1px solid #DFDFDF;
	position: relative;
	padding: 75px 20px 20px;
}

.lecturer-img {
	height: 116px;
	width: 116px;
	display: inline-block;
	border-radius: 100%;
	position: absolute;
	top: -58px;
	right: 0;
	left: 0;
	margin: 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.lecturer-name {
	font-size: 20px;
	font-weight: 600;
	color: #132F6D;
	text-align: center;
	margin-bottom: 15px;
}

.lecturer-about {
	font-size: 20px;
	line-height: 27px;
	color: #132F6D;
	margin-bottom: 20px;
	text-align: center;
}

.lecturer-btn {
    text-align: center;
}

.lecturer-btn a {
	display: inline-block;
	font-size: 20px;
	color: #fff;
	background-color: #6C5CE7;
	height: 40px;
	width: 200px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #6C5CE7;
	transition: all 0.3s;
}

.lecturer-btn a:hover {
	color: #6C5CE7;
	background-color: transparent;
}

.contact-sec {
	background-color: #F7FAFC;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	padding: 80px 0;
}

.contact-details {
	background-color: #fff;
	padding: 70px;
	margin-top: 35px;
	box-shadow: 0 0 18px #0984E342;
	position: relative;
}

.contact-details::after {
	content: "";
	display: block;
	background-image: url(images/contact-after.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 110px;
	left: -195px;
	width: 478px;
	height: 432px;
}

.contact-detail-list {
	float: right;
	width: 50%;
}

.contact-social-list {
	float: left;
	width: 50%;
	text-align: left;
}

.contact-detail-list li {
	margin-bottom: 15px;
}

.contact-detail-list li:last-child {
	margin-bottom: 0px;
}

.cdl-text {
	font-size: 24px;
	color: #132F6D;
	margin-right: 15px;
}

.contact-social-list li {
	display: inline-block;
	margin-left: 25px;
}

.contact-social-list li:last-child {
	margin-left: 0px;
}

.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"] {
	width: 100%;
	border: 1px solid #DFDFDF;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	padding: 0 20px;
	background-color: #FFFFFF;
	color: #333333;
	margin-bottom: 30px;
	transition: all 0.3s;
}

.contact-form textarea {
	width: 100%;
	border: 1px solid #DFDFDF;
	height: 145px;
	line-height: 30px;
	font-size: 24px;
	padding: 0 20px;
	background-color: #FFFFFF;
	color: #333333;
    margin-bottom: 30px;
	transition: all 0.3s;
}

.contact-form input[type="text"]:hover, .contact-form input[type="text"]:focus, .contact-form input[type="tel"]:hover, .contact-form input[type="tel"]:focus, .contact-form input[type="email"]:hover, .main-form-block input[type="email"]:focus {
	border: 1px solid #6C5CE7;
}

.contact-form textarea:hover, .contact-form textarea:active {
    border: 1px solid #6C5CE7;
}

.contact-form input[type="submit"] {
	width: 100%;
	background-color: #6C5CE7;
	border: 1px solid #6C5CE7;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	text-align: center;
	padding: 0 20px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
}

.contact-form input[type="submit"]:hover {
	background-color: #fff;
	color: #6C5CE7;
}

.contact-form-text {
	font-size: 24px;
	font-weight: 700;
	color: #132F6D;
	margin-bottom: 20px;
}

.contact-form {
	margin-top: 75px;
}

.login-page {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	padding: 50px 0;
}

.login-content {
    position: relative;
}

.login-content::after {
	position: absolute;
	bottom: -100px;
	left: 0;
	content: "";
	display: block;
	background-image: url(images/login-register.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 590px;
	height: 764px;
}

.form-login {
	padding: 60px;
}

.tabstwo {
	margin-bottom: 30px;
}

.tabstwo li {
	display: inline-block;
	margin-left: 50px;
}

.tabstwo li:last-child {
	margin-left: 0px;
}

.tabstwo li a {
    font-size: 24px;
	font-weight: 700;
	color: #132F6D;
	border-bottom: 3px solid transparent;
	display: block;
    transition: all 0.3s;
}

.tabstwo li:hover a, .tabstwo li.active a {
    border-color: #6C5CE7;
}

.form-login input[type="text"], .form-login input[type="email"], .form-login input[type="password"] {
	height: 60px;
	width: 100%;
	background-color: #fff;
	border: 1px solid #DFDFDF;
	font-size: 20px;
	line-height: 60px;
	padding: 0 20px;
	margin-bottom: 25px;
    transition: all 0.3s;
}

.checkboxform {
	font-size: 16px;
	font-weight: 300;
	color: #132F6D;
	margin-bottom: 25px;
}

.checkboxform > input {
	margin-left: 12px;
}

.checkboxform > span > a {
	text-decoration: underline;
}

.form-login button {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	background-color: #6C5CE7;
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border: 1px solid #6C5CE7;
	transition: all 0.4s ease;
}

.form-login button:hover {
	color: #6C5CE7;
	background-color: #fff;
}

.social-logins {
	margin-top: 30px;
}

.social-logins::after {
	content: "";
	display: block;
	clear: both;
}

.sc-log-text {
	font-size: 20px;
	float: right;
	width: 55%;
	margin-top: 16px;
}

.sc-log-links {
	float: left;
	width: 45%;
    text-align: left;
}

.sc-log-links li {
	display: inline-block;
	margin-left: 15px;
}

.sc-log-links li:last-child {
	margin-left: 0px;
}

.login-username label, .login-password label {
	display: none;
}

.login-remember label {
	font-size: 16px;
	font-weight: 300;
	color: #132F6D;
}

.login-remember label > input {
	margin-left: 10px;
}

.form-login p {
	margin: 0;
	padding: 0;
}

.login-submit input[type="submit"] {
    color: #fff;
	font-size: 24px;
	font-weight: 600;
	background-color: #6C5CE7;
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border: 1px solid #6C5CE7;
	transition: all 0.4s ease;
}

.login-submit input[type="submit"]:hover {
	color: #6C5CE7;
	background-color: #fff;
}

.page-template-account-login .login-page {
	padding: 130px 0 0;
}

.page-template-account-login .form-login {
	margin-bottom: 130px;
}

.ty-section {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.ty-main {
	width: 100%;
	height: 700px;
}

.ty-content-block {
	background-color: #fff;
	display: inline-block;
    padding: 60px;
	margin: 0 auto;
}

.ty-content-block h1 {
	font-size: 42px;
	font-weight: 700;
	color: #132F6D;
	margin-bottom: 30px;
}

.ty-subtitle {
	font-size: 24px;
	font-weight: bold;
	color: #132F6D;
	margin-bottom: 30px;
	padding-bottom: 40px;
	position: relative;
}

.ty-subtitle::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	height: 4px;
	width: 80px;
	background-color: #6C5CE7;
}

.ty-btn a {
	width: 100%;
    display: block;
	background-color: #6C5CE7;
	border: 1px solid #6C5CE7;
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	text-align: center;
	padding: 0 20px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
}

.ty-btn a:hover {
	background-color: #fff;
	color: #6C5CE7;
}

.blog-posts {
	background-color: #F7FAFC;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	padding: 80px 0;
}

.all-blog-blocks {
	background-color: #fff;
	padding: 25px;
	margin-top: 35px;
	box-shadow: 0 0 18px #0984E342;
	position: relative;
}

.blog-card-single {
	background-color: #fff;
	margin-bottom: 30px;
}

.blog-img img {
	height: 260px;
}

.blog-meta {
	padding: 10px 10px 10px 10px;
}

.blog-meta-title {
	font-size: 28px;
	font-weight: 600;
	color: #132F6D;
}

.blog-excerpt p {
	font-size: 20px;
}

.blog-meta-btns {
	padding: 0 10px 10px 10px;
	text-align: center;
}

.blog-meta-btns a {
	color: #6C5CE7;
	font-size: 20px;
	font-weight: 600;
	border: 3px solid #6C5CE7;
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	transition: all 0.3s;
}

.blog-meta-btns a:hover {
	color: #fff;
	background-color: #6C5CE7;
}

.blog-post-single {
	background-color: #F7FAFC;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	padding: 80px 0;
}

.single-post-wrapper {
	background-color: #fff;
	margin-top: 35px;
	box-shadow: 0 0 18px #0984E342;
	position: relative;
}

.single-post-header {
	height: 270px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: table;
	width: 100%;
	text-align: center;
    position: relative;
}

.single-post-header::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.single-post-header-inner {
	display: table-cell;
	vertical-align: middle;
	color: #fff;
}

.single-post-header-inner h2 {
	font-size: 42px;
    color: #FFFFFF;
    font-weight: 700;
    z-index: 1;
    position: relative;
}

.single-post-content {
    padding: 70px;
}

.single-post-content p {
    font-size: 24px;
    color: #132F6D;
    line-height: 32px
}








































/* Shop Page CSS */

.prod-main-wrapper {
	background-color: #F7FAFC;
	padding-top: 70px;
}

.cate-description h1 {
	font-size: 42px;
	font-weight: 700;
	color: #132F6D;
	text-align: center;
	margin-bottom: 70px;
}

.woocommerce ul.products li.product a img {
	margin: 0;
    height: 200px;
}

.woocommerce ul.products li.product .price {
	color: #132F6D;
	font-weight: 700;
	margin-bottom: 0;
	font-size: 32px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
	padding: 0;
	font-size: 24px;
	color: #333333;
	font-weight: bold;
	margin-bottom: 10px;
}

.prod-excerpt p {
	font-size: 20px;
	color: #333333;
	margin: 0;
	line-height: 24px;
	padding: 0;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	float: right;
    margin-bottom: 1.5em;
}

/* Shop Page CSS Ends Here */

/* Single Product Page CSS */

.custom-single-prod-wrapper {
	background-color: #F7FAFC;
	padding: 50px 0;
}

.woocommerce-breadcrumb {
	font-size: 20px !important;
	font-weight: bold;
	color: #000 !important;
    margin: 0;
}

.woocommerce-breadcrumb a {
	font-size: 20px;
	color: #000 !important;
	font-weight: 400;
}

.product-detailsingle .container {
	margin: 30px auto 0;
    padding: 50px 30px;
    box-shadow: 0 0 30px #eae9e9;
}

.prod-single-img {
	width: 100%;
	height: 650px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.prod-single-title {
	font-size: 42px;
	color: #132F6D;
	font-weight: bold;
	margin-bottom: 30px;
}

.product-more-info p {
	font-size: 20px;
	color: #333333;
}

.single-content-bottom .summary.entry-summary {
	float: none !important;
	padding: 0;
	width: 100% !important;
	margin: 0 !important;
}

.single-content-bottom .summary.entry-summary form.cart {
    margin-bottom: 0;
}

.single-content-bottom .summary.entry-summary .product_title.entry-title {
    display: none;
}

.woocommerce div.product form.cart .button {
	vertical-align: middle;
	float: right;
}

button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed, .product-detailsingle button.single_add_to_cart_button.button.alt {
	color: #6C5CE7;
	font-size: 24px;
	font-weight: 600;
	font-family: 'Assistant', sans-serif;
	cursor: pointer;
	background-color: transparent;
	opacity: 1;
	transition: all 0.4s ease;
	border: 2px solid #6C5CE7;
	border-radius: 0;
	padding: 15px 35px;
}

button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed:hover,
.product-detailsingle button.single_add_to_cart_button.button.alt:hover {
    background-color: #6C5CE7;
    color: #fff;
}

input#productqty {
	position: relative;
	top: -6px;
	width: 100px;
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	border: 1px solid #A8C2D5;
	height: 55px;
}

.quantity input.plus, .quantity input#minus {
	color: #000;
	font-size: 45px;
	background-color: transparent;
	height: 55px !important;
	width: 55px;
	text-align: center;
	padding: 0 !important;
	cursor: pointer;
	border: 1px solid #A8C2D5;
    transition: all 0.3s;
}

.quantity input.plus:hover, .quantity input#minus:hover {
	background-color: #A8C2D5;
}

.single-prod-content {
	height: 650px;
	position: relative;
}

.single-content-top {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
}

.single-content-bottom {
	position: absolute;
	bottom: 0;
	right: 0;
}

.single-content-bottom .summary.entry-summary p.price {
    color: #6C5CE7 !important;
    font-size: 32px;
    font-weight: 700;
    padding: 0;
}

.woocommerce-mini-cart__buttons.buttons a.button.wc-forward {
	color: #6C5CE7;
	font-size: 24px;
	font-weight: 600;
	font-family: 'Assistant', sans-serif;
	cursor: pointer;
	background-color: transparent;
	opacity: 1;
	transition: all 0.4s ease;
	border: 2px solid #6C5CE7;
	border-radius: 0;
	padding: 10px 35px;
	margin-left: 20px;
	display: inline-block;
}

.woocommerce-mini-cart__buttons.buttons  a.button.wc-forward:hover {
    background-color: #6C5CE7;
    color: #fff;
}

.woocommerce-message {
	border-top-color: #6C5CE7 !important;
}

.woocommerce-message::before {
    color: #6C5CE7 !important;
}

.woocommerce-mini-cart__buttons.buttons a.button.checkout.wc-forward {
	display: none;
}

/* Single Product Page CSS Ends Here */

/* Cart Page CSS */

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
}

.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
	width: 40%;
	float: left;
	background-color: #6C5CE7;
	padding: 30px;
    color: #fff;
}

.cart_totals h2 {
	color: #fff;
	font-size: 42px;
	font-family: 'Assistant', sans-serif;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}

.cart-subtotal th, .woocommerce-shipping-totals.shipping th {
	font-size: 24px;
	font-weight: 400;
	color: #fff;
}

.cart-subtotal td {
	font-size: 24px;
	color: #fff;
}

.woocommerce table.shop_table {
    text-align: right !important;
    border: 0px;
}

#shipping_method {
	font-size: 20px;
}

.woocommerce-shipping-destination {
	font-size: 20px;
	line-height: 24px;
}

.woocommerce-shipping-calculator {
	font-size: 20px;
}

.woocommerce-shipping-calculator input[type="text"] {
	height: 30px;
	font-size: 20px;
	line-height: 30px !important;
	padding: 0 20px;
}

.select2-results__option {
	font-size: 20px;
}

.woocommerce-shipping-calculator button {
	width: 100%;
	height: 30px;
	line-height: 30px !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	text-align: center;
	background-color: #fff !important;
	color: #132F6D !important;
	padding: 0 !important;
}

.order-total th {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
}

.order-total td {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
}

.wc-proceed-to-checkout a {
	color: #132F6D !important;
	font-size: 24px !important;
	font-family: 'Assistant', sans-serif !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	background-color: #fff !important;
	margin: 0 !important;
	transition: all 0.4s ease !important;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.wc-proceed-to-checkout a:hover {
    background-color: #132F6D !important;
    color: #fff !important;
}

form.woocommerce-cart-form {
    float: right;
    width: 60%;
}

.cart_item .product-name a {
    font-size: 24px;
    font-weight: 600;
    color: #132F6D;
}

.product-name > span:first-child {
    float: right;
    margin-left: 10px;
}

.cart_item .product-name .woocommerce-Price-amount {
    font-size: 20px;
    line-height: 20px;
    color: #132F6D;
}

thead th {
	font-size: 24px;
	font-weight: bold !important;
	color: #132F6D;
}

.cart_item .product-subtotal .woocommerce-Price-amount {
    font-size: 24px;
    line-height: 24px;
    color: #132F6D;
}

.woocommerce-cart-form td.product-remove a.remove {
    color: #fff !important;
    background: #132F6D !important;
    font-size: 24px;
    line-height: 24px;
}

.woocommerce-cart-form td.product-remove a.remove:hover {
    color: #132F6D !important;
    background: #ccc !important;
}

.woocommerce-cart.woocommerce-page {
	background-color: #F7FAFC;
}

.product-cart .container {
	background-color: #fff;
	box-shadow: 0 0 18px #0984E330;
	padding: 0;
}

.product-cart {
	padding-top: 30px;
}

.actions {
	display: none;
}

.woocommerce-cart-form__cart-item.cart_item {
	background-color: #F7FAFC;
	border-bottom: 1px solid #DFDFDF;
}

/* Cart Page CSS Ends Here */




































.clsdiv {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    height: 100%;
    top: 0;
    display: none;
    width: 100%;
    z-index: 9;
}

.clsdiv.open {
    display: block;
}

.cart-list.open {
    right: 0;
}

li.woocommerce-mini-cart-item.mini_cart_item img {
    height: 40px !important;
    width: auto !important;
    margin-left: 20px !important;
    float: right !important;
    margin-top: 14px;
}

.item li.product {
    width: 100% !Important;
}

.cart-list {
    background-color: #ffffff;
    position: fixed;
    right: -100%;
    width: 400px;
    height: 100%;
    top: 0;
    height: 100%;
    z-index: 9999;
}

.cart-list span.head {
    background: #6C5CE7;
    padding: 30px;
    color: #fff !important;
    font-size: 42px;
    display: block;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}
.cls-cart {
    display: block;
    background: #000000;
    height: 30px;
    line-height: 30px;
    color: #fff;
    border-radius: 100%;
    text-align: center;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    cursor: pointer;
}

.cart-list p.woocommerce-mini-cart__buttons.buttons,
p.woocommerce-mini-cart__buttons.buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
}



.cart-list p.woocommerce-mini-cart__total.total,
p.woocommerce-mini-cart__total.total {
    position: absolute;
    bottom: 60px;
    text-align: center;
    width: 100%;
    left: 0;
}

p.woocommerce-mini-cart__buttons.buttons a.button.checkout.wc-forward {
    background: transparent;
    color: #000000 !important;
}

.cart-list a.remove {
    background-color: #A8A8A8 !important;
    color: #ffffff !Important;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
}

.cart-list a.remove.remove_from_cart_button {
    float: left;
    font-size: 22px;
    margin-top: 15px;
    margin-left: 20px;
}

.woocommerce-mini-cart-item.mini_cart_item a:nth-child(2) {
    font-size: 24px;
}

.woocommerce-mini-cart-item.mini_cart_item .quantity {
    display: block;
    font-size: 24px;
}

section.related.products {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.related.products ul.products.columns-4 {
    box-shadow: 0 0 50px #dadada;
}

.related.products ul.products.columns-4 li {
    position: relative;
}

.related.products ul.products.columns-4 li figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.52);
    margin: 25px 8px;
    padding: 10px 0;
}

/*Product Single Page*/


.product-detailsingle span.onsale,
.product-detailsingle table.variations td.label {
    display: none !important;
}

.woocommerce div.product span.price del {
    opacity: 1 !important;
    display: inline-block;
    text-decoration: line-through !important;
}

.woocommerce div.product span.price del span.woocommerce-Price-amount.amount {
    color: #000 !important;
    font-size: 24px !Important;
    text-decoration: line-through !Important;
}

del > span {
    font-size: 18px;
    text-decoration: line-through;
}

ins > span {
    font-size: 26px;
    font-weight: bold;
}

h3#ship-to-different-address span{
    color: #132F6D;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Assistant', sans-serif;
    font-size: 24px;
}

.reset_variations {
    display: block;
    background-color: #000;
    color: #fff;
    width: 100px;
    text-align: center;
    border: 1px solid #000;
    font-size: 15px !important;
    height: 30px;
    line-height: 30px;
}

.reset_variations:hover {
    background-color: #fff;
    color: #000;
}

.product-more-info h3 {
    color: #111111;
    font-size: 24px;
    font-family: 'Assistant', sans-serif;
    font-weight: bold;
    margin: 0 0 20px;
}

.product-more-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-more-info ul li {
    color: #111111;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Assistant', sans-serif;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.product-more-info ul li::before {
    display: block;
    content: '\f00c';
    color: #ECDC94;
    font-family: FontAwesome;
    position: absolute;
    font-size: 20px;
    right: 0;
}

.product-detailsingle .summary {
    padding-left: 30px;
}

.product-detailsingle .summary h1 {
    color: #111111;
    font-size: 42px;
    line-height: 1;
    font-family: 'Assistant', sans-serif;
    font-weight: bold;
    margin: 0 0 20px;
}

.product-detailsingle .summary p {
    color: #111111;
    font-size: 22px;
    line-height: 33px;
    font-family: 'Assistant', sans-serif;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.variations_form .plus,
.variations_form #minus {
    width: 55px !important;
}

.product-quantity .quantity #productqty {
    height: 55px;
    position: relative;
    top: 0px;
    width: 60px;
}

.product-detailsingle table.variations select,
.product-detailsingle table.variations select::placeholder {
    color: #111111;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Assistant', sans-serif;
}

.woocommerce div.product form.cart .variations select {
    max-width: 60%;
    margin-right: 0;
    padding: 8px 10px;
    border: 1px solid #E5E5E5;
    background-color: #FBFBFB;
    margin-bottom: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

article#post-196 {
    background-color: #ffffff;
    padding: 20px;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: transparent !important;
}

.woocommerce-info::before {
    color: #000000 !important;
}

.woocommerce-info {
    border-top-color: #000000 !important;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
    float: left;
    margin-top: 13px;
}

.woocommerce-checkout #payment ul.payment_methods li .stripe-credit-card-brand {
    right: auto;
    left: 13px;
}

td.product-name dl.variation,
.woocommerce-form-coupon-toggle,
.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title,
.woocommerce-billing-fields__field-wrapper label {
    display: none !Important;
}

.woocommerce-billing-fields__field-wrapper input {
    background-color: #fbfbfb !important;
    border: 1px solid #e5e5e5;
    font-size: 22px;
    height: 40px;
    padding-right: 15px;
}

.woocommerce-variation-price span.woocommerce-Price-amount.amount {
    color: #111111;
    font-size: 36px;
    font-weight: bold;
    display: inline-block;
}

.single_variation .woocommerce-Price-currencySymbol {
    float: left;
}

.woocommerce-cart-form__cart-item .woocommerce-Price-amount {
    display: inline-block;
}

.woocommerce-cart-form__cart-item .woocommerce-Price-currencySymbol {
    float: left;
}

.cart-subtotal .woocommerce-Price-amount {
    display: inline-block;
}

.cart-subtotal .woocommerce-Price-currencySymbol {
    float: left;
}

.order-total .woocommerce-Price-amount {
    display: inline-block;
}

.order-total .woocommerce-Price-currencySymbol {
    float: left;
}

.customer_details {
    width: 48%;
    float: right;
}

.woocommerce-checkout-review-order {
    float: left;
    width: 52%;
    background-color: #6C5CE7;
    padding: 40px;
}
.woocommerce table.shop_table td{
    color: #FFFFFF;
    font-size: 24px;
    font-family: 'Assistant', sans-serif;
    font-weight: 400;
}
.woocommerce ul#shipping_method li{
    text-align: left;
}
#order_review table.shop_table tbody th, #order_review table.shop_table tfoot td, #order_review table.shop_table tfoot th, #order_review table.shop_table td{
    border: none;
    padding: 0 12px;
}

h3#order_review_heading{
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    font-family: 'Assistant', sans-serif;
    margin: 0 0 40px;
}
.woocommerce-billing-fields h3 {
    color: #132F6D;
    font-size: 42px;
    font-weight: bold;
    font-family: 'Assistant', sans-serif;
    margin: 0 0 40px;
}

.checkout-page span.woocommerce-input-wrapper {
    width: 100%;
}

table.shop_table.woocommerce-checkout-review-order-table tr.cart_item td.product-total,
table.shop_table.woocommerce-checkout-review-order-table tr.order-total td {
    text-align: left;
}

.woocommerce-checkout-review-order input {
    width: 100%;
}

.checkout-page .customer_details {
    padding: 40px;
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
    font-size: 24px;
    line-height: 30px;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    display: block;
    float: right;
    width: 100%;
    color: #132F6D;
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 24px;
    background-color: #FFFFFF;
    border-radius: 0px;
}
ul.wc_payment_methods.payment_methods.methods li a.about_paypal{
    line-height: 32px !important;
    margin-left: 20px;
    color: #fff;
}
ul.wc_payment_methods.payment_methods.methods li label{
    color: #fff;
}
.variations .value {
    position: relative;
}

.variations .value::after {
    position: absolute;
    top: 0;
    left: 28%;
    content: "";
    display: block;
    background-image: url(https://goldenroad.ussl.co/wp-content/uploads/2020/01/Path-844.png);
    width: 19px;
    height: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.variations tr:nth-child(1) > td:nth-child(2)::after {
    top: 44%;
}

.variations tr:nth-child(2) > td:nth-child(2)::after {
    top: 32%;
}

#relatedproductsslider .woocommerce-Price-amount {
    display: inline-block;
    margin-bottom: 0;
}

.woocommerce-Price-amount {
    display: inline-block;
}

.woocommerce-Price-currencySymbol {
    float: left;
}

.terms-page {
	background-color: #F7FAFC;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	padding: 80px 0;
}

.terms-content {
	background-color: #fff;
	padding: 70px;
	margin-top: 35px;
	box-shadow: 0 0 18px #0984E342;
}

.term-content-wrapper p {
	font-size: 24px;
	font-weight: 400;
	color: #132F6D;
}

/*Cart Page*/



/*Cart Page*/
























