
/**
======================================================
<-- Header Menu Section Css -->
======================================================**/
.header-area {
    position: relative;
    z-index: 2;
}

.header-menu {
    text-align: right;
}

.header-menu ul li {
    display: inline-block;
    margin-right: 48px;
}

.header-menu ul li a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding: 62px 0;
    transition: 0.5s;
}

.active-menu a:hover,
.active-menu a.active{
    color:#D4FF47 !important;
}

.header-menu ul li:last-child{
    margin-right:0;
}

.header-menu ul li i {
    font-size: 11px;
    display: inline-block;
    position: relative;
    left: 8px;
    top: -1px;
    color: #fff;
}

.header-menu ul li a:hover i{
   color:#D4FF47; 
}


/*sub-menu*/
.header-menu ul li.menu-item-has-children {
    position: relative;
}

.header-menu ul li .sub-menu {
    position: absolute;
    width: 200px;
    display: block;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 2;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #D4FF47;
    border-radius: 3px 3px 0 0;
}

.header-menu ul li:hover .sub-menu{
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.header-menu ul li .sub-menu li a {
    display: block;
    padding: 6px 19px;
    color: #020202;
    width: 200px;
    font-weight: 500;
}

.header-menu ul li .sub-menu li a:hover{
    background: #D4FF47;
    color:#fff !important;
}

/*header-sitcky*/
.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #00b0e2;
    transition: 0.5s;
    z-index: 99999;
    webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}

.sticky .header-menu ul li a {
    padding: 38px 0;
}


/**
======================================================
<-- Heor Area Css -->
======================================================**/

