/* 
----------------
Table of Content
----------------
1.header-part
2.slider-part
3.festive-part
4.schedule-part
5.gallery-part
6.pricing-part
7.sponsors-part
8.footer-part
*/
@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:300,400,500,600,700,800,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    line-height: 24px;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}
ul,ol {
    list-style: none;
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
}
a,a:hover {
    text-decoration: none;
}
p {
    margin: 0;
    padding: 0;
}
/*==================
    navbar css start
==================*/
.header-part {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}
.navbar {
    padding: 15px 0;
    position: relative;
    z-index: 999;
}
.navbar:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
    opacity: 0.15;
}
.navbar.navbar-expand-lg .nav-item {
    margin-right: 46px;
}
.navbar.navbar-expand-lg li a {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 30px 0 !important;
    display: inline-block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navbar.navbar-expand-lg li:hover > a {
    color: #ffe169;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    background: #6e06ae;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.navbar-expand-lg .navbar-nav .dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.navbar-expand-lg .navbar-nav .dropdown-menu a:hover {
    color: #ffe169;
}
.dropdown-item:hover {
    background-color: transparent;
}
.header-btn a {
    color: #0f2f44;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 30px;
    display: inline-block;
    background: linear-gradient(#ffe169, #ffa913);
    border-radius: 4px;
}

.Clinheader-btn a {
    color: #0f2f44;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 30px;
    display: inline-block;
    background: linear-gradient(#FAC9B8, #F26D43);
    border-radius: 4px;
}
/*==================
    navbar css end
==================*/
/*==================
    slider-part css start
==================*/
.single-slider {
    background: url(images/slider/banner.png) no-repeat center;
    background-size: cover;
}
.overlay {
    padding: 280px 0 50px;
    background: linear-gradient(to right, rgba(108, 13, 176, 0.301), rgba(65, 132, 208, 0.363));
    /*background: linear-gradient(to right, rgba(109, 13, 176, 0.6), rgb(65, 132, 208, 0.6));*/
}
.slider-text {
    text-align: center;
    margin-bottom: 170px;
}
.slider-text p {
    color: #fff;
    font-size: 30px;
    letter-spacing: 12px;
    margin-bottom: 10px;
}
.slider-text h2 {
    font-size: 80px;
    font-weight: 700;
    color: #ffffff;
    width: 850px;
    margin: 0 auto;
    line-height: 84px;
}
.counter-item {
    position: relative;
    width: 75px;
    margin-left: 0px;
}
.counter-item.item-m {
    margin-left: 45px;
}
.counter-item.item-ml {
    margin-left: 55px;
}
.counter-item.item-w {
    width: 120px;
}
.counter-item.item-title {
    width: 350px;
    text-align: right;
    text-transform: uppercase;
}
.myCountdown h2 {
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(to bottom, #ffa913, #ffe169);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 0;
}
.myCountdown .counter-hours,
.myCountdown .counter-seconds {
    background: linear-gradient(to bottom, #ffe169, #ffa913);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.counter-item span {
    font-size: 22px;
    font-weight: 500;
    transform: rotate(-90deg);
    display: inline-block;
    position: absolute;
    bottom: 33px;
    right: -40px;
    text-transform: capitalize;
    background: linear-gradient(to bottom, #ffe169, #ffa913);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.counter-item span.da {
    position: absolute;
    right: -13px !important;
    bottom: 22px !important;
}
.counter-item span.ho {
    position: absolute;
    right: -26px !important;
    bottom: 26px !important;
}
.video-part p {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 0;
    margin-right: 10px;
}
.video-part a i {
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #ffe169, #ffa913);
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
}
/*==================
    slider-part css end
==================*/
/*==================
    festive-part css start
==================*/
#festive-part {
    padding: 100px 0 125px;
}
.festive-img {
    position: relative;
}
.festive-img .festive {
    position: absolute;
    top: 0%;
    left: 0%;
}
.festive-left {
    position: relative;
}
.festive-left .festive-shape .dot {
    position: absolute;
    top: -58%;
    z-index: -1;
    left: -35px;
}
.festive-left .festive-shape .shape {
    position: absolute;
    top: 5px;
    right: 25px;
}
.festive-left .slick-initialized .slick-slide {
    padding-bottom: 54px;
}
.slick-initialized .slick-slide {
    outline: none;
}
.festive-active ul.slick-dots {
    position: absolute;
    bottom: -30px;
    right: 42%;
}
.festive-active ul li {
    display: inline-block;
}
.festive-active ul li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #999999;
    margin: 0 3px;
    border-radius: 50%;
    background: no-repeat;
    outline: none;
}
.festive-active ul li.slick-active button {
    background: linear-gradient(to right, #ffe169, #ffa913);
    border: 1px solid transparent;
    transform: scale(1.2);
}
.text-img h2 {
    font-size: 120px;
    font-weight: 700;
    background: url(images/festive/festivetextshape.png);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: 50%;
    line-height: 1;
}
.text-img p {
    font-size: 48px;
    color: #0f2f44;
    font-weight: 700;
    padding-bottom: 5px;
}
#festive-part .festive-right {
    display: flex;
}
.festive-right .text-img {
    margin-top: -23px;
    width: 27%;
}
.festive-text {
    width: 73%;
}
.festive-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f2f44;
    text-transform: uppercase;
    width: 450px;
    margin-bottom: 15px;
}
.festive-text p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
}
.festive-text .location {
    display: flex;
    border-top: 1px solid #f1f1f1;
    padding-top: 35px;
}
.address {
    width: 50%;
}
.festive-text .address.add-ml {
    margin-left: 55px;
}
.festive-text .address img {
    float: left;
    margin-right: 15px;
}
.festive-text .address p {
    width: 255px;
    font-size: 20px;
    color: #222;
}
.festive-text .address p.num {
    width: 185px !important;
}
/*==================
    festive-part css end
==================*/
/*==================
    schedule-part css start
==================*/
#schedule-part {
    background: url(images/media/speaker-bg.png) no-repeat center;
    background-size: cover;
    padding: 0px 0 0px;
}
.overlay2 {
    padding: 60px 0 20px;
    background: linear-gradient(to right, rgba(108, 13, 176, 0.301), rgba(65, 132, 208, 0.363));
   /* background: linear-gradient(to right, rgba(109, 13, 176, 0.6), rgb(65, 132, 208, 0.6));*/
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
#schedule-part .section-title p {
    color: #fff;
}
#schedule-part .section-title h2 {
    color: #fff;
}
.section-title p {
    font-size: 20px;
    color: #0f2f44;
}
.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f2f44;
    text-transform: uppercase;
}
#schedule-part .speakers-item {
    display: flex;
    margin-bottom: 80px;
}
#schedule-part .speakers-item .speakers-img {
    width: 30%;
}
#schedule-part .speakers-item .speakers-text {
    width: 60%;
    padding-left: 20px;
    margin-top: 15px;
    position: relative;
}
.speakers-item .speakers-text .date {
    width: 230px;
    background: #0f2f44;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
}
.speakers-item .speakers-text .date p {
    font-size: 20px;
    background: linear-gradient(to bottom, #ffa913, #ffe169);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.speakers-item .speakers-text h3 {
    font-size: 32px;
    color: #fff;
}
.speakers-item .speakers-text p {
    font-size: 20px;
    color: #fff;
}
.speakers-item .speakers-text .speaker-icon {
    padding: 10px 30px;
    background: #ffffff;
    border-radius: 5px;
    position: absolute;
    bottom: 4px;
    left: 15px;
}
.speakers-item .speakers-text .speaker-icon span {
    color: #0f2f44;
    font-size: 20px;
    position: relative;
    margin-right: 64px;
}
.speakers-item .speakers-text .speaker-icon span:after {
    position: absolute;
    content: '';
    top: 12px;
    left: 58px;
    width: 50px;
    height: 2px;
    background: #f1f1f1;
}
.speakers-text .speaker-icon a i {
    color: #999999;
    font-size: 16px;
    margin-left: 20px;
    transition: all linear .4s;
}
.speakers-text .speaker-icon a:hover i {
    color: #0f2f44;
}
/*==================
    schedule-part css end
==================*/
/*==================
    upcoming-part css start
==================*/
#upcoming-part {
    padding: 95px 0 80px;
}
#upcoming-part .section-title p {
    color: #0f2f44;
}
#upcoming-part .section-title h2 {
    color: #0f2f44;
}
#upcoming-part .event-item {
    display: flex;
    border: 1px solid #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
