/*
 * CSS styles for FreeStuff Website
 * *  *
 *
 * Copyright 2022 FreeStuff. 
 *
 * Author: Leadscale Labs.
*/

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

html,
body {
	height: 100%;
}

a {
	text-decoration: none;
}

.scroll-hidden {
	overflow: hidden !important;
}

body {
	height: 100%;
	margin: 0px auto;
	font-family: 'Open Sans', sans-serif;
	color: #333;
	position: relative;	
	font-size: 14px;
	padding-top: 52px;
}

@media(min-width:768px) {
	body {
		padding-top: 70px;
	}

	html {
		scroll-padding-top: 70px;
	}
}

/* --------------------------------------------------------------
  #ACCORDIONS
-------------------------------------------------------------- */
.mainAccordion .accordion-item {
	border: 1px solid #dee2e6 !important;
	border-radius: 2px;
}

.mainAccordion .accordion-item:not(:last-child) {
	margin-bottom: 5px;
}

.mainAccordion .accordion-button {
	font-weight: 600;
}

.mainAccordion .accordion-button:not(.collapsed) {
	color: #00b4d8;
	background-color: #fff;
	box-shadow: none !important;
}

.mainAccordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300b4d8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.mainAccordion .accordion-button:focus {
	box-shadow: none !important;
}

.mainAccordion .accordion-body {
	border-top: 1px solid #dee2e6;
}

/* --------------------------------------------------------------
  #ARTICLES
-------------------------------------------------------------- */
.article-section p {
	font-size: 16px;
	line-height: 1.6;
}

.article-section p:last-child {
	margin-bottom: 0px;
}

.article-section .article-sidebar {
	margin-bottom: 40px;
}

.article-section .article-sidebar:last-child {
	margin-bottom: 0px;
}

/* --------------------------------------------------------------
  #BACKGROUND
-------------------------------------------------------------- */
.bg-blue {
	background-color: #00b4d8 !important;
}

.bg-grey {
	/*background-color: #f5f6fa;*/
	background-color: #edeff2 !important;
}

.bg-green {
	background-color: #37cd69 !important;
}

.bg-light {
	background-color: #f4f6f8 !important;
}

.bg-none {
	background-color: transparent !important;
}

.bg-purple {
	background-color: #3a415c !important;
}