.hero-section {
    background: #00b0e2;
    width: 100%;
    height: 900px;
    margin-top: -180px;
    padding-top: 100px;
    position: relative;
    background: url(assets/images/hero.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
    overflow: hidden;
}

.hero-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 356px;
    background: url(assets/images/hero-shape-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.hero-section2 {
    background: #00b0e2;
    height: 330px;
    margin-top: -180px;
    padding-top: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hero-section2:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 75px;
    background: url(assets/images/hero-shape-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.hero-section3 {
    background: #00b0e2;
    height: 330px;
    margin-top: -180px;
    padding-top: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hero-section3:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 75px;
    background: url(assets/images/hero-shape-3.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.hero-content{
	animation: 4s running fadeInLeft;
}

.hero-content h1 {
    font-size: 100px;
    line-height: 100px;
    padding: 50px 0 60px 0;
    font-weight: 600;
    text-align:center;

}

.hero-content h4 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Alegreya Sans','Noto Sans JP', sans-serif;
/*    padding: 42px 0 29px; */
    text-align:center;
    padding: 102px 0 0px;
}
.hero-content2 h1 {
    font-size: 50px;
    line-height: 100px;
    font-weight: 600;
}

.hero-content2 h4 {
    font-size: 50px;
    font-weight: 700;
    font-family: 'Alegreya Sans','Noto Sans JP', sans-serif;
    padding: 42px 0 29px;
    text-align:center;
}
.hero-content2{
	animation: 4s running fadeInUp;
}

p.hero-desc {
    width: 100%;
    font-size: 30px;
    font-weight: 700;
    padding: 50px 0 60px 0;
    text-align:center;
    line-height: 40px;
}

.section-button {
    display: inline-block;
}

.section-button a {
    display: inline-block;
    background: #D4FF47;
    color: rgb(2 5 10);
    padding: 16px 49px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    border-radius:40px;
}

.section-button a:hover{
    color:#fff;
}

.section-button a:before{
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    bottom: 0;
    background:#202731;
    z-index: -1;
    transition: 0.5s;
    border-radius:40px;
}

.section-button a:hover:before{
    width: 100%;
    left: 0;
}

.section-button i {
    display: inline-block;
    position: relative;
    left: 10px;
    transition: 0.5s;
}

.section-button a:hover i{
    color:#D4FF47;
}

.section-button-2 {
    display: inline-block;
}

.section-button-2 a {
    display: inline-block;
    background: #202731;
    padding: 16px 49px;
    margin-left: 25px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.section-button-2 a:hover{
    color:rgb(2 5 10);
}

.section-button-2 a:before{
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    bottom: 0;
    background:#D4FF47;
    z-index: -1;
    transition: 0.5s;
}

.section-button-2 a:hover:before{
    width: 100%;
    left: 0;
}

.section-button-2 i {
    display: inline-block;
    color: #D4FF47;
    font-size: 14px;
    position: relative;
    left: -9px;
    transition: 0.5s;
}

.section-button-2 a:hover i{
    color:rgb(2 5 10);
}

.hero-thumb {
    position: relative;
    z-index: 1;
    margin-left: 124px;
    animation: 4s running bounceInRight;
}

.hero-shape {
    position: absolute;
    top: -25.6%;
    left: -32%;
}


/**
======================================================
<-- Section title Css -->
======================================================**/
.section-title.center {
    padding-bottom: 86px;
}

.section-title h4 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 28px;
}

.section-title h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
}

p.section-desc-1 {
    padding-top: 30px;
    color: #282828;
}


/**
======================================================
<-- Service Section Css -->
======================================================**/
.service-section2 {
    background: #D4FF47;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 100px 0 12px;
}

.initiatives-section {
    background: #ff4571;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 100px 0 12px;
}


/**
=========
====**/
.service-section {
    background: #D4FF47;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 50px 0 100px;
}

.service-content2  {
    width: 100%;
    height: 100%;
}

.single-service-box {
    border: 2px solid #191919;
    text-align: center;
    padding: 8px 31px 35px;
}

.service-box-icon {
    margin-top: -67px;
    position: relative;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 600;
    color:#000;
    padding: 9px 0 14px;
}


.service-content p {
    font-weight: 500;
    text-align:left;
}

.section-button-2{
    padding: 50px 0;
}

/**
======================================================
<-- About Section Css -->
======================================================**/
.about-area {
    background: #fff;
    padding: 34px 0 100px;
}

.about-desc p {
    font-size: 16px;
    font-weight: 500;
    width: 95%;
    padding-top: 79px;
    position: relative;
}


.about-area .section-button {
    display: inline-block;
    margin-top: 6%;
    margin-bottom: 16%;
}

.about-thumb {
    position: relative;
    z-index: 1;
}

.about-shape {
    position: absolute;
    top: -19px;
    right: 1px;
    z-index: -1;
}

.about-box {
    display: flex;
    align-items: center;
    background: #232323;
    width: 68%;
    margin: auto;
    padding: 5px 28px 14px;
    gap: 1rem;
    margin-top: -48px;
    z-index: 9;
    position: relative;
}

.about-box-icon {
    background: #393939;
    width: 62px;
    height: 62px;
    text-align: center;
    line-height: 60px;
    border-radius: 50px;
    margin-top: 10px;
}

.about-content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
}

/**
======================================================
<-- Contact Section Css -->
======================================================**/
.contact-section {
    background: #f4f4f4;
    padding: 100px 0 118px;
}

.contact-section .section-title.two span {
    font-size: 128px;
    font-weight: 600;
    line-height: 80px;
}

.contact-section .section-title.two {
    padding-bottom: 55px;
}

.single-counter-box {
    background: #09101A;
    text-align: center;
    padding: 43px 0 39px;
}

.counter-title h4 {
    font-size: 40px;
    font-weight: 700;
    line-height: 65px;
    display: inline-block;
    padding-top: 10px;
    font-family: 'Alegreya Sans','Noto Sans JP', sans-serif;
}

.counter-title span {
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    font-family: 'Noto Sans JP' Exo\ 2, system-ui;
}

.single-form-box {
    background: #09101A;
    padding: 26px 44px 58px;
}

.single-form-box-content h4 {
    font-family: 'Alegreya Sans','Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color:#fff;
    text-transform: uppercase;
}

.single-form-box-content p {
    color: rgba(255, 255, 255,0.8);
    padding: 21px 0 24px;
}

.single-input-box input {
    background: transparent;
    border: 1px solid #D4FF47;
    width: 100%;
    height: 68px;
    margin-bottom: 28px;
    color: #000;
    outline: 0;
    padding: 0 18px;
}

.single-input-box input::placeholder {
    color: #fff;
    opacity: 0.8;
}

.single-input-box textarea {
    background: transparent;
    border: 1px solid #D4FF47;
    width: 100%;
    height: 128px;
    color: #fff;
    outline: 0;
    padding: 9px 18px;
}

.single-input-box textarea::placeholder {
    color: #fff;
    opacity: 0.8;
}

.submit-button button {
    background: #D4FF47;
    border: transparent;
    width: 100%;
    padding: 18px 0;
    font-weight: 500;
    margin-top: 20px;
    font-size: 17px;
    border: 2px solid #D4FF47;
    transition: 0.5s;
}

.submit-button button:hover{
    background: transparent;
    color:#D4FF47;
}


/**
======================================================
<-- Skill Section Css -->
======================================================**/
.skill-section {
    background: #ff4571;
    padding: 98px 0 73px;
}

.single-qualification-box {
    margin-bottom: 77px;
}

.experience-year p {
    background: #282828;
    color:#fff;
    display: inline-block;
    padding: 11px 21px;
}

.qualification-content h4 {
    font-size: 30px;
    font-weight: 600;
    padding: 2px 0 7px;
    margin: 0;
}

.qualification-content p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
}

.skill {
    margin-bottom: 43px;
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}

.skill:before {
    width: 100%;
    height: 94%;
    content: "";
    display: block;
    position: absolute;
    background: #151C25;
    bottom: 0px;
    z-index: -1;
}

.skill > p {
    margin: 0;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    position: relative;
    top: 15px;
    opacity: 0.8;
    left: 18px;
}

.skill-bar {
    width: 76%;
    height: 6px;
    background: #D4FF47;
    display: block;
    position: relative;
    left: 0;
    top: 22px;
}

.skill-bar span {
    /* padding: 3px 0; */
    float: right;
    top: -35px;
    position: relative;
    font-family: "Poppins";
    font-size: 14px;
    line-height: 30px;
    color: #ffff;
    font-weight: 400;
    opacity: 0.8;
}

.skill-bar {
    position: relative;
  
}

.skill1 .skill-count1 {
    right: -4px;
}

/* SKILL 2 */
.skill2 {
    width: 85%;
}

.skill2 .skill-count2 {
    right: -2px;
}

.skill-bar.skill4 {
    width: 88%;
}
.skill-bar.skill4 span {
    left: 2px;
}

.skill-bar.skill5 {
    width: 76%;
}


/**
======================================================
<-- Portfolio Section Css -->
======================================================**/
.portfolio-section {
    background: #02050A;
    padding: 100px 0 71px;
}

.portfolio-section .section-title.two {
    padding-bottom: 64px;
}

.portfolio-section .section-title h4 {
    letter-spacing: 2px;
}

.portfolio-section .section-title h1 {
    font-size: 40px;
    line-height: 42px;
    font-weight: 700;
}

.single-portfolio-box {
    margin-bottom: 28px;
    position: relative;
    overflow:hidden;
}

.portfolio-thumb {
    overflow: hidden;
    position: relative;
}

.portfolio-thumb img{
    transition: 0.5s;
}

.single-portfolio-box:hover .portfolio-thumb img{
    transform: scale(1.2);
}

.portfolio-content {
    position: absolute;
    bottom: 36px;
    left: -222px;
    transition:0.5s;
}

.single-portfolio-box:hover .portfolio-content{
    left: 52px;
}

.portfolio-content h4 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 -7px;
}

.portfolio-content a {
    font-size: 16px;
    display: inline-block;
    color: #fff;
    transition: 0.5s;
}

.portfolio-content a:hover{
    color:#D4FF47;
}

/**
======================================================
<-- News Section Css -->
======================================================**/
.news-section {
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0px 0 0px;
}


.news-section .section-title.center {
    padding-bottom: 52px;
}

.news-section .section-title h4 {
    letter-spacing: 2px;
    opacity: 0.9;
}

.news-section .section-title h1 {
    font-size: 40px;
    line-height: 51px;
    font-weight: 700;
    font-family: 'Alegreya Sans','Noto Sans JP', sans-serif;
}

.single-news-box {
    border: 1px solid #2A3440;
    padding: 20px 72px 34px 25px;
    margin-top: 46px;
    margin-right: 14px;
}

.news-box-thumb {
    float: right;
    position: relative;
    left: 34px;
    top: -58px;
}

.news-rating ul li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 8px;
}