#upcoming-part .event-item:hover {
    background: #0f2f44;
    border: 1px solid transparent;
}
#upcoming-part .event-img {
    width: 13%;
    margin-top: 5px;
}
#upcoming-part .event-text {
    width: 60%;
    margin-left: 30px;
}
#upcoming-part .event-btn {
    width: 23%;
    text-align: right;
}
#upcoming-part .event-text h3 {
    font-size: 32px;
    color: #0f2f44;
    margin-bottom: 20px;
    margin-top: 8px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
#upcoming-part .event-item:hover h3 {
    color: #fff;
}
#upcoming-part .event-add {
    display: flex;
    width: 50%;
}
#upcoming-part .event-add.shape {
    position: relative;
}
#upcoming-part .event-add.shape:before {
    position: absolute;
    content: '';
    top: 5px;
    left: -40px;
    width: 1px;
    height: 40px;
    background: #f1f1f1;
}
#upcoming-part .event-location {
    display: flex;
}
#upcoming-part .loc-img {
    width: 13%;
}
#upcoming-part .loc-text {
    width: 60%;
    margin-left: 5px;
}
#upcoming-part .loc-text p {
    width: 195px;
    color: #0f2f44;
    font-size: 20px;
    transition: all linear .3s;
}
#upcoming-part .event-item:hover p {
    color: #fff;
}
#upcoming-part .loc-text p.num {
    width: 125px;
}
#upcoming-part .event-btn a {
    padding: 15px 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    color: #0f2f44;
    background: linear-gradient(#ffe169, #ffa913);
    font-size: 24px;
    margin-top: 40px;
    border-radius: 5px;
}
#boxscroll {
    height: 730px;
    width: 100%;
    overflow: auto;
    position: relative;
}
#ascrail2000 {
    opacity: 1 !important;
}
#ascrail2000:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0.7px;
    width: 3px;
    height: 97%;
    background: #f1f1f1;
}
.nicescroll-cursors {
    width: 8px !important;
    height: 40px !important;
    background: #ffa913 !important;
    opacity: 1 !important;
    margin-left: -2px !important;
    border-radius: 30px !important;
}
/*==================
    upcoming-part css end
==================*/
/*==================
    gallery-part css start
==================*/
#gallery-part .gallery-img.slick-slide {
    padding: 0 5px;
}
.img {
    position: relative;
}
#gallery-part .img img {
    width: 100%;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(110, 7, 174, 0.7), rgb(75, 119, 205, 0.7));
    opacity: 0;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.img:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay a {
    top: 50%;
    left: 50%;
    position: absolute;
    font-size: 100px;
    font-weight: 100;
    color: #fff;
    opacity: 0.7;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.gallery-btn {
    text-align: center;
}
.gallery-btn a {
    padding: 15px 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    color: #0f2f44;
    background: linear-gradient(#ffe169, #ffa913);
    font-size: 24px;
    margin-top: 40px;
    border-radius: 5px;
}
section#gallery-part {
    position: relative;
}
.gallery-shape {
    position: absolute;
    top: 32px;
    right: 0;
    width: 435px;
    z-index: -1;
}
.gallery-dot {
    position: absolute;
    bottom: -130px;
    right: 110px;
    z-index: -1;
}
/*==================
    gallery-part css end
==================*/
/*==================
    testimonial-part css start
==================*/
#testimonial-part {
    padding: 95px 0 90px;
    position: relative;
}
#testimonial-part .section-title {
    margin-bottom: 40px;
}
.single-testimonial {
    text-align: center;
    padding: 50px 22px;
    background: #fefefe;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}
p.testi-text {
    font-size: 26px;
    line-height: 35px;
    font-weight: 400;
    color: #444;
}
.testi-img {
    margin: 25px 0 20px;
    position: relative;
}
.icon {
    display: inline-block;
    background: #fff;
    padding: 8px 20px;
    border-radius: 28px;
    position: absolute;
    top: 22px;
    right: 65px;
    box-shadow: 3px 0 12px 0 rgba(0, 0, 0, .1);
}
.icon i {
    color: #ffa913;
    font-size: 20px;
    margin: 0 1px;
}
.single-testimonial h3 {
    font-size: 32px;
}
.designation {
    font-size: 24px;
    color: #999999;
}
.slick-slide img {
    display: inline-block;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 70px;
    height: 70px;
    background: linear-gradient(to bottom, #ffe169, #ffa913);
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    color: #0f2f44;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.next.slick-arrow {
    left: auto;
    right: -100px;
}
.test-shape {
    position: absolute;
    top: -116px;
    left: -160px;
    width: 480px;
    z-index: -1;
}
.test-dot {
    position: absolute;
    top: 64%;
    left: 0;
    z-index: -1;
}
/*==================
    testimonial-part css end
==================*/
/*==================
    pricing-part css start
==================*/
#pricing-part .section-title {
    margin-bottom: 25px;
}
.pricing-item {
    position: relative;
}
#pricing-part .slick-initialized .slick-slide {
    margin: 28px;
}
.pricing-item:before {
    position: absolute;
    content: '';
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
.single-pricing {
    background: #fff;
    text-align: center;
    padding: 30px 0 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.single-pricing h3 {
    font-size: 32px;
    color: #0f2f44;
    margin-bottom: 5px;
}
.single-pricing h2 {
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(to bottom, #ffa913, #ffe169);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 50px;
}
.single-pricing ul li {
    font-size: 24px;
    color: #444444;
    margin-bottom: 15px;
}
.single-pricing .shape1 {
    position: absolute;
    top: 3px;
    left: 3px;
}
.pricing-item .shape2 {
    position: absolute;
    bottom: -13px;
    left: -13px;
}
.single-pricing .shape3 {
    position: absolute;
    top: -45px;
    right: -70px;
}
#pricing-part .up.slick-arrow {
    top: 44%;
}
#pricing-part .down.slick-arrow {
    top: 58%;
}
#pricing-part .form-part {
    margin-top: 23px;
    margin-left: 40px;
}
#pricing-part .form-part .heading {
    width: 54%;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #ffa913;
    margin-bottom: 30px;
}
#pricing-part .form-part input {
    width: 100%;
    font-size: 20px;
    color: #999;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