/* --------------------------------------------------------------
  #BACKGROUND-IMAGE
-------------------------------------------------------------- */
.bg-image {
	background-position: center center;
	-webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

/* --------------------------------------------------------------
  #BRANDS
-------------------------------------------------------------- */
.media-images {
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.media-images__image {
	margin: 16px 20px;
}

.media-images.media-images--config-width .media-images__image {
	width: 6.25rem;
}

.media-images.media-images--config-height .media-images__image {
	height: 1.5rem;
}

@media(min-width:768px) {
	.media-images__image {
  		margin: 0px 20px;
	}
}

@media(min-width:992px) {
	.media-images__image {
  		margin: 0px 40px;
	}
}

/* --------------------------------------------------------------
  #BUTTONS
-------------------------------------------------------------- */
.btn {
	font-weight: 700;	
	border-radius: 2px;
	box-shadow: none !important;
}

.btn-main {
	font-weight: 700;
	padding: 6px 20px;
}

.btn-big {
	font-size: 16px;
	padding: 10px 40px;
}

.btn-group-sm>.btn, 
.btn-sm {
	font-size: 10px;
}

.btn-group {
	color: #212529;
}

/* --------------------------------------------------------------
  #BUTTONS-COLOURS
-------------------------------------------------------------- */
.btn-blue {
	background-color: #00b4d8;
	color: #fff;
}

.btn-blue:focus,
.btn-blue:hover {
	background-color: #0099b8;
	color: #fff;
}

.btn-green {
	background-color: #37cd69 !important;
	color: #fff !important;
}

.btn-gren:focus, 
.btn-green:hover {
	background-color: #30B35C !important;
	color: #fff !important;
}

.btn-outline-blue {
	background-color: transparent;
	border: 1px solid #00b4d8;
	color: #00b4d8;
}

.btn-outline-blue:focus,
.btn-outline-blue:hover {
	background-color: #00b4d8;
	color: #fff;
}

.btn-outline-grey {
	background-color: transparent;
	border: 1px solid #d9d5e7 !important;
	color: #aca9b7;
}

.btn-outline-grey:focus,
.btn-outline-grey:hover {
	background-color: transparent;
	border: 1px solid #00b4d8 !important;
	color: #00b4d8;
}

/* --------------------------------------------------------------
  #BLOG-POST
-------------------------------------------------------------- */
.blog-post-card {
	border: 0;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.blog-post-card a {
    color: #333;
}

.blog-post-card:hover {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.blog-post-card a:hover,
.blog-post-card a:focus {
	color: #00b4d8;
	text-decoration: underline;
}

@media(min-width: 768px) {
	.blog-post-page .blog-post-card .card-text {
		min-height: 54px;
	}
}

@media(min-width:992px) {
	.blog-post-card .card-text {
		min-height: 42px;
	}
}

/* --------------------------------------------------------------
  #CATEGORIES
-------------------------------------------------------------- */
.cat-section {
	margin-top: 50px;
}

.cat-card {
	transition: all .2s ease-in-out;
}

.cat-card:hover {
	transform: scale(1.1);
}

.cat-card a {
	font-size: 12px;
	color: rgba(255,255,255,0.5);	
}

.cat-card a:hover,
.cat-card a:focus {
	color: rgba(255,255,255,1);
}

.icon-shape {
	height: 60px;
	width: 60px;
	line-height: 60px;
	color: #fff;
	font-size: 22px;  
	border-radius: 100%;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.2);
}

@media(min-width:992px) {
	.cat-card a {
		font-size: 14px;
	}
}

/* --------------------------------------------------------------
  #CONTAINERS
-------------------------------------------------------------- */
@media(min-width: 1400px) {
	.container.custom, .container-lg.custom, .container-md.custom, .container-sm.custom, .container-xl.custom, .container-xxl.custom {
	    max-width: 1140px;
	}
}

/* --------------------------------------------------------------
  #COUNTDOWN
-------------------------------------------------------------- */
#countdown .wrapper {
	text-align: center;
	background-color: #202023;
	color: #fff;
	border-radius: 3px;
	padding: 6px; 
}

#countdown .wrapper span {
	display: block;
}

#countdown .wrapper .time {
	font-size: 24px;
	font-weight: bold;
}

#countdown .wrapper .label {
	font-size: 10px;
	text-transform: capitalize;
}

@media(min-width: 992px) {
	#countdown .wrapper {
		padding: 10px 6px;
	}

	#countdown .wrapper .time {
		font-size: 30px;
		line-height: 32px;
	}

	#countdown .wrapper .label {
		font-size: 12px;
	}
}

/* --------------------------------------------------------------
  #FILTERING
-------------------------------------------------------------- */
.filter-checkbox,
.filter-nav {
	display: none;
}

.filter-nav {
	font-size: 10px;
}

.filter-nav .nav-link {
	color: #aca9b7;
	font-weight: 700;
}

.filter-nav .nav-link.active,
.filter-nav .nav-link.active:hover {
	background-color: #00b4d8;
	color: #fff;
	border-radius: 2px;
}

.filter-nav .nav-link:hover {
	color: #00b4d8;
}

@media(min-width: 768px) {
	.filter-checkbox {
		display: block;
	}
}

@media(min-width:992px) {
	.filter-nav {
		display: flex;
	}
}

@media(min-width:1200px) {
	.filter-nav {
		font-size: 14px;
	}
}

/* --------------------------------------------------------------
  #FOOTER
-------------------------------------------------------------- */
.footer {
	color: #6c757d;
}

.footer .footer-img img {
	max-width: 200px;
	margin-bottom: 20px;
}

.footer h6 {
	color: #fff;
}

.footer .nav .nav-link {
	font-size: 13px;
	padding: 8px 0px;
	color: #6c757d;
}

.footer .nav .nav-link:focus,
.footer .nav .nav-link:hover {
	color: #00b4d8;
}

.footer .nav .nav-item.fb-hover .nav-link:focus,
.footer .nav .nav-item.fb-hover .nav-link:hover {
	color: #3b5998 !important;
}

.footer .nav .nav-item.tweet-hover .nav-link:focus,
.footer .nav .nav-item.tweet-hover .nav-link:hover {
	color: #1d9bf0 !important;
}

.footer-bottom {
	border-top: 1px solid #3c4045;
    padding: 14px;
    color: #fff;
}

.footer-bottom .copyright-text {
    font-size: 13px;
    font-weight: bold;
}