.news-rating ul li i {
    display: inline-block;
    color: #FFBA08;
    font-size: 16px;
}

.news-content h4 {
    font-size: 20px;
    line-height: 18px;
    opacity: 0.9;
}

.news-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0;
    opacity:0.9;
}

.news-content p {
    opacity: 0.9;
}

.news-quote-icon {
    float: right;
    position: relative;
    top: -77px;
    left: 36px;
}

/**
======================================================
<-- Testimonial Section Css -->
======================================================**/
.testimonial-section {
    background: #02050A;
    padding: 0 0 118px;
}

.testimonial-section .section-title.center {
    padding-bottom: 52px;
}

.testimonial-section .section-title h4 {
    letter-spacing: 2px;
    opacity: 0.9;
}

.testimonial-section .section-title h1 {
    font-size: 40px;
    line-height: 51px;
    font-weight: 700;
    font-family: 'Alegreya Sans','Noto Sans JP', sans-serif;
}

.single-testimonial-box {
    border: 1px solid #2A3440;
    padding: 20px 72px 34px 25px;
    margin-top: 46px;
    margin-right: 14px;
}

.testimonial-box-thumb {
    float: right;
    position: relative;
    left: 34px;
    top: -58px;
}

.testimonial-rating ul li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 8px;
}

.testimonial-rating ul li i {
    display: inline-block;
    color: #FFBA08;
    font-size: 16px;
}

.testimonial-content h4 {
    font-size: 20px;
    line-height: 18px;
    opacity: 0.9;
}

.testimonial-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 0;
    opacity:0.9;
}

.testimonial-content p {
    opacity: 0.9;
}

.testi-quote-icon {
    float: right;
    position: relative;
    top: -77px;
    left: 36px;
}

/**
======================================================
<-- Skill two Section Css -->
======================================================**/
.skill-section-one {
    background: #fff;
    padding: 67px 0 67px;
}

.skill-one-content span {
    font-size: 58px;
    font-weight: 700;
    -webkit-text-stroke-width: 2px;
    color: transparent;
    -webkit-text-stroke-color: #1A4638;
    text-transform: uppercase;
    display: inline-block;
    padding: 11px 0 0;
}

/**
======================================================
<-- Skill two Section Css -->
======================================================**/
.skill-section-two {
    background: #D4FF47;
    padding: 67px 0 67px;
}

.skill-two-content span {
    font-size: 108px;
    font-weight: 700;
    -webkit-text-stroke-width: 2px;
    color: transparent;
    -webkit-text-stroke-color: #1A4638;
    text-transform: uppercase;
    display: inline-block;
    padding: 31px 0 0;
}

/**
======================================================
<--Blog Section Css -->
======================================================**/
.blog-section {
    background: #fff;
    padding: 100px 0 113px;
}

.blog-section .section-title.two {
    padding-bottom: 64px;
}

.blog-section .section-title h4 {
    letter-spacing: 2px;
}

.blog-section .section-title h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
}

.blog-section .section-button {
    display: inherit;
    text-align: right;
}

.blog-thumb{
    overflow: hidden;
}

.blog-thumb img {
    width: 90%;
    transition: 0.5s;
}

.single-blog-box:hover .blog-thumb img{
    transform: scale(0.9);
}