#pricing-part .form-part select {
    width: 100%;
    font-size: 20px;
    color: #999;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
}
#pricing-part .form-part input.fname,
#pricing-part .form-part input.lname {
    width: 48%;
}
#pricing-part .form-part input.lname {
    margin-left: 24px;
}
#pricing-part .form-part .payment-img {
    text-align: right;
}
#pricing-part .form-part .payment h3 {
    font-size: 24px;
    color: #222222;
}
#pricing-part .form-part .check {
    font-size: 20px;
    color: #444444;
    margin-left: 30px;
    position: relative;
    margin-top: 55px;
}
#pricing-part .form-part .check:before {
    position: absolute;
    content: '';
    top: 6px;
    left: -27px;
    width: 15px;
    height: 15px;
    background: #cccccc;
    border-radius: 2px;
}
#pricing-part .form-part button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #ffe169, #ffa913);
    border: 0;
    color: #0f2f44;
    font-weight: 700;
    font-size: 24px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}
#pricing-part .pricing-border {
    width: 100%;
    height: 1px;
    background: #f1f1f1;
    margin-top: 55px;
}
/*==================
    pricing-part css end
==================*/
/*==================
    sponsors-part css start
==================*/
#sponsors-part {
    padding: 50px 0 90px;
}
#sponsors-part .section-title {
    margin-bottom: 40px;
}
#sponsors-part .brand {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#sponsors-part .brand img {
    border: 1px solid #eee;
    padding: 40px 20px;
    margin: 10px 5px;
    border-radius: 5px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