/* --------------------------------------------------------------
  #FORM
-------------------------------------------------------------- */
.form-control,
.form-select {
	font-size: 14px;
	padding: 10px;
	border-radius: 2px;
	border-color: #dee2e6;
}

.form-control:focus,
.form-select:focus {
    /*border-color: #00b4d8;*/
    outline: 0;
    -webkit-box-shadow: inset 0 0 0 1px #00b4d8;
    -moz-box-shadow: inset 0 0 0 1px #00b4d8;
    box-shadow: inset 0 0 0 1px #00b4d8;
}

.form-label {
    margin-bottom: 5px;
    font-size: 14px;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #999;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #999;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #999;
}

.form-check-input:checked {
    background-color: #00b4d8;
    border-color: #00b4d8;
}

.form-check-lg .form-check-input {
	width: 24px;
    height: 24px;
    margin-top: 0px;
}

.form-check-lg label {
	margin-left: 5px;
	margin-top: 1px;
}

.checkboxes>.form-check:not(:last-child) {
	margin-bottom: 8px;

}

.form-floating.custom>.form-control {
	height: 43px;
	line-height: 43px;
	padding: 10px;
}

.form-floating.custom>label {
	padding: 10px;
}

.form-floating.custom>.form-control:focus, 
.form-floating.custom>.form-control:not(:placeholder-shown) {
	padding-top: 22px;
	padding-bottom: 10px;
}

.form-floating.custom>.form-control:focus~label, 
.form-floating.custom>.form-control:not(:placeholder-shown)~label, 
.form-floating.custom>.form-select~label {
	font-size: 13px;
}

/** Switch Sizing **/
.form-check-input.custom {
	clear: left;
}