.blog-content {
    background: #fff;
    width: 86%;
    margin: auto;
    padding: 10px 66px 16px;
    margin-top: -81px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.blog-date {
    margin-top: -24px;
}

.blog-date span {
    font-size: 16px;
    font-weight: 500;
    background: #00b0e2;
    color: #fff;
    padding: 14px 14px;
}

.meta-blog {
    margin: 24px 0 -7px;
}

.meta-blog span {
    font-size: 12px;
    margin-left: 8px;
}

.meta-blog i {
    font-size: 12px;
    color: #333;
    margin-right: 5px;
    display: inline-block;
}

.blog-content a {
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    transition: 0.5s;
}

.single-blog-box:hover .blog-content a{
    color:#00b0e2;
}



/**
======================================================
<--subscribe Section Css -->
======================================================**/
.subscribe-section {
    background: url(assets/images/subscribe-bg.png);
    padding: 90px 0 92px;
    position: relative;
    z-index: 1;
}

.subscribe-section.style-two {
    background: url(assets/images/subscribe-bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: inherit;
}

.subscribe-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #02050A;
    z-index: -1;
    opacity: 0.9;
}

.subscribe-box{
    position: relative;
}

.subscribe-content h4 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.subscribe-section .single-input-box input {
    width: 50%;
    border: 2px solid #fff;
    position: relative;
    height: 78px;
} 

.single-input-box button {
    background: #D4FF47;
    border: transparent;
    padding: 15px 49px;
    position: absolute;
    right: 25.8%;
    top: 95px;
    font-size: 16px;
    font-weight: 500;
}
/**
======================================================
<-- Brake Section Css -->
======================================================**/
.brake-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 180px;
    top: 0;
}

.brake-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: url(../assets/images/hero-shape-4.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}
.brake-section2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 180px;
    top: 0;
}

.brake-section2:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: url(../assets/images/hero-shape-3.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

/**
======================================================
<-- End Section Css -->
======================================================**/
.end-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 180px;
    top: 0;
}

.end-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: url(../assets/images/footer-shape.png);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}
/**
======================================================
<--End Section Css -->
======================================================**/

.footer-section {
    background: #001b6e;
    padding: 10px 0 39px;
}
.footer-widget-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #fff;
}
.footer-widget-content h1 {
    font-size: 25px;
    font-weight: 600;
    line-height: 60px;
    color: #fff;
    margin: 0;
}

.footer-widget-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 15px;
    color: #fff;
    margin: 0;
}

.footer-widget-content p {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
}

.footer-widget-content span {
    font-size: 16px;
    line-height: 15px;
}

.footer-bottom {
    margin-top: 80px;
}

.row.add-boder {
    border-top: 1px solid #fff;
    padding-top: 35px;
}

.footer-bottom-content p {
    font-size: 14px;
    ine-height: 1.6;
    color: #fff;
    opacity: 0.7;
}

.footer-bottom-content.right {
    text-align: right;
}

.footer-bottom-content ul li {
    display: inline-block;
    margin-left: 60px;
}

.footer-bottom-content a{
    font-size: 16px;
    color: #fff;
    opacity: 0.7;
    display: inline-block;
    transition: 0.5s;
}

.footer-bottom-content a:hover{
    color:#D4FF47;
}

.footer-widget-contact-thumb {
    width: 57px;
}
.footer-widget-contact-thumb a{
    display: block;
    transition: all .3s ease-in-out;
}
.footer-widget-contact-thumb img{
    width: 100%;
    vertical-align: middle;
}
.footer-widget-contact-thumb a:hover{
    transform: rotateY(-180deg);
}


/*home-two-all-css*/
/**
======================================================
<--Header-area-two Section Css -->
======================================================**/
.header-area.two {
    left: -14px;
    top: 0;
    z-index: 2;
    width: 15%;
    position: fixed !important;
}

.header-logo .two {
    background: #00b0e2;
    text-align: center;
    padding: 51px 0;
}
.header-logo img {
    width:280px
}
.header-menu.two {
    background: #09101A;
    padding: 80px 38px 110px;
}

.header-menu.two ul li {
    display: inherit !important;
    margin-bottom: 40px;
    margin-right: 0;
}

.header-menu.two ul li a {
    padding: 12px 0 12px 13px;
    border: 1px solid #ffff29;
    width: 100%;
    text-align: left;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.header-menu.two ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #00b0e2;
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}

.header-menu.two ul .active-menu a.active:before{
    color:#D4FF47 !important;
    background: #00b0e2 !important;
    width: 58px;
}

.header-menu.two ul li img {
    margin-right: 26px;
}




/**
======================================================
<--Hero-area-two Section Css -->
======================================================**/
.hero-section.two {
    margin-top: -20px;
    height: 961px;
    background: #00b0e2;
    position: relative;
}

.hero-section.two:before{
    background: transparent;
} 

.hero-shape-3 {
    position: absolute;
    top: 17%;
    z-index: -1;
    left: 14%;
}

.hero-section.two .hero-thumb {
    position: relative;
    z-index: -1;
    margin-left: -41%;
    margin-top: -37px;
}




/**
======================================================
<--About-area-two Section Css -->
======================================================**/
.about-area.two .section-title.two {
    padding-bottom: 160px;
}

.single-about-box {
    margin-bottom: 150px;
}

.about-icon-thumb {
    display: flex;
    gap: 3rem;
}

.about-title h4 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.about-content-two p {
    padding: 26px 0 0;
    color: #fff;
    opacity: 0.9;
}

