/*-------------------------
-----Table-Of-Content------
01. Helper-Class 
02. Mainmenu-Area
    2.1 DropDown-Menu
03. Header-Area
04. Service-Area
05. About-Area
06. Portfolio-Area
07. Skill-Area
08. Experience-Area
09. Testimonial-Area
10. Contact-Form-Area
11. Preloader-CSS
12. ScrollUpButton
---------------------------
01. Helper-Class 
--------------------------*/
.section-padding {
    padding-top: 47px;
    padding-bottom: 120px;
}
.section-padding-top {
    padding-top: 120px;
}
.section-padding-bottom {
    padding-bottom: 120px;
}
.upper {
    text-transform: uppercase;
}
.full-wrapper {
    margin: 20px;
    position: relative;
}
.section-title {
    margin-bottom: 60px;
}
.section-title .title {
    font-size: 36px;
    margin-top: -5px;
}
.section-title .desc {
    font-size: 18px;
    font-weight: 600;
}
/* ---------------------
Button-Styles
----------------------- */
.mouse-dir {
    overflow: hidden;
    position: relative;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    z-index: 4;
    margin-bottom: -8px;
}
.mouse-dir .dir-part {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #FFC527;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    z-index: -1;
}
.mouse-dir:hover .dir-part {
    width: 260%;
    height: 562.5px;
}

.button-dark {
    display: inline-block;
    width: 170px;
    height: 60px;
    background-color: #190844;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.button-dark:hover {
    color: #190844;
}

.button-primary.mouse-dir .dir-part,
.button-dark.mouse-dir .dir-part {
    background-color: #ffffff;
}

.button-orange,
.button-primary {
    display: inline-block;
    color: #ffffff;
    background-color: #558bff;
    padding: 18px 40px;
    border: 1px solid #558bff;
    font-size: 16px;
    font-weight: 600;
}

.button-primary:hover {
    color: #558bff;
}
.load-more,
.button-primary-trans {
    display: inline-block;
    color: #558bff;
    padding: 18px 40px;
    border: 1px solid #558bff;
    font-size: 16px;
    font-weight: 600;
}
.button-primary-trans .icon {
    margin-right: 5px;
    display: inline-block;
}
.load-more:hover,
.button-primary-trans:hover {
    color: #ffffff;
}

.load-more {
    padding: 15px 38px;
}

.load-more i {
    margin-left: 5px;
    font-size: 14px;
}

.portfolio-area .load-more {
    margin-top: 30px;
}
.button-orange {
    padding: 15px 38px;
    border: 1px solid #ff885e;
    background-color: #ff885e;
}

.button-orange:hover {
    color: #ff885e;
}

.button-orange .dir-part {
    background-color: #ffffff;
}

/*------------------------
02. Mainmenu-Area
--------------------------*/
.mainmenu-area {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: #ffffff;
    white-space: nowrap;
}
.menu-transparent-box .mainmenu-area {
    background-color: transparent;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    max-width: 100%;
    margin: auto;
    display: block;
}
.menu-transparent-box .mainmenu-area.affix {
    top: 0px;
}

.menu-transparent-box .mainmenu-area .container .navbar-row {
    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;
    padding: 20px 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 30px 0 rgba(85, 139, 255, 0.1);
            box-shadow: 0 0 30px 0 rgba(85, 139, 255, 0.1);
}

.primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-menu > ul > li {
    display: inline-block;
    position: relative;
    margin-left: -5px;
}
.mainmenu-area #mainmenu ul li > a i.plus {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    line-height: 12px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
}
.mainmenu-area #mainmenu ul li > a i.plus:before,
.mainmenu-area #mainmenu ul li > a i.plus:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    width: 12px;
    height: 2px;
    display: block;
    background-color: rgba(21, 29, 65, 0.3);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.mainmenu-area #mainmenu ul li > a i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
        -ms-transform: translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg);    
}
.mainmenu-area #mainmenu ul li:hover > a i.plus:before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);    
}
.primary-menu ul li {
    position: relative;
}
.primary-menu ul.nav li a {
    position: relative;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: capitalize;
    padding: 15px 30px;
    color: #3a3a3a;
    background: none;
}

}
.primary-menu ul.nav > li > a:before {
    display: none;
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #558bff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.primary-menu ul.nav > li.active > a:before,
.primary-menu ul.nav > li a.right-go:before {
    left: auto;
    right: 0px;
}
.primary-menu ul.nav > li.active > a:before,
.primary-menu ul.nav > li:hover > a.right-go:before {
    width: 100%;
    right: auto;
    left: 0;
}
.primary-menu ul.nav > li:hover > a.left-go:before {
    width: 100%;
    left: auto;
    right: 0;    
}
.primary-menu ul.nav > li.current-menu-item > a,
.primary-menu ul.nav > li.active > a,
.primary-menu ul.nav > li:hover > a {
    color: #FFC527
}
.mainmenu-area .menu-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
/*-----------------------
2.1 DropDown-Menu
------------------------*/
.primary-menu ul.nav li {
    position: relative;
}
.primary-menu ul.nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(25,31,160,0.1);
            box-shadow: 0px 20px 40px 0px rgba(25,31,160,0.1);
}
.primary-menu ul.nav .sub-menu .sub-menu {
    left: auto;
    right: 100%;
    top: 0;
}
.primary-menu ul.nav .sub-menu li:hover > .sub-menu {
    top: -15px;
}
.primary-menu ul.nav .sub-menu li {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}
.primary-menu ul.nav .sub-menu li a {
    padding: 5px 10px;
    display: block;
}

.footer-widgets ul.nav-menu li a:before,
.primary-menu ul.nav .sub-menu li a:before {
    content: "";
    width: 0;
    height: 2px;
    display: inline-block;
    margin-right: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-bottom: 2px solid;
}
.footer-widgets ul.nav-menu li:hover > a:before,
.primary-menu ul.nav .sub-menu li:hover > a:before {
    width: 20px;
    margin-right: 5px;
}
.primary-menu ul.nav .sub-menu li.current-menu-item > a,
.primary-menu ul.nav .sub-menu li.active > a,
.primary-menu ul.nav .sub-menu li:hover > a {
    color: #558bff
}
.primary-menu ul.nav li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
}
.navi-trigger {
    width: 24px;
    height: 17px;
    line-height: 40px;
    border: none;
    position: relative;
    margin: 0;
    padding: 0;
    background: none;
    margin-left: 30px;
}
.navi-trigger .bar {
    width: 24px;
    height: 2px;
    background-color: #626262;
    display: block;
    margin-bottom: 5px;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.affix .navi-trigger .bar {
    background-color: #626262;
}
.navi-trigger .bar:nth-child(3) {
    width: 13px;
    margin-bottom: 0px;
}
.navi-trigger.active .bar:nth-child(1) {
    width: 13px;
}
.navi-trigger.active .bar:nth-child(3) {
    width: 24px;
}
.social-buttons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #292929;
    text-align: center;
}
.social-buttons a:hover {
    color: #558bff;
}
.mainmenu-area .social-buttons a {
    text-align: right;
}
/* -----------------------
03. Header-Area
------------------------- */
.header-area {
    padding-top: 320px;
    padding-bottom: 210px;
    background: url('../images/home-slider-2.jpg') no-repeat scroll top center/cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: calc(100vh - 40px);
    display: flex;
    align-items: center;
}
#particles-js {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    display: block;
}
#header-video {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
#header-video iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.2, 1.2);
    height: 100%;
}
.slide-inner:after,
.site-header:after,
.header-area:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #242527;
    opacity: 0.5;
    z-index: -1;
}

.header-text .typer-title {
    color: #fdfdfd;
    font-weight: 600;
    font-size: 24px;
}

.header-text .title {
    font-size: 76px;
    color: #ffffff;
}

.header-text .desc {
    font-size: 24px;
    line-height: 38px;
    color: #ffffff;
    margin-bottom: 50px;
}
.play-buttons {
    position: absolute;
    right: 10px;
    bottom: 0px;
    z-index: 9;
}
.play-buttons button {
    border: none;
    background: none;
    color: #ffffff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin: 15px 5px;
}
/* -----------------------
04. Service-Area
------------------------- */
.single-service .title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 25px;
}