#sponsors-part .brand img:hover {
    background: #f5f5f5;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
/*==================
    sponsors-part css end
==================*/
/*==================
    footer-part css start
==================*/
#footer-part {
    background: url(images/footer/footer-bg.png) no-repeat left;
    background-size: cover;
    padding-top: 30px;
}
#footer-part .section-title {
    margin-bottom: 25px;
}
#footer-part .section-title p {
    color: #ffa913;
}
#footer-part .section-title h2 {
    font-size: 30px;
    color: #fff;
}
#footer-part .footer-widget {
    text-align: center;
}
.footer-widget form {
    position: relative;
}
#footer-part .footer-widget input {
    width: 100%;
    padding-left: 20px;
    font-size: 18px;
    background: #ffffff;
    color: #999999;
    border: 0;
    border-radius: 5px;
    height: 56px;
}
.footer-widget form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 135px;
    height: 100%;
    background: linear-gradient(90deg, #ffe169, #ffa913);
    border: 0;
    border-radius: 5px;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
}
.footer-widget .footer-icon {
    margin: 60px 0 30px;
}
.footer-icon a i {
    font-size: 20px;
    color: #0f2f44;
    width: 60px;
    height: 60px;
    background: #ffffff;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 4px;
    transition: all linear .3s;
}
.footer-icon a i:hover {
    background: linear-gradient(90deg, #ffe169, #ffa913);
}
.footer-menu {
    margin-bottom: 30px;
}
.footer-menu ul li {
    display: inline-block;
}
.footer-menu ul li a {
    font-size: 20px;
    color: #ffffff;
    margin: 0 18px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.footer-menu ul li:hover a {
    color: #ffe169;
}
.copyright {
    text-align: center;
    border-top: 1px solid #1f3b4d;
    padding: 25px;
}
.copyright p {
    color: #fff;
    font-size: 16px;
}
/*==================
    footer-part css end
==================*
/*==================
    gallery-page css start
==================*/
/*==================
    banner-part css start
==================*/
#banner-part {
    background: url(images/gallery/gallery-bg.png) no-repeat center;
    background-size: cover;
}
#banner-part .overlay {
    padding: 160px 0 60px;
}
#banner-part .banner-text {
    text-align: center;
}
#banner-part .banner-text h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}
#banner-part .banner-text .breadcrumb {
    padding: 0;
    background-color: transparent;
    justify-content: center;
}
#banner-part .banner-text .breadcrumb-item.active {
    color: #ffe169;
    border-bottom: 1px solid #ffe169;
}
#banner-part .banner-text .breadcrumb-item + .breadcrumb-item::before {
    display: none;
}
#banner-part .banner-text .breadcrumb-item.dot {
    position: relative;
    margin-right: 20px;
}
#banner-part .banner-text .breadcrumb-item.dot::after {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    top: 13px;
    right: -12px;
    background: #fff;
    border-radius: 50%;
}
#banner-part .banner-text .breadcrumb li a {
    font-size: 20px;
    color: #fff;
}
/*==================
    banner-part css end
==================*/
/*==================
    event-part css start
==================*/
#event-part {
    padding: 95px 0 35px;
    position: relative;
}
#event-part .img.space {
    margin: 5px;
}
#event-part .img img {
    width: 100%;
}
#event-part .event-shape {
    position: absolute;
    bottom: -25%;
    left: -45px;
    width: 400px;
}
#event-part .event-shape2 {
    position: absolute;
    top: -15px;
    right: 0;
    width: 430px;
}
/*==================
    event-part css end
==================*/
/*==================
    gallery-page css end
==================*/