.form-switch.form-switch-sm {
	margin-bottom: 0.5rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-sm .form-check-input {
	height: 1rem;
	width: calc(1rem + 0.75rem);
	border-radius: 2rem;
}

.form-switch.form-switch-md {
	margin-bottom: 1rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-md .form-check-input {
	height: 1.5rem;
	width: calc(2rem + 0.75rem);
	border-radius: 3rem;
}

.form-switch.form-switch-lg {
	margin-bottom: 1.5rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-lg .form-check-input {
	height: 2rem;
	width: calc(3rem + 0.75rem);
	border-radius: 4rem;
}

.form-switch.form-switch-xl {
	margin-bottom: 2rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-xl .form-check-input {
	height: 2.5rem;
	width: calc(4rem + 0.75rem);
	border-radius: 5rem;
}

/** Custom Switch Styling **/
.form-switch.custom .form-check-input:before,
.form-switch.custom .form-check-input:after {
	font-size: 10px;
	text-transform: uppercase;
	padding-left: 8px;
	font-weight: 600;
	line-height: 28px;
}

.form-switch.custom .form-check-input:before {
	content: 'Yes';
	text-align: left;
	opacity: 0;
	color: #fff;
}

.form-switch.custom .form-check-input.active:before {
	opacity: 1;
}

.form-switch.custom .form-check-input:after {
	content: 'No';
	text-align: right;
	opacity: 1;
	color: #333;
}

.form-switch.custom .form-check-input.active:after {
	opacity: 0;
}

.form-switch.custom #yesnowSwitch:checked {
	background-color: #37cd69;
	border-color: #37cd69;
}

.yesnobox {
	background-color: #fff;
    border: 1px solid #dee2e6;
    display: flex;
    justify-content: center;
    flex-direction: row;
    border-radius: 2px;
}

.yesnobox .question {
    box-sizing: border-box;
    padding: 5px 10px;
    font-size: 12px;
    width: 100%;
    display: inline-block;
}

.yesnobox .answer {
    width: 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}

.yes {
    border-right: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
}

.no {
}

.hide_radio {
    position: fixed;
    top: -100px;
    left: -100px;
}

.hide_radio:checked + .yes {
    background-color: #37cd69;
    color: #fff;
    border-right: 1px solid #37cd69;
    border-left: 1px solid #37cd69;
}

.hide_radio:checked + .no {
    background-color: #e20000;
    border-right: 1px solid #e20000;
    border-left: 1px solid #e20000;
    color: #fff;
}

/* --------------------------------------------------------------
  #HEIGHT
-------------------------------------------------------------- */
.row.col-height {
	display: flex;
	flex-wrap: wrap;
}

.row.col-height > [class*='col-'] {
	display: flex;
}

@media(min-width: 768px) {
	.min-600 {
		min-height: 600px;
	}
}

/* --------------------------------------------------------------
  #HERO
-------------------------------------------------------------- */
.article-hero {
	background: url(../img/blog/article-post.jpg) no-repeat center center !important;
}

.article-hero:before {
    background-color: rgba(58,65,92,0.9);
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.home-hero {
    background: url(../img/assets/bgs/main-bg.jpg) no-repeat center center !important;
    -webkit-background-size: cover !important; 
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    min-height: 200px;
}

.home-hero:before {
    background-color: rgba(58,65,92,0.9);
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

@media(min-width:768px) {
	.home-hero {
		min-height: 450px;
	}
}

.cta-section {
    background: url(../img/assets/bgs/cta-bg.jpg) no-repeat center center !important;
}

/* --------------------------------------------------------------
  #HERO-GRID
-------------------------------------------------------------- */
.img-grid li {
	float: left;
	/*padding: 1px;*/
	width: 100%;
}

.img-grid .img-slide,
.img-grid li:first-child .img-slide {
	position: relative;
	min-height: 221px;
}

.img-grid .slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	color: #fff;
}

@media(min-width:768px) {
	.img-grid .img-slide,
	.img-grid li:first-child .img-slide {
		min-height: 300px;
	}
}

@media(min-width:992px) {
	.img-grid li {
		width: 25%;
	}

	.img-grid li:first-child {
		width: 50%;
	}

	.img-grid li:first-child .img-slide {
		min-height: 442px;
	}

	.img-grid .img-slide {
		min-height: 221px;
	}

	.prize-slide.img-slide {
		background-position: top left;
	}

	.prize-slide-0.img-slide {
		background-position: top left;
	}

	.prize-slide-1.img-slide {
		background-position: top left;
	}

	.prize-slide-2.img-slide {
		background-position: top left;
	}

	.prize-slide-3.img-slide {
		background-position: top left;
	}

	.prize-slide-4.img-slide {
		background-position: top left;
	}
}

@media(min-width:1200px) {
	.img-grid .slide-content {
		padding: 30px;
	}
	
	.img-grid .five .slide-content {
		padding: 30px;
	}
}

/* --------------------------------------------------------------
  #HOW-IT-WORKS
-------------------------------------------------------------- */
.how-section .steps img {
	height: 80px;
	width: auto;
	margin-bottom: 20px;
}

.numPoints {
	height: 26px;
	width: 26px;
	line-height: 22px;
	text-align: center;
	margin-right: 5px;
}

/* --------------------------------------------------------------
  #HOW-IT-WORKS
-------------------------------------------------------------- */
.boxImg {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 50% 50%;
	object-position: 50% 50%;
	width: 100%;

}

/* --------------------------------------------------------------
  #HOVER-EFFECT
-------------------------------------------------------------- */
.img-slide:before {
	transition: transform 0.35s;
}
.hover-effect:hover .img-slide:before {
	background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(72,76,97,0.5) 75%);
	background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(72,76,97,0.5) 75%);
}

.hover-effect:hover .slide-content h3 {
	text-decoration: underline;
}

/* --------------------------------------------------------------
  #NAVIGATION
-------------------------------------------------------------- */
.navbar {
	background-color: #3a415c;
	padding-top: 6px;
	padding-bottom: 6px;
	-webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.navbar .nav-item {
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .nav-item:first-child {
	border-top: 1px solid rgba(255,255,255,0.1);
}

.navbar .nav-item .nav-link {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	padding: 18px 16px;
	text-transform: uppercase;
}

.navbar .nav-item .nav-link:focus,
.navbar .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-link.active, 
.navbar .navbar-nav .show>.nav-link {
	color: #00b4d8;
}

.navbar .offcanvas-header {
	padding: 16px;
}

.navbar .offcanvas-header .btn-close {
	opacity: 1;
}

.navbar .megamenu { 
	padding: 1rem;
	border-radius: 0px; 
	border: 0;
	background-color: #2F354B;
}

.navbar .has-megamenu .dropdown-toggle {
	display: flex;
	align-items: center;
}

.navbar .has-megamenu .dropdown-toggle::after {
	border: 0;
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font-solid);
	content: "\f078";
	font-size: 10px;
	margin-left: auto;
}

.navbar .megamenu .col-megamenu ul li:not(:first-child) {
	padding-top: 10px;
}

.navbar .megamenu .col-megamenu a {
	color: #fff;
}

.navbar .megamenu .col-megamenu a:hover {
	color: #00b4d8;
}

.navbar-prize-icons {
	display: block;
}

.navbar-prize-icons .nav-icon-shape {
	height: 26px;
	width: 26px;
	line-height: 26px;
	color: #fff;
	font-size: 10px;
	border-radius: 100%;
	text-align: center;
}

.navbar .navbar-toggler.custom {
	border: 0;
}

.navbar .navbar-toggler.custom .navbar-toggler-icon {
	 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1.0%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.socials-nav {
	padding: 18px 16px;
}

#mainNav #slide-line {
    position: absolute;
    bottom: 0;
    height: 5px;
    background: #ff9e04;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.navbar--expanded {
    height: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.navbar--active {
	overflow: hidden;
}

@media(min-width: 768px) {
	.navbar {
		height: 70px;
	}

	.navbar--active {
		overflow: auto;
	}
}

@media(min-width:992px) {
	.navbar {
		height: 70px;
		background-color: #3a415c;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.navbar .navbar-nav .nav-item,
	.navbar .navbar-nav .nav-item:first-child {
		border: 0;
	}

	/* .navbar .navbar-nav .nav-item:nth-last-child(2) > .nav-link {
		padding: 8px 0px 8px 12px !important;
	} */

	.navbar .navbar-nav .nav-link {
		font-size: 14px;
		padding: 8px 12px;
	}

	.navbar .dropdown-toggle::after {
		margin-left: 6px !important;
	}

	.navbar .has-megamenu {
		position:static!important;
	}

	.navbar .megamenu { 
		left:0; 
		right:0; 
		width:100%; 
		margin-top:0;  
		padding: 30px;
		background-color: #fff;
		box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
	}

	.navbar .megamenu .col-megamenu a {
		color: #333;
	}

}

/* --------------------------------------------------------------
  #OWL-CAROUSEL-BUTTONS
-------------------------------------------------------------- */
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
	position: relative;
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	transition: .2s ease-in;
}

.owl-carousel.clear-btn .owl-prev,
.owl-carousel.clear-btn .owl-next {
	color: #aaa !important;
	background-color: transparent !important;
	border: 1px solid #ccc !important;
}

.owl-carousel.clear-btn .owl-prev:focus,
.owl-carousel.clear-btn .owl-prev:hover,
.owl-carousel.clear-btn .owl-next:focus,
.owl-carousel.clear-btn .owl-next:hover,
.owl-carousel.blue-btn-outline .owl-next,
.owl-carousel.blue-btn-outline .owl-prev {
	background-color: transparent !important;
	border: 1px solid #00b4d8 !important;
	color: #00b4d8 !important;
}

.owl-carousel.blue-btn .owl-prev,
.owl-carousel.blue-btn .owl-next,
.owl-carousel.blue-btn-outline .owl-next:hover,
.owl-carousel.blue-btn-outline .owl-prev:hover, 
.owl-carousel.blue-btn-outline .owl-next:focus,
.owl-carousel.blue-btn-outline .owl-prev:focus {
	color: #fff !important;
	background-color: #00b4d8 !important;
	border: 1px solid #00b4d8 !important;
}

#featuredCarouselOne .owl-prev,
#featuredCarouselOne .owl-next {
	position: absolute;
    top: 10px;
    display: none;
}

#featuredCarouselOne .owl-nav .owl-prev {
	left: -50px;
}

#featuredCarouselOne .owl-nav .owl-next {
	right: -50px;
}

#blogCarousel .owl-nav,
#prizeCarousel .owl-nav,
#featuredCarouselTwo .owl-nav,
.prizes-carousel-section .owl-nav{
	position: absolute;
	right: 0;
	top: -49px;
}

@media(min-width:768px) {
	#featuredCarouselOne .owl-prev,
	#featuredCarouselOne .owl-next {
		display: block;
		top: 34px;
	}

	#featuredCarouselOne .owl-dots{
		display: none;
	}
}