/* --------------------
05. About-Area
---------------------- */
.about-image {
    background-color: #fecc90;
    overflow: hidden;
    text-align: center;
    margin-right: 70px;
}
.about-text .title {
    font-size: 36px;
    margin-bottom: 15px;
}
.about-text .sub-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}
.about-text .desc {
    margin-bottom: 50px;
}
/* --------------------
06. Portfolio-Area
---------------------- */
.filter-menu {
    list-style: none;
    margin: -15px 0 30px 0;
    padding: 0;
    text-align: center;
    width: 100%;
}
.filter-menu li {
    display: inline-block;
    font-size: 18px;
    color: #282828;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 15px 30px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.filter-menu li:before {
    content: ".";
}
.filter-menu li:hover,
.filter-menu li.active {
    color: #558bff;
}
.portfolio-wrapper {
    margin-bottom: -30px;
}
.single-portfolio {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
}
.single-portfolio img {
    width: 100%;
}
.single-portfolio .portfolio-content {
    position: absolute;
    left: 100%;
    top: 100%;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 35px;
}
.single-portfolio .portfolio-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #558bff;
    opacity: 0.7;
    z-index: -1;
}

.double .single-portfolio .portfolio-content {
    padding: 80px;
}
.single-portfolio .portfolio-content .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 20px;
}
.single-portfolio .portfolio-content .title {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
}
.single-portfolio .portfolio-content .title a {
    color: #ffffff;
}
.single-portfolio .portfolio-content .desc {
    font-size: 16px;
    color: #fffefe;
    font-weight: 600;
}
/* ----------------------
07. Skill-Area
----------------------- */
.skills-area .single-image {
    padding-left: 70px;
}
.skills {
    margin-bottom: -50px;
}
.bar_group {
    text-align: left;
    position: relative;
    margin-bottom: 50px;
}

.bar_group__bar.thick {
    width: 0%;
    height: 15px;
    background: #558bff;
    -webkit-transition: width 1s;
    -o-transition: width 1s;
    transition: width 1s;
}

.bar_group__bar.thick:before {
    display: block;
    content: '';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 15px;
    background: #e3e7ea;
    z-index: -1;
    bottom: -10px;
}

.b_label,
.bar_label_min,
.bar_label_max,
.b_tooltip span {
    color: #000a2d;
    font-size: inherit;
    font-weight: 600;
}

.b_label {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.bar_group .bar_label_max,
.bar_group .bar_label_min {
    position: absolute;
    bottom: -10px;
    line-height: 15px;
}

.bar_group .bar_label_max {
    right: 20px;
}

.bar_group .bar_label_min {
    left: 20px;
}

.bar_group .b_tooltip {
    position: absolute;
    top: -5px;
    right: 0;
}

.bar_group .b_tooltip span {
    font-size: 16px;
    line-height: 26px;
    color: #282828;
    font-weight: 700;
}

.bar_group .b_tooltip span:after {
    content: "%";
    position: relative;
    top: 3px;
    display: inline-block;
    line-height: 36px;
}

.bar_group .elastic {
    background: #558bff;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0.25, 0.375, 1.335);
    -o-transition-timing-function: cubic-bezier(0.5, 0.25, 0.375, 1.335);
       transition-timing-function: cubic-bezier(0.5, 0.25, 0.375, 1.335);
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
       transition-duration: 1s;
}

.bar_group .title {
    font-size: 16px;
    line-height: 26px;
    color: #282828;
    font-weight: 400;
    margin-bottom: 10px;
}

.bar_group .sub-title {
    font-size: 14px;
    color: #6e7c90;
}
/* ----------------------
08. Experience-Area
----------------------- */
.experience-area .single-image {
    padding-right: 70px;
}
.experience-text .title {
    font-size: 36px;
    line-height: 46px;
}
.experience-text .desc {
    margin-bottom: 50px;
}
.icon-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15px;
}
.icon-info .icon {
    width: 50px;
    height: 50px;
    background-color: #FFC527;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    margin-right: 15px;
    color: #ffffff;
}

.icon-info h6 {
    margin-bottom: 0px;
    font-size: 14px;
}

.icon-info h6 a {
    color: #190844;
}
.icon-info h6 a:hover {
    text-decoration: underline;
    color: #558bff;
}
/* ----------------------
09. Testimonial-Area
----------------------- */
.testimonial-slider {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
}
.testimonial-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.testimonial-slider .single-testimonial {
    background-color: #ffffff;
    padding: 50px;
    margin: 0 15px;
    border: 1px solid #FFC527;
    position: relative;
    z-index: 1;
}

