@charset "utf-8";

/* CSS Document */

html {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

body {
    line-height: 24px;
    font-size: 14px;
    color: #363843;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.clear {
    clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cabin', sans-serif;
    line-height: 1.3;
}

h1 {
    font-size: 36px;
    line-height: 1.2;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

#previous-events-section h3 {
    margin: 0px;
}

p {
    text-align: justify;
}

ul {
    list-style: none;
    line-height: 1.8;
}

.img-responsive {
    width: 100%;
}

.float-right {
    float: right;
}

.margin-tp-20 {
    margin-top: 20px;
}

.margin-tp-30 {
    margin-top: 30px;
}

.margin-tp-40 {
    margin-top: 40px;
}

.margin-tp-50 {
    margin-top: 50px;
}

.margin-tp-60 {
    margin-top: 60px;
}

.margin-tp-70 {
    margin-top: 70px;
}

.margin-tp-80 {
    margin-top: 80px;
}

.padding-80 {
    padding: 80px;
}

.ptb-100 {
    padding-top: 110px;
    padding-bottom: 105px;
}

a {
    text-decoration: none;
}

.active-link {
    color: #fff;
}

a:focus {
    outline: 0px auto !important;
    outline-offset: -2px;
}

section {
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    z-index: 0;
    outline: 0px !important;
}

a {
    transition: 0.4s;
}

.row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}


/*/////////nav-bar-starts-here/////////*/

.nav>li>a:hover,
.nav>li>a:focus {
    text-decoration: none;
    background-color: transparent;
}

.navbar-brand {
    float: left;
    height: auto;
    padding: 0;
}

.navbar-fixed-top.scrolled {
    background-color: #ffd600 !important;
    transition: background-color 200ms linear;
    height: auto;
}

.navbar-fixed-top.scrolled .nav-link {
    color: #fff;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 1;
    /*
    background: #ffd600;
    background: -moz-linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
    background: -webkit-linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
    background: linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
*/
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    margin: 0 auto;
    float: right;
    margin-right: 10%;
    margin-top: 22px !important;
}

nav ul li {
    display: table-cell;
}

nav ul li a {
    padding: 10px 20px;
    display: block;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #F38A8A;
}

nav ul .active a {
    color: #F38A8A;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #313131;
}

@media (max-width: 767px) {
    #mainNav {
        float: left;
        width: 100%;
        background-color: #ffd600;
        margin: 0px;
    }
    .navbar-collapse {
        padding: 0px;
    }
}


/*////////nav-bar-ends-here////////*/

#info-update-banner {
    /* height: 600px; */
    background-color: #ededed;
    width: 100%;
    background-image: url(../img/info-update-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 10px;
}

#gallery-banner {
    height: 600px;
    background-color: #ededed;
    width: 100%;
    background-image: url(../img/gallery-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 10px;
}

#reg-banner {
    height: 600px;
    background-color: #ededed;
    width: 100%;
    background-image: url(../img/reg-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 10px;
}

.inner-banner-text {
    margin-top: 200px;
    color: #fff;
}


/*////////home-banner-starts-here////////*/

.banner-area {
    padding-top: 100px;
    padding-bottom: 10px;
    min-height: 100vh;
    z-index: 1;
    position: relative;
    background: #ffd600;
    background: -moz-linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
    background: -webkit-linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
    background: linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
}