@media(min-width:992px) {
	#featuredCarouselOne .owl-prev,
	#featuredCarouselOne .owl-next {
	    top: 32px;
	}
}

@media(min-width:1200px) {
	#featuredCarouselOne .owl-prev,
	#featuredCarouselOne .owl-next {
	    top: 60px;
	}
}

/* --------------------------------------------------------------
  #OWL-CAROUSEL-DOTS
-------------------------------------------------------------- */
.owl-dots {
	margin-top: 20px;
}

.owl-dots .owl-dot > span {
    display: inline-block;
    height: 10px;
    width: 10px;
    background: #eee !important;
    border-radius: 100% !important;
    margin: 4px;
}

.owl-dots .owl-dot.active > span {
	background: #00b4d8 !important;
}

/* --------------------------------------------------------------
  #OVERLAYS
-------------------------------------------------------------- */
.dark-overlay:before {
    background-color: rgba(0,0,0,.6);
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.purple-overlay:before {
	background-color: rgba(58,65,92,0.9);
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.dark-gd-overlay:before {
	content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
	background: -webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.8)),to(rgba(0,0,0,.2)));
    background: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(0,0,0,.2) 80%);
}

.purple-gd-overlay:before {
	content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
	background: -webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(58,65,92,1)),to(rgba(58,65,92,.2)));
    background: linear-gradient(to top,rgba(58,65,92,1) 0,rgba(58,65,92,.2) 70%);
}