.about-thumb-two {
    position: relative;
    margin-left: 50px;
}
/**
======================================================
<--Service-area-two Section Css -->
======================================================**/
.service-area-two {
    background: #02050A;
    padding: 100px 0 100px;
}

.service-area-two .section-title.center {
    padding-bottom: 210px;
}

.single-service-box-two {
    background: #09101A;
    padding: 18px 41px 38px;
    border-radius: 5px;
    transition: 0.5s;
}

.single-serive-box:hover .single-service-box-two{
    margin-top: -95px;
}

.service-box-icon-two {
    background: #D4FF47;
    width: 100px;
    text-align: center;
    height: 98px;
    border-radius: 5px;
    line-height: 98px;
    margin-top: -69px;
}

.service-icon-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 12px 0 3px;
}

.service-button{
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transition: 0.5s;
}

.single-serive-box:hover .service-button{
    opacity: 1;
}

.service-button a {
    display: inline-block;
    border: 1px solid #D4FF47;
    padding: 13px 36px;
    border-radius: 5px;
    color: #fff;
    transition: 0.5s;
}
/**
======================================================
<--Skill-Section Three Css -->
======================================================**/
.skill-section-three {
    background: #09101A;
    padding: 100px 0 100px;
}

.skill-section-three .section-title.center {
    padding-bottom: 35px;
}

.single-qualification-box.two {
    border: 1px solid #ffffff29;
    border-radius: 5px;
    padding: 25px 60px 20px 68px;
}

.single-qualification-title h6 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
    border-bottom: 1px solid #D4FF47;
    display: inline-block;
    line-height: 40px;
}

.qualification-content.two h4 {
    font-size: 20px;
    font-weight: 600;
    padding: 36px 0 0;
    line-height: 0;
}

p.experience-year.two {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.qualification-content.two p {
    margin: 17px 0 14px;
}

.skill.home-two {
    margin-bottom: 0;
}

.skill.home-two:before {
    height: 5px;
    border-radius: 30px;
    width: 86%;
    bottom: 17px;
}

.skill-bar.home-two {
    width: 70%;
    height: 5px;
    top: 24px;
    border-radius: 35px;
}

.skill.home-two p {
    left: 0;
}

span.skill-count1.home-two {
    position: relative;
    padding: 12px 10px 5px;
    top: -58px;
    left: 23px;
}

span.skill-count1.home-two:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 1px;
    top: 9px;
    background: url(assets/images/skill-shape.png);
    background-repeat: no-repeat;
}



.skill_nav {
    margin: 3px 0 64px;
}

.skill_menu ul {
    text-align: center;
}

.skill_menu ul li {
    display: inline-block;
    padding: 14px 36px;
    margin: 0 7px;
    background: #141C27;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: .5s;
    border-radius: 5px;
}

.skill_menu ul li:hover, 
.skill_menu ul li.current_menu_item {
    background: #D4FF47;
    color: #fff;
}



/**
======================================================
<--Blog-Section Two Css -->
======================================================**/
.blog-section-two {
    background: #09101A;
    padding: 100px 0 100px;
}

.blog-thumb-two{
    overflow: hidden;
}

.blog-thumb-two img {
    width: 100%;
    transition: 0.5s;
}

.single-blog-box-two:hover .blog-thumb-two img{
    transform: scale(1.1);
}

.blog-date-two span {
    background: #E3E3E3;
    color: #02050A;
    padding: 13px 35px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
    float: right;
    margin-top: -31px;
    position: relative;
    margin-right: 23px;
}

.blog-content-two a {
    display: inline-block;
    font-size: 20px;
    width: 60%;
    padding: 22px 0 0;
    line-height: 26px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
}

.blog-content-two a:hover{
    color:#D4FF47;
}

.blog-section-two .meta-blog {
    margin: 10px 0 -7px;
}

.blog-section-two .meta-blog span:nth-child(1){
    margin-left: 0;
}

.blog-content-two p {
    border-top: 2px solid #797D82;
    padding: 20px 0 0;
    margin-top: 20px;
    color: #fff;
    opacity: 0.9;
}

.blog-button a {
    display: inline-block;
    border: 1px solid #D4FF47;
    padding: 12px 28px;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 29px;
    transition: 0.5s;
}

.blog-button a:hover{
    background:#D4FF47;
}

.blog-button i {
    font-size: 20px;
    position: relative;
    left: 5px;
    top: 3px;
    display: inline-block;
}


/*===========================
<-- Contact Section Two Css -->
=============================*/
.contact-section-two {
    background: #02050A;
    padding: 100px 0 39px;
}

.single-contact-box {
    background: #09101A;
    text-align: center;
    padding: 59px 50px 54px;
    border-radius: 5px;
}

.contact-content h4 {
    font-size: 20px;
    font-weight: 600;
    padding: 26px 0 11px;
    margin: 0;
}

.contact-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    opacity: 0.9;
}

a.button {
    color: #fff;
    display: inline-block;
    font-weight: 500;
    margin-top: 21px;
    font-size: 15px;
    text-transform: unset;
    transition: 0.5s;
}

a.button:hover{
    color:#D4FF47;
}

.form-box-2 {
    margin-top: 78px;
}