.banner-area::before {
    content: "";
    top: 0px;
    left: 0;
    opacity: 0.4;
    right: 0;
    bottom: 0px;
    background-image: url(../img/background-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    position: absolute;
}

.flexbox-center {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-banner {
    color: #fff;
}

.appbox-btn {
    margin-top: 15px;
    margin-right: 15px;
}

.appbox-btn {
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #ffaf19;
    padding: 10px 30px;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
}

.appbox-btn2,
.appbox-btn:hover {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
}

.appbox-btn2:hover {
    background-color: #fff;
    color: #ffaf19;
}

.single-banner h1 {
    color: #fff;
    max-width: 540px;
}

.single-banner p {
    margin: 42px 0;
}

.app-icon {
    width: 30%;
    margin-top: 30px;
    border-radius: 5px;
    background-color: #fff;
}


/*////////home-banner-ends-here////////*/


/*////////home-about-starts-here////////*/

.about-area {
    text-align: center;
}

.sec-title {
    text-align: center;
    margin: 0 auto 55px;
}

.sec-title h1 {
    margin-bottom: 20px;
    font-weight: 700;
}

.single-about-box h4 {
    margin: 28px 0 20px;
}

.single-about-box i::before {
    color: #ffd600;
    font-size: 60px;
    transition: all 0.4s;
    display: block;
}

.single-about-box i::before {
    color: #ffd600;
    font-size: 60px;
    transition: all 0.4s;
    display: block;
}

.single-about-box i::before {
    color: #ffd600;
    font-size: 60px;
    transition: all 0.4s;
    display: block;
}

.single-about-box:hover i::before {
    transform: scale(0.7);
}


/*////////home-about-ends-here////////*/


/*////////home-feature-starts-here////////*/

.feature-area {
    padding-top: 85px;
    padding-bottom: 20px;
    z-index: 1;
    position: relative;
    overflow: hidden;
    background: #ffd600;
    background: -moz-linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
    background: -webkit-linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
    background: linear-gradient(-45deg, #ffd600 0%, #ffce00 50%, #ffb100 100%);
}

.feature-area::before {
    content: "";
    top: -30px;
    left: 0;
    opacity: 0.4;
    right: 0;
    bottom: -30px;
    background-image: url(../img/overview-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    position: absolute;
}

.single-feature-box li::before {
    font-family: 'icofont';
    content: "\eb55";
    position: absolute;
    left: 0;
    max-width: 50px;
}

.single-feature-box ul {
    padding-bottom: 5px;
    padding-top: 15px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 0px;
    padding-bottom: 0px;
}

.single-feature-box h2 {
    text-transform: uppercase;
    max-width: 360px;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: -32px;
}

.single-feature-box h2,
.single-feature-box h3,
.single-feature-box h4,
.single-feature-box {
    color: #fff;
}

.single-feature-box li {
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}


/*////////home-feature-ends-here////////*/


/*////////home-overview-starts-here////////*/

.overview-area {
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.overview-area::before {
    content: "";
    top: 0px;
    left: 0px;
    opacity: 0.4;
    right: 0px;
    bottom: 0px;
    background-image: url(../img/overview-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    position: absolute;
}

.overview-area::after {
    content: "";
    right: 0;
    top: 0px;
    bottom: 0px;
    background-image: url(../img/iphone-on-hand.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    width: 46%;
    z-index: -1;
    position: absolute;
    height: 100%;
    background-size: contain;
}

.single-overview-box {}

.single-overview-box h1 {
    margin-bottom: 40px;
}

.single-overview-box p {
    padding-bottom: 25px;
}


/*////////home-overview-ends-here////////*/


/*////////home-services-starts-here////////*/

.service-area .row {
    display: block;
}

.service-area {
    background: url('../img/download-bg.jpg') no-repeat scroll left center / auto 100%;
    background-size: auto 100%;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.page-title {
    font-weight: 700;
    font-size: 36px;
}

.single-service {
    padding: 60px 30px;
    text-align: center;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 30px -12px #c9c9c9;
    box-shadow: 0 0 30px -12px #c9c9c9;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.single-service::before {
    content: "";
    top: 0px;
    left: 0;
    opacity: 1;
    right: 0;
    bottom: 0px;
    background-image: url(../img/elements.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    position: absolute;
    background-size: cover;
}

.single-service .service-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 40px auto;
    background-color: #f6f6f9;
    padding: 15px;
    border-radius: 6px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.single-service .service-icon img,
.single-service .service-icon i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.single-service .service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.single-service:hover {
    -webkit-box-shadow: 0 0 30px -5px #c9c9c9;
    box-shadow: 0 0 30px -5px #c9c9c9;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

@media only screen and (min-width: 767px) and (max-width: 1500px) {
    .service-area {
        background-size: 45%;
    }
}

@media (max-width: 767px) {
    .service-area {
        background-image: none;
    }
    .section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


/*////////home-services-ends-here////////*/


/*////////home-feedback-starts-here////////*/

#testimonial .row {
    display: block;
}

.section-pd-top-2 {
    padding-top: 50px;
}

.owl-nav.disabled {
    display: none;
}

.owl-item .item {
    text-align: center;
}

.owl-dots {
    text-align: center;
}

.owl-dot {
    background-color: transparent;
    border: 0px;
    text-align: center;
    margin: 0px auto;
}

.owl-dot span {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    border: 1px solid #6858db;
    margin: 4px 8px;
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.owl-dot.active span {
    background-color: #ffd600;
}

.single-testimonial {
    position: relative;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 60px 60px 60px 80px;
    border-radius: 6px;
    width: 80%;
    margin: 30px auto;
}

.single-testimonial::before {
    content: "\f0b2";
    font-family: 'icofont';
    font-size: 40px;
    color: #fff;
    position: absolute;
    left: 30px;
    top: 40%;
}

.single-testimonial .client-name {
    display: block;
    width: 100%;
    margin-top: 20px;
    color: #fff;
    position: relative;
}

.client-name {
    margin-top: 40px !important;
}

#service-page {
    position: relative;
}

#service-page-2 {
    position: relative;
}

.testi-img {
    position: relative;
}

.testi-img {
    width: 20%;
    float: left;
}

.testi-img i {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -30px;
    background-size: contain;
    border-radius: 50%;
    right: 0px !important;
}

.single-testimonial::before {
    content: "";
    top: 0px;
    left: 0;
    opacity: 1;
    right: 0;
    bottom: 0px;
    background-image: url(../img/elements-2.png);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    position: absolute;
}


/*////////home-feedback-ends-here////////*/


/*////////home-contact-starts-here////////*/

input {
    width: 100%;
    margin-bottom: 18px;
    height: 50px;
    padding-left: 12px;
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px solid #ffaf19;
    outline: none;
}

label {
    width: 100%;
}

textarea {
    width: 100%;
    margin-bottom: 18px;
    height: 100px;
    padding-left: 12px;
    padding: 10px 30px;
    border-radius: 60px;
    border: 1px solid #ffaf19;
    outline: none;
}

.appbox-btn-submit {
    background: #ffaf19;
    border: 1px solid #ffaf19;
    color: #ffff;
    padding: 10px 30px;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
}

.appbox-btn-submit:hover {
    background: #e69600;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
}

.appbox-btn-reg {
    background: #ffaf19;
    border: 1px solid #ffaf19;
    color: #ffff;
    padding: 10px 30px;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
    width: 100%;
    margin-top: 30px;
}

.appbox-btn-reg:hover {
    background: #e69600;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
}

.text-med.text-uppercase.letter-spacing-1.black-text.font-weight-600 {
    margin-bottom: 25px;
}

.black-text a {
    color: #313131;
}

#contact .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.filters {
    height: 20px;
}

#video-section {
    overflow: hidden;
}

@media (max-width: 767px) {
    .gallery-picture {
        width: 400px !important;
    }
    .single-testimonial {
        position: relative;
        -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
        padding: 40px 40px 40px 60px;
        border-radius: 6px;
        width: 100%;
        margin: 30px auto;
    }
}

.accordion-content img {
    border-radius: 50%;
}


/*////////info-update-starts-here////////*/

.mn-acc-app {
    max-width: 100%;
    margin: auto;
    margin-top: auto;
    margin-top: 60px;
}

h1.demo-title {
    text-align: center;
}

#info-update {
    padding-top: 80px;
    padding-bottom: 80px;
}


/*////////home-footer-starts-here////////*/

#footer {
    background-color: #313131;
    padding-top: 50px;
    padding-bottom: 20px;
    color: #ffaf19 !important;
}

.inline {
    display: block;
}

.inline li {
    display: inline-block;
    margin-right: 20px;
}

.inline li a i {
    line-height: 2em;
}

.inline li a {
    border-color: #ffaf19;
    color: #ffaf19;
}

.inline li a i {
    vertical-align: -15%;
}

.inline li a i {
    line-height: 2em;
}

.inline li a {
    display: inline-block;
    width: 2.667em;
    height: 2.667em;
    border: 1px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    border-color: #ffaf19;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffaf19;
    text-align: center;
}

.inline li a:hover {
    border-color: #ffaf19;
    color: #fff;
    text-decoration: none;
    background-color: #ffaf19;
}

.download-link {
    display: flex;
    flex-direction: column;
}

.download-link li a {
    color: #fff !important;
}