/* --------------------------------------------------------------
  #POLICY-PAGES
-------------------------------------------------------------- */
.legal-page .effective-date {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    color: #808f96;
    margin: auto;
    padding: 8px 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(178, 190, 209);
    border-radius: 2px;
}

.policy-section ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.policy-section ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 10px;
}

.policy-section ol > li:before {
    content: counters(item, ".") ". ";
    padding-right: 2px;
    font-weight: bold;
}

@media(min-width:768px){
	.policy-section ol > li:before {
		padding-right: 8px;
		display: table-cell;
	}
}

/* --------------------------------------------------------------
  #PRIZE-CARDS (MAIN)
-------------------------------------------------------------- */
.prize-card {
	border: 0;
	-webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.prize-card:hover {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.prize-card .card-title {
	font-size: 18px;
	margin-bottom: 5px;
}

.prize-card .card-text.description {
	font-size: 14px;
}

.prize-card a {
	color: #333;
}

.prize-card a:focus,
.prize-card a:hover {
	color: #00b4d8; 
	text-decoration: underline;
}

@media(min-width: 576px) {
	.prize-card {
		height: 100% !important;
	}
}

/* --------------------------------------------------------------
  #PRIZE-CARDS (FEATURE)
-------------------------------------------------------------- */
.feature-prize .row {
	align-items: center;
}

.feature-prize .card-body p {
	font-size: 16px;
}

@media(min-width: 768px) {	
	.feature-prize .card-body p {
		font-size: 18px;
	}
}

@media(min-width:1200px) {
	.feature-prize .row {
		align-items: normal;
	}

	.feature-prize img {
		object-fit: fill;
		height: 100%;
	}

	.feature-prize .card-body p {
		font-size: 12px;
	}
}

/* --------------------------------------------------------------
  #PROGRESS-BAR
-------------------------------------------------------------- */
.progress {
	height: 30px;
	font-size: 16px;
}

/* --------------------------------------------------------------
  #RIBBON
-------------------------------------------------------------- */
.ribbon {
	width: 130px;
	height: 130px;
	overflow: hidden;
	position: absolute;
	text-transform: uppercase;
}

.ribbon::before,
.ribbon::after {
	position: absolute;
	z-index: -1;
	content: '';
	display: block;
	border: 5px solid #2980b9;
}

.ribbon span {
	position: absolute;
	display: block;
	width: 225px;
	padding: 4px 0;
	background-color: #d53345;
	box-shadow: 0 5px 10px rgba(0,0,0,.08);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-shadow: 0 1px 1px rgba(0,0,0,.2);
	text-transform: uppercase;
	text-align: center;
}

.ribbon.claimed span {
	background-color: #0d0;
}

.ribbon-top-left {
	top: 0px;
	left: 0px;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
	border-top-color: transparent;
	border-left-color: transparent;
}

.ribbon-top-left::before {
	top: 0;
	right: 0;
}

.ribbon-top-left::after {
	bottom: 0;
	left: 0;
}

.ribbon-top-left span {
	right: -25px;
	top: 30px;
	transform: rotate(-45deg);
}

/* --------------------------------------------------------------
  #SOCIALS
-------------------------------------------------------------- */
.socials .fa-brands {
    color: #fff;
    border-radius: 100%;
    text-align: center;
}

.socials.lg .fa-brands {
	height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 28px;
}

.socials.md .fa-brands {
	height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 18px;
}

.socials .fa-facebook-f {
	background-color: #3b5998;
}

.socials .fa-x-twitter {
	background-color: #000000;
}

/* --------------------------------------------------------------
  #SPACING
-------------------------------------------------------------- */
.min-600 {
	min-height: 600px;
}

.spacing-sm,
.spacing-md,
.spacing-lg {
	padding-top: 30px;
	padding-bottom: 30px;
}

@media(min-width: 768px) {
	.spacing-md {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.spacing-lg {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

/* --------------------------------------------------------------
  #TABLE
-------------------------------------------------------------- */
.table {
    border: 1px solid #d9d5e7;
    border-color: #d9d5e7 !important;
    color: #333;
    font-size: 14px;
    vertical-align: middle;
}

.table>:not(:first-child) {
	border-top: none;
}

/* --------------------------------------------------------------
  #TEXT
-------------------------------------------------------------- */
h3.subheading {
  font-size:1.4rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

.display-6 {
    font-size: 22px;
}

.fs-5.custom {
    font-size: 1rem!important;
}

.fs-10 {
	font-size: 10px !important;
}

.fs-12 {
	font-size: 12px !important;
}

.fs-14 {
	font-size: 14px !important;
}

.fs-16 {
	font-size: 16px !important;
}

.fs-18 {
	font-size: 18px !important;
}

.fs-20 {
	font-size: 20px !important;
}

.fs-22 {
	font-size: 22px !important;
}

.text-blue {
	color: #00b4d8 !important;
}

.text-muted {
	color: #666 !important;
}

@media(min-width:768px) {
	.fs-5.custom {
	    font-size: 1.25rem!important;
	}
}

/* --------------------------------------------------------------
  #WINNER-PAGE
-------------------------------------------------------------- */
.spbox {
	width: 100%;
	margin: 20px auto;
	background: #00b4d8;
	padding: 20px;
	text-align: center;
	color: #fff;
	font-family: arial;
	position: relative;
	border-radius: 6px;
	font-size: 18px;
	font-style: italic;
}

.sb:after {
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #00b4d8;
	border-bottom: 10px solid transparent;
	right: 49%;
	bottom: -18px;
}

.winnerImg {
    height: 60px !important;
    width: auto !important;
}

#winnersCarousel .owl-nav button.owl-prev, #winnersCarousel .owl-nav button.owl-next {
    z-index: 92;
    position: absolute;
    top: 16%;
    display: none;
}

#winnersCarousel .owl-nav button.owl-prev {
    left: -80px;
}

#winnersCarousel .owl-nav button.owl-next {
	right: -80px;
}

#winnersCarousel .owl-dots {
    margin-top: 10px;
}

@media(min-width:992px) {
	#winnersCarousel .owl-nav button.owl-prev, #winnersCarousel .owl-nav button.owl-next {
		display: block;
	}

	#winnersCarousel .owl-dots {
	    display: none;
	}
}