.testimonial-slider .single-testimonial .quote {
    background-color: #FFC527;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    float: left;
    margin-right: 25px;
}
.testimonial-slider .single-testimonial .testimonial-header {
    margin-bottom: 40px;
}

.testimonial-slider .single-testimonial .content p:before,
.testimonial-slider .single-testimonial .content p:after {
    content: '"';
    display: inline-block;
}
.testimonial-slider .single-testimonial .title {
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-slider .single-testimonial .position {
    font-size: 14px;
    font-weight: 400;
}

/* ---------------------------
10. Contact-Form-Area
--------------------------- */
.contact-form {
    margin-top: 8px;
}
.input-box {
    padding: 24px 30px;
    width: 100%;
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #a3a6a9;
    outline: none;
    color: #282828;
}
.input-box:focus {
    -webkit-box-shadow: 16px 16px 32px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 16px 16px 32px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #282828;
}
.contact-form .input-box {
    margin-bottom: 30px;
    line-height: 26px;
}
.contact-form .form-double:after {
    clear: both;
    display: block;
    content: "";
}
.contact-form .form-double .form-box {
    width: calc(50% - 15px);
    float: left;
    margin-right: 30px;
}
.contact-form .form-double .form-box.left {
    margin-right: 0;
}
.form-box {
    position: relative;
    line-height: 0px;
}

.form-box button {
    line-height: 26px;
}

.form-box .icon {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    color: #bbc0c3;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.contact-form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #282828;
}
.contact-form ::-moz-placeholder { /* Firefox 19+ */
  color: #282828;
}
.contact-form :-ms-input-placeholder { /* IE 10+ */
  color: #282828;
}
.contact-form :-moz-placeholder { /* Firefox 18- */
  color: #282828;
}
/* ----------------------
11. Blog-Area
------------------------ */
.blog-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}
.blog-slider .single-blog {
    margin-right: 15px;
    margin-left: 15px;
    margin-top: 10px;
}
.single-blog .title {
    font-size: 28px;
    line-height: 38px;
}
.single-blog .title a {
    color: #190844;
}
.single-blog .title a:hover {
    color: #558bff;
}
.single-blog .blog-image {
    margin-bottom: 26px;
}

.single-blog .desc {
    margin-bottom: 30px;
}
.single-blog .button-primary-trans i {
    margin-left: 5px;
}
.blog-lists {
    margin-bottom: -40px;
}
.blog-lists .single-blog {
    margin-bottom: 50px;
}

.full-width .single-blog .blog-content {
    width: calc(100% - 100px);
    margin: auto;
}

.blog-meta {    
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-meta .single-meta {
    margin-right: 50px;
    margin-bottom: 10px;
}

.blog-meta .single-meta:last-child {
    margin-right: 0px;
}

.blog-meta .single-meta .meta-title {
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: 2px;
}

.blog-meta .single-meta .meta-value {
    font-size: 22px;
    color: #282828;
}

.blog-meta .single-meta .meta-value a {
    color: #282828;
}

.blog-meta .single-meta .meta-value:before {
    content: ".";
    color: #ff885e;
    margin-right: 5px;
}

/*------------------------
6. Navigation-&-Pagination
-------------------------*/
.navigation,
.pagination {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    margin-top: 80px;
}
.nav-links {
    width: 100%;
}
.pagination .page-numbers {
    background: #558bff;
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 5px;
    line-height: 50px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    color: #141414;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    color: #ffffff;
}

.pagination .page-numbers:after {
    content: "";
    background-color: #f9f9f9;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pagination .page-numbers.current:after,
.pagination .page-numbers:hover:after {
    opacity: 0;
}

/* ---------------------
Footer-Area
--------------------- */
.footer-area {
    padding-top: 90px;
    padding-bottom: 30px;
    background-color: #190844;
}
.footer-widgets {
    margin-bottom: 60px;
    color: #ffffff;
}

.footer-widgets ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.footer-widgets ul li {
    margin: 8px 0;
}

.footer-widgets a {
    color: #ffffff;
}

.footer-bottom {
    background-color: #FFC527;
    margin-left: 5px;
    margin-right: 5px;
    padding: 25px 15px;
    font-size: 16px;
    color: #3a3a3a;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.footer-widgets .footer-logo {
    margin-bottom: 30px;
}
.footer-widgets .widget-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 25px;
}

/*----------------------
11. Preloader-CSS
 ---------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    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;
    pointer-events: none;
}
.preloader img {
    width: 300px;
}

/* ------------------------
12. ScrollUpButton
-------------------------- */
#scrollUp {
    position: fixed;
    right: 2%;
    top: 100%;
    width: 28px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    border: 2px solid #558bff;
    color: #558bff;
    text-align: center;
    background-color: #ffffff;
    border-radius: 100px;
    z-index: 999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#scrollUp:hover {
    background-color: #558bff;
    color: #ffffff;
}