.form-input-box-2 input {
    background: transparent;
    border: 1px solid #ffffff36;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    margin-bottom: 22px;
    outline: 0;
    padding: 0 23px;
    color:#fff;
}

.form-input-box-2 input::placeholder{
    color:#fff;
    opacity: 0.8;
}

.form-input-box-2 textarea {
    background: transparent;
    border: 1px solid #ffffff36;
    width: 100%;
    height: 158px;
    border-radius: 5px;
    margin-bottom: 22px;
    outline: 0;
    padding: 20px 23px;
    color:#fff;
}

.form-input-box-2 textarea::placeholder{
    color:#fff;
    opacity: 0.8;
}

.submit-button-2 button {
    background: #D4FF47;
    border: transparent;
    padding: 14px 67px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid #D4FF47;
    transition: 0.5s;
}

.submit-button-2 button:hover{
    background:transparent;
    color:#D4FF47;
} 

.contact-section-two .footer-bottom {
    margin-top: 118px;
}

/*===========================
<--header-section-three Css -->
=============================*/
.sticky-header {
    background: #00b0e2;
    position: relative;
}

.header-area-three {
    padding: 23px 0;
    position: relative;
    z-index: 2;
}

.header-area-three .header-menu ul li a {
    padding: 23px 0;
}

.header-area-three .row.add-bg {
    background: #00b0e2;
    position: relative;
}

.header-area-three .row.add-bg {
    background: #00b0e2;
    position: relative;
}


.header-area-three.sticky{
    background:none;
} 

.sidebar-toggle {
    text-align: right;
}

.sidebar-toggle i {
    display: inline-block;
    font-size: 44px;
    background: #00b0e2;
    color: #14372D;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    position: relative;
    left: 10px;
}


/*===========================
<-- Breadcumb-section Css -->
=============================*/

.breadcumb-section {
    background: url(assets/images/news-shape.png);
    padding: 95px 0 154px;
    margin-top: -95px;
}

.breadcumb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 134px;
}

.breadcumb-title h4 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
}

.breadcumb-title-right ul li {
    display: inline-block;
    margin-left: 13px;
    font-size: 18px;
}

.breadcumb-title-right ul li i {
    font-size: 14px;
    display: inline-block;
}

.breadcumb-title-right ul li a{
    color:#fff;
    display: inline-block;
    transition: 0.5s;
}

.breadcumb-title-right ul li a:hover{
    color:#D4FF47;
}

/*===========================
<-- Blog Details Section Css -->
=============================*/
.blog-details-section {
    padding: 100px 0 100px;
    background: #000000;
}

.blog-details-thumb.one {
    margin: 0;
}

.blog-details-thumb img {
    width: 100%;
}

.blog-details-content {
    padding: 40px 0 0;
}

.blog-details-author ul li {
    display: inline-block;
    margin-right: 33px;
}

li.add-bg {
    font-weight: 600;
    background: #D4FF47;
    color: #222;
    padding: 16px 31px;
}

.blog-details-title h1 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    margin-top: 33px;
}

.blog-details-content p {
    color: #fff;
    opacity: 0.9;
    margin-top: 24px;
}

p.blog-details-desc-3 {
    line-height: 33px;
    width: 100%;
    text-align: justify;
}

.blog-quote {
    background: #09101A;
    padding: 13px 62px 42px;
    margin-top: 39px;
    position: relative;
}

.blog-quote:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100px;
    left: 0;
    top: 30px;
    background: #D4FF47;
}

.quote-content span {
    margin-top: 16px;
    display: inline-block;
}

.blog-details-thumb {
    margin-top: 57px;
    position: relative;
}

.blog-social-share {
    margin-top: 78px;
    border-bottom: 1px solid #ffffff40;
    padding-bottom: 29px;
}

.blog-share-text {
    display: inline-block;
}

.blog-share-text span {
    font-size: 20px;
    font-weight: 600;
    padding-right: 270px;
}

.blog-social-icon {
    text-align: right;
    display: inline-block;
}

.blog-social-icon ul li {
    display: inline-block;
    margin-right: 6px;
}

.blog-social-icon ul li i {
    display: inline-block;
    font-size: 16px;
    background: #333333;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.blog-social-icon ul li i:hover{
    color:#222;
}

.blog-social-icon ul li i:after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background:#D4FF47;
    transform: scale(0);
    z-index: -1;
    transition: 0.5s;
    border-radius: 5px;
}

.blog-social-icon ul li i:hover:after{
    transform: scale(1);
}

.blog-category {
    display: inline-block;
    margin-left: 45px;
}

.blog-category ul li {
    display: inline-block;
}

.blog-category ul li a {
    font-size: 14px;
    display: inline-block;
    font-weight: 400;
    color: #fff;
    opacity: 0.9;
    margin-right: 16px;
    transition: 0.5s;
}

.blog-category ul li a:hover{
    color:#D4FF47;
    border-bottom: 1px solid #D4FF47;
}

.blog-details-post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    border-bottom: 1px solid #ffffff40;
    padding-bottom: 35px;
}

.previous-post {
    padding-left: 43px;
}

.previous-post h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 0;
}

.previous-post p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

.next-post {
    text-align: right;
    padding-right: 44px;
}

.next-post h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 0;
}

.next-post p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

.blog-post-comment {
    background: #09101A;
    padding: 20px 60px 37px;
    margin-top: 118px;
}

.post-thumb {
    float: right;
    margin-top: -70px;
}

