/* ----------------------------------
Basic CSS
-------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
body {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
div,
a {
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

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

a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    border: none;
    outline: 0 none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

/*Header*/
.header-area {
    position: relative;
    padding: 50px 0;
    background: #000000;
    z-index: 1;
}
.header-wrap {
    text-align: center;
}
.header-wrap img {
	margin-bottom: 30px;
	max-width: 970px;
}
.header-wrap h2 {
	color: #febe12;
	font-weight: 400;
	font-size: 24px;
}
.header-wrap h2 span {
    font-weight: 700;
	text-transform: uppercase;
	border-left: 2px solid #febe12;
	padding-left: 10px;
	/* display: inline-block; */
	margin-left: 3px;
}
.header-wrap h2 span:first-child {
    border: 0 none;
    margin: 0;
    padding: 0;
}

/*Banner CSS*/
.banner-area {
	background: #FFFFFF;
    position: relative;
}
.banner-content {
	text-align: center;
	z-index: 2;
}
.banner-logo img {
	background: #fff none repeat scroll 0 0;
	border-radius: 6px;
	width: 300px;
    padding: 15px;
	margin-bottom: 30px;
}
.banner-title {
	color: #000;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
.banner-promo {
	text-align: center;
}
.banner-promo h2 {
	font-size: 24px;
	color: #000;
	font-weight: bold;
}
.banner-content span,
.banner-promo span {
	color: #D71440;
    text-transform: uppercase;
}
a.reg-button {
    font-size: 20px;
    color: #fff;
    background: #D71440;
    height: 55px;
    line-height: 50px;          
    display: inline-block;
    border: 2px solid #fff;
    padding: 0 40px;
    border-radius: 6px;
    margin-top: 30px;
}
a.reg-button:hover {
	background: #fff;
	color: #D71440;
    border: 2px solid #D71440;
}
.banner-promo p {
	font-size: 14px;
	color: #000;
	margin-top: 30px;
}
/* Video */
.video-area .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.video-text p {
    font-size: 20px;
    margin-bottom: 20px;
}
.video-text p:last-child {
    margin-bottom: 0px;
}

/*Promo Button*/

.promo-btn-btn {
    text-align: center;
}
.promo-icon {
    margin-bottom: 30px;
}
.promo-icon i {
    position: relative;
    font-size: 40px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background: #2FC0CD;
    border-radius: 100%;
    color: #fff;
    z-index: 2;
    margin: 10px 0;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.promo-icon i:after {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate( -50%, -50%);
            -ms-transform: translate( -50%, -50%);
        transform: translate( -50%, -50%);
    background: rgba(53, 192, 206, 0.5);
    border-radius: 100%;
    z-index: -1;
}

.promo-btn-btn a {
    border-radius: 6px;
    color: #2FC0CD;
    display: inline-block;
    font-size: 18px;
    height: 50px;
    letter-spacing: 1px;
    line-height: 48px;
    padding: 0 30px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid #2FC0CD;
}

.promo-btn-btn a:hover,
.promo-btn-btn a:active,
.promo-btn-btn a:focus {
    background: #2FC0CD;
    color: #FFFFFF;
}

.promo-btn-btn:hover .promo-icon i {
    color: #F8A281;
}

/* Promo Area */
.promo-area {
    background: #FEBD12;
}
.promo-wrap {
    display: -ms-grid;
    display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
}
.promo-wrap > div {
    text-align: center;
}
.promo-wrap h3 {
    font-size: 18px;
	margin-bottom: 7px;
}
.promo-wrap a {
    font-weight: 600;
    text-decoration: underline;
}
/* Blog */
.blog-title {
    text-align: center;
}
.blog-title h2 {
    padding-bottom: 20px;
}
.blog-title p {
    margin-bottom: 50px;
}
.blog-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
    margin: 0 -15px;
}
.blog-single {
	width: calc(33.3333% - 30px);
	margin: 0 15px;
}
.blog-single h2 {
	font-size: 18px;
	font-weight: 700;
	margin-top: 20px;
}
.blog-single p {
    font-size: 18px;
	margin-top: 10px;
}
.blog-single p b {
    font-weight: 600;
}
.blog-single p a {
    color: #2FC0CD;
	font-weight: 600;
}
.blog-single ul {
    margin: 0;
    padding: 0;
    padding-left: 20px;
    margin-top: 10px;
}
.blog-single ul li {
    margin-bottom: 5px;
    font-weight: 600;
}
/*Countdown CSS*/
.countdown-area {
    background: #FEBD12;
}
.countdown-area .sec-title {
    color: #000000;
}

.countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cdown {
	text-align: center;
	border-radius: 4px;
	background: #ffffff;
	width: 150px;
}

.cdown span {
    display: block;
    border-radius: 4px;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}

.cdown span strong {
    color: #000000;
    display: inline-block;
    font-size: 60px;
    padding: 15px 0;
}

.cdown span p {
	border-radius: 0 0 4px 4px;
	color: #fff;
	padding-bottom: 10px;
	padding-top: 10px;
	font-weight: 600;
    border-top: 2px solid #ffffff;
    background: #000000;
}

/*Share*/
.sec-title {
	padding-bottom: 40px;
	font-size: 28px;
	font-weight: bold;
}
.share-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}
.share-wrapper a {
    display: block;
    width: 100%;
    margin: 0 15px;
    border-radius: 6px;
}

.share-wrapper a:hover {
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

.social-box {
    background: #eeeff0;
    padding: 40px 30px;
    border-radius: 6px;
}
.social-box .icon {
    margin-bottom: 20px;
}
.social-box .icon i {
    font-size: 80px;
    height: 140px;
    width: 140px;
    line-height: 140px;
    display: inline-block;
    background: #59a1d8;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.social-box .icon .fa-x-twitter {
    background: #1da1f2;
}
.social-box .icon .fa-linkedin-in {
    background: #0077b5;
}
.social-box .icon .fa-facebook-f {
    background: #3b5998;
}
.share-wrapper a:hover .social-box .icon i {
    background: transparent;
}
.share-wrapper a:hover .social-box .icon .fa-x-twitter {
    color: #1da1f2;
    border-color: #1da1f2;
}
.share-wrapper a:hover .social-box .icon .fa-linkedin-in {
    color: #0077b5;
    border-color: #0077b5;
}
.share-wrapper a:hover .social-box .icon .fa-facebook-f {
    color: #3b5998;
    border-color: #3b5998;
}
.social-box .text h3 {
    font-size: 20px;
    color: #222;
}

/*Footer CSS*/
.footer-area {
    position: relative;
    background: #000000;
    z-index: 1;
    overflow: hidden;
    padding: 50px 0;
}
.footer-area::before {
	position: absolute;
	width: 260px;
	height: 100%;
	content: "";
	top: 0;
	right: -91px;
	background-image: url(../img/footer-bg.png);
	background-repeat: no-repeat;
	background-position: right -30px;
	background-size: 260px;
    z-index: -1;
}
.footer-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 30px;
}
.footer-logo img {
	max-width: 500px;
}
.footer-date {
	margin-right: 120px;
	background: #000;
	padding: 10px;
	position: relative;
	bottom: -30px;
}
.footer-date h2 {
	color: #AFAEAF;
	font-size: 24px;
	text-align: right;
	font-weight: 400;
}
.footer-date h2 span {
	color: #febe12;
	font-weight: 700;
    text-transform: uppercase;
}