#scrollUp.active {
    top: calc(100% - 110px)
}

#scrollUp i {
    -webkit-animation: mymove 1s ease-in 0s infinite alternate;
            animation: mymove 1s ease-in 0s infinite alternate;
    display: inline-block;
    position: relative;
}

@-webkit-keyframes mymove {
    from {top:-5px;}
    to {top:5px;}
}

@keyframes mymove {
    from {top:-5px;}
    to {top:5px;}
}

/* ------------------------
13. Portfolio-Page
-------------------------- */
.site-header {
    background-image: url('../images/msb.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 220px;
    padding-bottom: 120px;
    overflow: hidden;
}
.site-gwr {
    background-image: url('../images/ekathmakam-bg.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 220px;
    padding-bottom: 120px;
    overflow: hidden;
}
.site-mspgm {
    background-image: url('../images/malabar-bg.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 220px;
    padding-bottom: 120px;
    overflow: hidden;
}
.site-ypbg {
    background-image: url('../images/yathi-pooja-bg.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 220px;
    padding-bottom: 120px;
    overflow: hidden;
}
.site-siddhibg {
    background-image: url('../images/yathi-pooja-bg.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 220px;
    padding-bottom: 120px;
    overflow: hidden;
}
.site-sybg {
    background-image: url('../images/samathva-yathrabg.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 220px;
    padding-bottom: 120px;
    overflow: hidden;
}
.site-pgmbg {
    background-image: url('../images/programbg.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 220px;
    padding-bottom: 120px;
    overflow: hidden;
}

.site-header .title {
    color: #ffffff;
    font-size:  40px;
}



.site-header .breadcrumbs ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    text-align: right;
}

.site-header .breadcrumbs ul li {
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
}

.site-header .breadcrumbs ul li:after {
    content: "-";
    margin: 0 30px;
}
.site-header .breadcrumbs ul li:last-child:after {
    display: none;
    margin-right: 0px;
}

.site-header .breadcrumbs ul li a {
    color: #ffffff;
}

.quote-box {
    text-align: center;
    padding: 100px 30px;
    background-color: #fff0dd;
}

.quote-content .title {
    font-size: 36px;
}

.quote-content .desc {
    font-weight: 600;
    margin-bottom: 50px;
}
/* -------------------------
14. Portfolio-Details
-------------------------- */

.blog-details .head-title,
.portfolio-details .head-title {
    font-size: 52px;
    margin-bottom: 50px;
}

.image-block {
    width: calc(100% + 160px);
    max-width: 98vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 50px;
}

.portfolio-details .portflio-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #f9f9f9;
    flex-wrap: wrap;
    padding: 45px 60px;
    margin-bottom: 50px;
}

.portfolio-details .portflio-info .single-info {
    margin-right: 30px;
    padding: 15px 0;
}

.portfolio-details .portflio-info .single-info:last-child {
    margin-right: 0px;
}

.portfolio-details .portflio-info .single-info .title {
    font-size: 22px;
    margin-bottom: 5px;
}

.portfolio-details .portflio-info .single-info .title:before {
    content: ".";
    color: #ff885e;
    margin-right: 5px;
}

.description .gallery {
    list-style: none;
    margin: 30px 0px 0px 0px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.description .gallery li {
    margin-bottom: 30px;
    width: calc(50% - 15px)
}

.description .gallery li:nth-child( n + 3) {
    width: 100%;
}

.portfolio-details .description .dots-list {
    list-style: none;
    padding: 10px 0 0 0;
    margin: 0px 0 30px 0;
}

.description .dots-list li {
    margin: 10px 0px;
}

.description .dots-list li:before {
    color: #558bff;
    font-family: 'Font Awesome 5 Pro';
    content: "\f111";
    font-weight: 900;
    margin-right: 10px;
    font-size: 16px;
}
.single-navigation {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    margin-top: 10px;
}

.single-navigation .nav-link {
    display: flex;
    align-items: center;
    width: 50%;
}

.single-navigation .nav-link .icon {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #666666;
    background-color: #e3e7ea;
    margin: 15px;
    font-size: 22px;
    transition: 0.3s;
}

.single-navigation .nav-link:hover .icon {
    background-color: #558bff;
    color: #ffffff;
}

.single-navigation .nav-link .text {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #282828;
}
.swiper-slide {
    overflow: hidden;
    color: #fff;
}

.swiper-container {
    width: 100%;
    height: 80%;
    left: 0;
    top: 0;
}

.slide-inner {
    width: 100%;
    height: 80%;
    padding-top: 320px;
    padding-bottom: 210px;
    z-index: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 40px);
	display: flex;
	align-items: center;
}

/*new style*/
/* Please ❤ this if you like it! */


@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');

/* #Primary
================================================== */


::selection {
	color: #fff;
	background-color: #8167a9;
}
::-moz-selection {
	color: #fff;
	background-color: #8167a9;
}


/* #Navigation
================================================== */

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 20px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 10px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
	height: 24px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
}
.navbar-brand img{
	height: 28px;
	width: auto;
	display: block;
  filter: brightness(10%);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #212121 !important;
	font-weight: 500;
    transition: all 200ms linear;
}
.nav-item:hover .nav-link{
	color: #8167a9 !important;
}
.nav-item.active .nav-link{
	color: #777 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}
.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #8167a9;
	opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
}

/* #Primary style
================================================== */

.bg-light {
	background-color: #fff !important;
    transition: all 200ms linear;
}
.section {
    position: relative;
	width: 100%;
	display: block;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
  margin-top: 40px;
	transform: translateY(-50%);
	z-index: 20;
}



#switch,
#circle {
	cursor: pointer;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
} 
#switch {
	width: 60px;
	height: 8px;
	border: 2px solid #8167a9;
	border-radius: 27px;
	background: #000;
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
	transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1900ms;
}
body.hero-anime #switch{
	opacity: 0;
	transform: translateY(40px);
    transition-delay: 1900ms;
}
#circle {
	position: absolute;
	top: -11px;
	left: -13px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #000;
}
.switched {
	border-color: #000 !important;
	background: #8167a9 !important;
}
.switched #circle {
	left: 43px;
	box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
	background: #fff;
}
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 10px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #212121;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: rgba(129,103,169,.6);
}