/*==================
    pricing-page css start
==================*/
/*==================
    pricing-area css start
==================*/
#pricing-area {
    padding: 100px 0 65px;
    position: relative;
}
#pricing-area .pricing-shape {
    position: absolute;
    bottom: -315px;
    left: 0;
    width: 350px;
}
#pricing-area .pricing-shape2 {
    position: absolute;
    top: 0px;
    right: 0;
    width: 530px;
}
#pricing-area .pricing-item {
    margin-bottom: 30px;
}
#pricing-area .pricing-item:before {
    display: none;
}

#pricing-area .single-pricing .shape3 {
    position: absolute;
    top: -50px;
    right: -36px;
}
#pricing-area .single-pricing {
    transition: all linear .4s;
    -webkit-transition: all linear .4s;
    -moz-transition: all linear .4s;
    -ms-transition: all linear .4s;
    -o-transition: all linear .4s;
}
#pricing-area .single-pricing:hover {
    background: #0f2f44;
}
#pricing-area .single-pricing:hover h3 {
   transition: all linear .3s;
   -webkit-transition: all linear .3s;
   -moz-transition: all linear .3s;
   -ms-transition: all linear .3s;
   -o-transition: all linear .3s;
}
#pricing-area .single-pricing:hover h3 {
    color: #fff;
}
#pricing-area .single-pricing ul li {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
#pricing-area .single-pricing:hover ul li {
    color: #fff;
}
#pricing-area .single-pricing .shape1 {
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
#pricing-area .single-pricing:hover .shape1 {
    opacity: 0;
}
.shape4 {
    position: absolute;
    top: 3px;
    left: 3px;
    opacity: 0;
    transition: all linear .3s;
}
#pricing-area .single-pricing:hover .shape4 {
    opacity: 1;
}
#pricing-part .booking-part .form-part {
    margin: 0;
}
#pricing-part .booking-part .form-part .heading {
    width: 30%;
    color: #0f2f44;
    text-align: center;
    margin: 0 auto;
    display: block;
    margin-bottom: 30px;
    text-transform: uppercase;
}
#pricing-part .booking-part .form-part input.lname {
    margin-left: 30px;
}
#pricing-part .booking-part .form-part input.fname,
#pricing-part .booking-part .form-part input.lname {
    width: 48.5%;
}
/*==================
    pricing-area css end
==================*/
/*==================
    pricing-page css end
==================*/
/*==================
    sponsors-page css start
==================*/
#brand-part {
    padding: 95px 0 45px;
    position: relative;
}
#brand-part .line {
    position: relative;
}
#brand-part .line:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dddddd;
    z-index: -1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