.blog-post-card-img {
	padding-bottom: 56.25%;
}

.ending-soon-img {
	margin-top: 12.335px;
	margin-bottom: 12.335px;
}

.opening-sentence {
  font-weight: bold;
  margin-bottom: 0;
  text-align: center;
  font-size: 200%;
  width: 100%;
}

.socials.xl .fa-brands {
	height: 36px;
	width: 36px;
	line-height: 36px;
	font-size: 14px;
}

#mainNav>.container-fluid.custom {
	padding-left: 30px !important;
	padding-right: 30px !important;
}

/* --------------------------------------------------------------
  #MEDIA-QUERIES
-------------------------------------------------------------- */
@media(min-width:576px){}
@media(min-width:768px){}
@media(min-width:992px){}
@media(min-width:1200px){}
@media(min-width:1400px){}

.selected-tab {
	display:inline-block;
	margin:0;
	padding: 10px 20px;
	border: 1px solid #999;
	border-bottom: 2px solid #f4f6f8;
	border-radius: 5px 5px 0 0;
	background-color:#f4f6f8;
	transform:translateY(2px);
}

.tab-selector {
	display:inline-block;
	margin: 0 10px 0 10px;
	padding: 5px 10px;
	background-color: white;
	border-radius: 5px;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	transform:translateY(2px);
	cursor: pointer;
}

.hidden-col {
	display: none!important;
}