body.dark{
	color: #fff;
	background-color: #1f2029;
}
body.dark .navbar-brand img{
  filter: brightness(100%);
}
body.dark h1{
	color: #fff;
}
body.dark h1 span{
    transition-delay: 0ms !important;
}
body.dark p{
	color: #fff;
    transition-delay: 0ms !important;
}
body.dark .bg-light {
	background-color: #14151a !important;
}
body.dark .start-header {
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}
body.dark .start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}
body.dark .nav-link{
	color: #fff !important;
}
body.dark .nav-item.active .nav-link{
	color: #999 !important;
}
body.dark .dropdown-menu {
	color: #fff;
	background-color: #1f2029;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
body.dark .dropdown-item {
	color: #fff;
}
body.dark .navbar-light .navbar-toggler-icon {
	border-bottom: 1px solid #fff;
}
body.dark .navbar-light .navbar-toggler-icon:after, 
body.dark .navbar-light .navbar-toggler-icon:before{
	background-color: #fff;
}
body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}



/* #Media
================================================== */

@media (max-width: 767px) { 
	
	.nav-item:after{
		display: none;
	}
	.nav-item::before {
		position: absolute;
		display: block;
		top: 15px;
		left: 0;
		width: 11px;
		height: 1px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
	}
	.dropdown-toggle::after {
		position: absolute;
		display: block;
		top: 10px;
		left: -23px;
		width: 1px;
		height: 11px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"]::after{
		transform: rotate(90deg);
		opacity: 0;
	}
	.dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear;
	}
	.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
		margin-top: 10px !important;
		margin-bottom: 20px !important;
	}
	body.dark .nav-item::before {
		background-color: #fff;
	}
	body.dark .dropdown-toggle::after {
		background-color: #fff;
	}
	body.dark .dropdown-menu {
		background-color: transparent;
		box-shadow: none;
	}
}

/* #Link to page
================================================== */




}