.post-comment-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 38px;
}

.post-comment-content span {
    font-size: 12px;
    display: inline-block;
}

.post-comment-content p {
    font-size: 14px;
    margin-top: 11px;
}

.comment-reply-button a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding-top: 10px;
}

.owl-prev {
    position: absolute;
    top: -22%;
    left: 14px;
}

.owl-prev i{
    font-size: 22px;
    color: #fff;
    transition: 0.5s;
}

.owl-prev i:hover{
    color:#D4FF47;
}

.owl-next{
    position: absolute;
    top: -22%;
    right: 14px;
}

.owl-next i {
    font-size: 22px;
    color: #fff;
    transition: 0.5s;
}

.owl-next i:hover{
    color:#D4FF47;
}

.single-contact-box-3 {
    padding-top: 60px;
}

h4.blog-comment-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 34px;
}

.single-input-box-3 input {
    width: 100%;
    height: 70px;
    background: transparent;
    border: 1px solid #ffffff4f;
    padding: 0 19px;
    outline: 0;
    margin-bottom: 32px;
    color:#fff;
}

.single-input-box-3 input::placeholder{
    color:#fff;
}

.single-comment-box-3 textarea {
    width: 100%;
    height: 200px;
    background: transparent;
    border: 1px solid #ffffff4f;
    padding: 20px 19px;
    outline: 0;
    margin-bottom: 25px;
    color: #fff;
}

.single-comment-box-3 textarea::placeholder{
    color:#fff;
}

.submit-butto-3 button {
    background: #D4FF47;
    width: 100%;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    border: transparent;
}


.widget-search {
    background: #141C27;
    padding: 15px 40px 38px;
}

.widget-search h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    opacity: 0.9
}

.widget-search-box input {
    background: #202731;
    border: transparent;
    width: 100%;
    height: 58px;
    padding: 0 44px 0 20px;
    outline: 0;
    color: #fff;
}

.widget-search-box input::placeholder{
    color:#fff;
}

.widget-search-box button {
    float: right;
    top: -44px;
    left: -9px;
    position: relative;
    background: transparent;
    border: transparent;
}

.widget-search-box button i {
    color: #fff;
    font-size: 16px;
    display: inline-block;
}

.blog-widget-category {
    background: #141C27;
    padding: 26px 42px 32px;
    margin-top: 30px;
}

h4.widget-category-content {
    font-size: 20px;
    margin: 0;
    padding-bottom: 24px;
    font-weight: 600;
    opacity: 0.9;
}

.widget-category-list ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 11px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    cursor: pointer;
    color: #fff;
    opacity: 0.9;
}

.widget-category-list ul li:hover{
    color:#D4FF47;
}

.widget-recent-box {
    background: #141C27;
    padding: 26px 42px 32px;
    margin-top: 30px;
}

.widget-recent-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 11px;
    opacity: 0.9;
}

.widget-recent-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 20px;
}

.recent-post-titel a {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    display: inline-block;
    color: #fff;
    transition: 0.5s;
    opacity: 0.9;
}

.recent-post-titel a:hover{
    color: #D4FF47;
}

.recent-post-content p {
    margin-top: 4px;
    color:#fff;
    opacity: 0.9;
}

.widget-gallery-box {
    background: #141C27;
    padding: 26px 38px 346px;
    margin-top: 30px;
}

.widget-gallery-box h4 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 17px;
    opacity: 0.9;
}

.widget-gallery-thumb {
    float: right;
    margin-right: 9px;
    margin-bottom: 10px;
}

.widget-tags-box {
    background: #141C27;
    padding: 26px 42px 32px;
    margin-top: 30px;
}

.widget-tags a {
    display: inline-block;
    background: #202731;
    padding: 0px 14px;
    margin-right: 7px;
    margin-bottom: 9px;
    color: #fff;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.widget-tags a:hover{
    color:#222;
}

.widget-tags a:before{
    position: absolute;
    content:"";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top:0;
    background: #D4FF47;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.widget-tags a:hover:before{
    transform: scale(1);
}

.widget-tags-box h4 {
    font-size: 30px;
    margin: 0;
    padding-bottom: 6px;
}

/*===========================
<-- blog-section-tharee Css -->
=============================*/
.blog-section-tharee {
    background: #000000;
    padding: 100px 0 100px;
}

.blog-thumb-3 img {
    width: 100%;
}

.single-blog-box-3 {
    margin-bottom: 78px;
}

.meta-blog-3 {
    background: #09101A;
    display: inline-block;
    padding: 11px 14px 7px;
    text-align: center;
    border-bottom: 1px solid #D4FF47;
    border-radius: 24px 0 0 0;
    margin-top: -37px;
    margin-left: 29px;
    margin-bottom: 42px;
}

.meta-blog-3 h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
}

.meta-blog-3 span {
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
}

.blog-content-3 a {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    color: #fff;
    transition: 0.5s;
}


.blog-content-3 a:hover{
    color:#D4FF47;
}

.blog-content-3 p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
    margin: 31px 0 0;
    width: 88%;
    border-bottom: 1px solid #ffffff33;
    padding-bottom: 34px;
}

/*===========================
<-- contact-section-4 Css -->
=============================*/
.contact-section-3 {
    background: #000000;
    padding: 100px 0 100px;
}