#brand-part .line:after {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #dddddd;
    z-index: -1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
#brand-part .brand-shape1 {
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 386px;
}
#brand-part .brand-shape2 {
    position: absolute;
    top: -15px;
    right: 0;
    width: 500px;
    overflow: hidden;
}
#brand-part .brand-item {
    text-align: center;
}
#brand-part .brand-item.mb {
    margin-bottom: 120px;
}
#brand-part .brand-item .title {
    margin-bottom: 35px;
}
#brand-part .brand-item .title.m-bottom {
    margin-bottom: 75px;
}
#brand-part .brand-item .title p {
    font-size: 20px;
    color: #2e4455;
}
#brand-part .brand-item .title h2 {
    color: #2e4455;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}
/*==================
    sponsors-page css end
==================*/
/*==================
    comingsoon-page css start
==================*/
#comingsoon-page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
#comingsoon-page .navbar {
    padding: 30px 0;
}
#comingsoon-page ul li {
    display: none;
}
#coming-part .slider-text {
    margin-bottom: 45px;
}
#coming-part .overlay {
    padding: 255px 0 50px;
}
.banner-icon {
    text-align: center;
}
.banner-icon a i {
    width: 60px;
    height: 60px;
    background: #fff;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    color: #0f2f44;
    font-size: 20px;
    margin: 0 6px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.banner-icon a i:hover {
    background: linear-gradient(90deg, #ffe169, #ffa913);
}
.subscribe form input {
    width: 670px;
    height: 80px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 30px;
    font-size: 20px;
    color: #fff;
}
.subscribe {
    text-align: center;
    margin: 60px 0 15px;
}
.subscribe form {
    display: inline-block;
    position: relative;
}
.subscribe form button {
    width: 160px;
    height: 60px;
    background: linear-gradient(90deg, #ffe169, #ffa913);
    border: 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    right: 0;
    cursor: pointer;
    z-index: 4;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
}
.sub {
    color: #fff;
    font-size: 20px;
    width: 670px;
    margin: 0 auto;
    margin-bottom: 100px;
}
/*==================
    comingsoon-page css end
==================*/
/*==================
    error-page css start
==================*/
#error-page .overlay {
    padding: 245px 0 50px;
}
#error-page .slider-content {
    text-align: center;
}
#error-page .slider-content .error {
    font-size: 42px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 15px;
    margin-bottom: 20px;
}
#error-page .slider-content .error-text {
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    width: 660px;
    margin: 0 auto;
    padding: 10px 0 35px;
}
#error-page .slider-content .error-text a {
    color: #ffe169;
    text-transform: uppercase;
    text-decoration: underline;
}
#error-page .myCountdown {
    display: none !important;
}
#error-page .sub {
    margin-bottom: 30px;
}
/*==================
    error-page css end
==================*/

/****************************/