.contact-content-4 h1 {
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 25px;
}

.single-contact-box-4 {
    background: #09101A;
    padding: 34px;
    margin-bottom: 14px;
}

.contact-input-box-4 input {
    background: transparent;
    border: transparent;
    border-bottom: 2px solid #19222E;
    width: 100%;
    height: 50px;
    padding: 0 6px;
    margin-bottom: 33px;
    outline: 0;
    color:#fff;
}

.contact-input-box-4 input::placeholder{
    color:#fff;
}

.contact-message-box-4 textarea {
    background: transparent;
    border: transparent;
    border-bottom: 2px solid #19222E;
    width: 100%;
    height: 120px;
    padding: 0 6px;
    margin-bottom: 33px;
    outline: 0;
    color:#fff;
}

.contact-message-box-4 textarea::placeholder{
    color:#fff;
}

.submit-button-4 button {
    background: #D4FF47;
    border: transparent;
    width: 100%;
    padding: 18px 0;
    color: #222;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid #D4FF47;
    transition: 0.5s;
}

.submit-button-4 button:hover{
    background: transparent;
    color:#D4FF47;
}

.contact-google-map iframe {
    width: 100%;
    height: 450px;
    border: transparent;
}


/*===========================
<-- Consen Loader Css -->
=============================*/
.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 99999999;
}

.loader {
    position: relative;
    display: block;
    z-index: 201;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    transition: all 1s 1s ease;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader:before {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: #fff;
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:after {
    position: absolute;
    content: '';
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-right-color: #fff;
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    -o-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}

/*/ Here comes the Magic /*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #0FC0FC;
    z-index: 2;
}

.loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

/*/ When page loaded /*/
.loaded .loder-section.left-section {
    left: -100%;
}

.loaded .loder-section.right-section {
    right: -100%;
}

.loaded .loader-wrapper {
    visibility: hidden;
}

.loaded .loader {
    top: -100%;
    opacity: 0;
}



/*
<!-- ============================================================== -->
<!--Scrollup Button Section -->
<!-- ============================================================== -->*/

/*------back-to-top------------*/
.prgoress_indicator {
    position: fixed;
    right: 30px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(15px); */
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #D4FF47;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
  position: absolute;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: #D4FF47;
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:#D4FF47;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}





/*----------------
==============   Start  Nav Sidebar button
------------------*/

.hendre_nav_manu .nav-btn.navSidebar-button {
    display: inline-block;
    float: inherit;
}

.hendre_nav_manu .nav-btn.navSidebar-button a {
    color: #fff;
    background: #152b63;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    border-radius: 30px;
}

.hendre_nav_manu .nav-btn.navSidebar-button a i {
    font-size: 20px;
    color: #fff;
    padding-right: 0;
}



/*nav button*/

.nav-btn.navSidebar-button {
    display: inline-block;
    float: left;
    display: none;
    position: relative;
    z-index: 9999;
}

.nav-btn i {
    display: inline-block;
    color: #fff;
    position: fixed !important;
    z-index: 9999;
    font-size: 50px;
    background: #D4FF47;
    width: 100%;
    padding-left: 15px;
}

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 101;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0;
}

.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 245px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.4;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    left: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 40px 32px;
}

.close-side-widget i {
    color: #fff;
    font-size: 28px;
    display: block;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
  
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}



/* Hamburger Toggle Button */


/* Sidebar Nav */

.close-btn {
    font-size: 18px;
    background: transparent;
    border-color: transparent;
    transition: all 0.3s linear;
    cursor: pointer;
    color: #fff;
    position: relative;
    top: -43px;
    left: 139px;
}

.close-btn:hover {
  color: #fff;
  transform: rotate(360deg);
}

.sidbar-contact-box h2 {
    font-size: 30px;
    margin: 15px 0 10px;
}

.sidbar-contact-box p {
    text-align: justify;
}

.sidbar-contact-box a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin: 18px 0;
    display: inline-block;
}

.sidbar-contact-box a i {
    display: inline-block;
    font-size: 20px;
    color: red;
    margin-left: 5px;
}

.sidbar-contact-infor h4 {
    font-size: 23px;
    margin: 0 0 5px;
}

.sidbar-contact-infor ul li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
}

.sidbar-contact-infor ul li i {
    color: #D4FF47;
    font-size: 16px;
    margin-right: 12px;
}

ul.social-box {
    margin: 30px 0 0;
}

ul.social-box li {
    display: inline-block;
    list-style: none;
    margin: 0 6px 0 0;
}

ul.social-box li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    color: #D4FF47;
    transition: .5s;
    font-size: 18px;
    border-radius: 3px;
}

ul.social-box li a:hover {
    background: #D4FF47;
    color: #fff;
}

p.sidebar-text {
    font-size: 16px;
    text-align: justify;
    padding-top: 25px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: #D4FF47;
    display: grid;
    grid-template-rows: auto 1fr auto;
    row-gap: 0rem;
    box-shadow: hsl(360, 67%, 44%);
    transition: all 0.3s linear;
    transform: translate(-100%);
    padding: 60px 42px;
    z-index: 99999;
}

.show-sidebar {
  transform: translate(0);
}
.case-study-intro {
    box-shadow: 0 0 15px rgb(0, 0, 0, 0.2);
    background: #fff;
    padding: 60px;
    padding-top: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
    padding-left: 60px;
}

