/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
    overflow-y: scroll;
    padding-right: 0 !important;
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Poppins", sans-serif;
    color: #444444;
    overflow-x: hidden !important;
    padding-right: 0px !important;
    /* overflow-y: hidden !important; */
}

a {
    color: #0b0b0b;
    text-decoration: none;
}

a:hover {
    color: #8383e6;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #8181e1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #49beaa;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #8383e6;
    padding-top: 3rem;
    padding-bottom: 3rem;

}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 0;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Open Sans", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #576971;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 30px;
    min-width: 13rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
    margin: 0 0 0 30px;
}

@media (max-width: 768px) {
    .header-social-links {
        margin: 0 15px 0 0;
    }
}

.header-social-links a {
    color: #ffffff;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    padding-left: 10px;
}

.header-social-links a:hover {
    color: #def90f;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #def90f;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: #003651;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #8181e1;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #def90f;
    font-size: 40px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    display: none;
}

.mobile-nav-toggle.bi-x {
    color: #def90f;
    font-size: 40px;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
margin-left: 20px;
z-index: 99999;
    }

  /*   .navbar ul {
        display: none;
    } */
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(32, 38, 41, 0.9);
    transition: all ease 0.3s;
    z-index: 999;
    /* animation: slideInRight 0.5s linear 0s; */

}



.navbar-mobile-hide {
    /* animation: slideInLeft 0.5s linear 0s; */
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 30px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding: 6rem 2rem;
    background-color: #0c0c0c;
    overflow: hidden;
    opacity: 1;

}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 20px 32px;
    font-size: 1.28rem;
    color: #ffffff;
    font-weight: 500;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #def90f;
    font-weight: 800;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #8181e1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    background-image: url("../../public/uploads/hero-bg.png"), url(../../public/uploads/banner-mid-con.png);
    background-repeat: no-repeat, no-repeat;
    background-size: contain, 40%;
    background-position: right -56px top 150px, top 245px center;
    /* margin-top: 70px; */
    padding: 60px 0;
    background-color: #8383e6;
    padding-bottom: 0px;
    padding-top: 8rem;
    /* height: 100vh; */
}

#hero .hero-text {
    margin: 0 0 20px 0;
    font-size: 3.85rem;
    font-weight: 900;
    line-height: 120%;
    color: #fff;
}

#hero .hero-text span {
    display: block;
    font-weight: 400;
}

#hero h2 {
    color: #576971;
    margin-bottom: 30px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 0px;
    transition: 0.5s;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}

#hero .btn-get-started:hover {
    background: #fb5607;
}

#hero .btn-get-started.talentbtn_bnr {
    background: #49beaa;
margin-left: 1rem;
}

#hero .btn-get-started.talentbtn_bnr:hover {
    background: transparent;
}

#hero .hero-img {
    text-align: center;
}

#hero .hero-img img {
    width: 100%;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero h1 {
        font-size: 32px;
        line-height: 40px;
    }

    #hero h2 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f7f8f9;
}

.section-title {
    padding-bottom: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 2.5rem;
    font-family: "Poppins", sans-serif;
}

.section-text {
    color: #fff;
    font-size: 1.14rem;
    font-weight: 400;
    max-width: 70%;
    margin-left: 8rem;
    line-height: 170%;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 0;

}

.about-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.abt-leftsec {
    width: 100%;
    max-width: 40%;
    flex: 0 0 40%;
    background: #fff;
    position: relative;
}


.abtimage-crcl {
    background: #daf40f;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.abtimage-wrapp {
    position: absolute;
    top: 50%;
    left: 17rem;
    transform: translate(0%, -33%);
    z-index: 2;
    min-width: 43rem;
   /*----  filter: drop-shadow(0px 22px 19px rgba(0, 0, 0, 0.25)); ---*/
     /*----  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px; ---*/
}

.abt-rightsec {
    width: 100%;
    max-width: 60%;
    flex: 0 0 60%;
    background: #fb5607;
    padding: 8rem;
    /* padding-bottom: 16rem; */
    min-height: 44rem;
}


@media (max-width: 992px) {
    .about .container {
        padding: 30px;
    }
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    background: #0c0c0c;
    padding: 11.5rem 0px;
    padding-bottom: 8rem;
}

.features-headtxt {
    color: #fff;
    text-align: center;
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.features-headtxt span {
    color: #def90f;
}

.features-txt {
    text-align: center;
    font-size: 1.87rem;
    font-weight: 600;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}


.features-cardwrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: auto;
    margin-top: 3rem;
}

.features-cardbox {
    width: 100%;
    max-width: 30%;
    text-align: center;
    padding: 6rem;
}

.featurestext-wrapp {
    margin-top: 4rem;
}

.featurestext-heading {
    font-family: "Montserrat", sans-serif;
    color: #def90f;
    font-size: 1.57rem;
    font-weight: 600;
}

.featurestext-text {
    margin: auto;
    margin-bottom: 0px;
    color: #fff;
    font-size: 1.14rem;
    font-weight: 400;
    max-width: 97%;

}

.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 20px;
    transition: 0.3s;
    color: #364146;
    transition: 0.3s ease-in-out;
    border-radius: 0;
    border-left: 4px solid #fafbfb;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    color: #576971;
}

.features .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.features .nav-link:hover {
    background: #fafbfb;
}

.features .nav-link:hover h4 {
    color: #364146;
}

.features .nav-link.active {
    border-radius: 0;
    border: 0;
    border-left: 4px solid #8181e1;
    background: #fafbfb;
}

.features .nav-link.active h4 {
    color: #8181e1;
}

.features .tab-pane.active {
    animation: slide-down 0.5s ease-out;
}

.features .tab-content {
    text-align: right;
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Talent
--------------------------------------------------------------*/

.talent {
    background: #49beaa;
    text-align: center;
    color: #fff;
padding: 0px;
transition: all 0.5s ease;
}

.talent:hover {
background: #0dae93;
}

.talent .section-title {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    padding: 4rem 0px;
}

.section-title-anc {
    color: #fff;
}

.section-title-anc:hover {
    color: #fff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
    transform: translateY(-5px);
}

.services .icon i {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .title a {
    color: #111;
}

.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.services .icon-box-pink .icon i {
    color: #ff689b;
}

.services .icon-box-pink:hover {
    border-color: #ff689b;
}

.services .icon-box-cyan .icon i {
    color: #3fcdc7;
}

.services .icon-box-cyan:hover {
    border-color: #3fcdc7;
}

.services .icon-box-green .icon i {
    color: #41cf2e;
}

.services .icon-box-green:hover {
    border-color: #41cf2e;
}

.services .icon-box-blue .icon i {
    color: #2282ff;
}

.services .icon-box-blue:hover {
    border-color: #2282ff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #8181e1;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #364146;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #364146;
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #8181e1;
    margin: 0 2px;
    font-size: 24px;
    display: inline-block;
    transition: 0.3s;
    background: #eaf8ff;
    border-radius: 50px;
    line-height: 0;
    padding: 6px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #fff;
    background: #8181e1;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #8181e1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #8181e1;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(54, 65, 70, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    /* background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../img/cta-bg.jpg") center center;
  background-size: cover; */
    /* padding: 80px 0; */
}

.cta {
    padding: 0px 0px;
    background-color: #fff;
    position: relative;
    min-height: 40rem;
}

.cta-wrapper {
    position: relative;
}

.cta-content-wrapper {
    position: absolute;
    right: 0px;
}

.talent-heading {
    color: #fff;
    font-size: 12.8rem;
    text-align: end;
    margin-right: 5rem;
    margin-bottom: 0px;
    margin-top: 2rem;
}

.talent-heading span {
    color: #def810;
}

.cta-inner-wrapper {
    display: flex;
}

.cta-left {
    width: 100%;
    max-width: 50%;
    position: absolute;
    left: -2%;
    top: -15rem;
}

.cta-right {
    width: 100%;
    max-width: 50%;
    /* margin-left: auto; */
    z-index: 2;
}

.cta-wrapper::before {
    background: #fb5607;
    width: 114%;
    height: 19rem;
    position: absolute;
    content: '';
    left: -3%;
    top: 0;
    z-index: 0;
}

.cta-right {
    position: absolute;
    right: 0;
    top: 25rem;
    left: 80%;
    transform: translate(-50%, -50%);
    margin-top: 4rem;
}

.form-heading {
    font-size: 2.21rem;
    font-weight: 600;
}

.form-heading span.colone {
    color: #fb5607;
}

.form-heading span.coltwo {
    color: #7c7ce0;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.form-heading span.colthree {
    color: #0c0c0c;
}

.form-text {
    color: #7c7ce0;
    max-width: 70%;
    font-size: 1.28rem;
    margin-bottom: 0px;
}


.subscribtionform {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.subscribtionform .form-group {
    min-width: 60%;
}

.subinput {
    background: #f7f7f7;
    padding: 15px 30px;
    font-size: 1.28rem;
    color: #000;
    min-width: 75%;
    border-radius: 20px;
    border: 1px solid #9b9b9b;
min-height: 3.8rem;
position: relative !important;
}

.subinput::placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    /* Firefox */
}

.subinput::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(0, 0, 0, 0.5);
}

.subinput:focus{
border-color: #fb5607 !important;
    outline: 0;
}
#contact_email-error {
    color: red;
left: 1rem;
}

.btnsubmit {
    background: #fb5607;
    padding: 1rem 1.5rem;
    font-size: 1.28rem;
    color: #ffffff;
    margin-left: 1rem;
    min-width: 10rem;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.8rem;
}

.btnsubmit:hover {
    background: #49beaa;
    color: #000;
}


.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #8181e1;
}

.cta .cta-btn:hover {
    background: #008bd1;
}



@media (min-width: 1024px) {
    .cta {
        background-attachment: fixed;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
    max-width: 75%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.faq .faq-list li {
    border-bottom: 1px solid #e3e7e9;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-size: 1.57rem;
    line-height: 150%;
    font-weight: 700;
    cursor: pointer;
    color: #fb5001;
    transition: 0.3s;
}

.faqheading {
    font-size: 4.5rem;
    font-weight: 700;
    color: #8888e2;
    text-align: center;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.faqans {
    text-align: start;
    color: #7c7ce0;
    padding-top: 2rem;
    font-size: 1.28rem;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: #9b9b9b;
}

.faq .faq-list .collapsed:hover {
    color: #8181e1;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #d8dee1;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #f4f6f7;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #8181e1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #8181e1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: url("../img/team-bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}

.team::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 9;
}

.team .container {
    position: relative;
    z-index: 10;
}

.team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.team .member .pic {
    overflow: hidden;
}

.team .member .member-info {
    position: absolute;
    top: 85%;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 0;
    color: #364146;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    max-height: 95px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
    max-height: 300px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #364146;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b5c1c6;
    bottom: 0;
    left: calc(50% - 25px);
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: #627680;
}

.team .member .social a:hover {
    color: #8181e1;
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

@media (max-width: 992px) {
    .team .member {
        margin-bottom: 110px;
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
    border-top: 1px solid #eceff0;
    border-left: 1px solid #eceff0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #eceff0;
    border-bottom: 1px solid #eceff0;
    overflow: hidden;
    background: #fff;
    height: 120px;
    padding: 40px;
}

.clients .client-logo img {
    max-width: 50%;
    filter: grayscale(100);
}

.clients .client-logo:hover img {
    filter: none;
    transform: scale(1.1);
}

.clients img {
    transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e9ecee;
}

.pricing h3 {
    font-weight: 400;
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 400;
    color: #777777;
}

.pricing h4 {
    font-size: 36px;
    color: #8181e1;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #8181e1;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    padding: 20px 15px;
    text-align: center;
}

.pricing .btn-buy {
    background: #8181e1;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing .featured {
    background: #8181e1;
    border-color: #8181e1;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
    color: #fff;
}

.pricing .featured .btn-buy {
    background: #fff;
    color: #8181e1;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #8181e1;
    color: #fff;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    padding: 30px;
    background: #fff;
    width: 100%;
    border: 2px solid #e9ecee;
    border-radius: 4px;
}

.contact .info i {
    font-size: 20px;
    color: #8181e1;
    float: left;
    width: 44px;
    height: 44px;
    background: #f2f4f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #364146;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #627680;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #8181e1;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #8181e1;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    padding: 30px;
    background: #fff;
    border: 2px solid #e9ecee;
    border-radius: 4px;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #8181e1;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #1eb4ff;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f4f6f7;
    min-height: 40px;
    margin-top: 70px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 600;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4c5c63;
    content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #f7f8f9;
    padding: 0 0 0px 0;
    color: #364146;
    font-size: 14px;
}

#footer .footer-top {
    background: #fff;
    padding: 60px 0 0px 0;
    border-top: 2px solid #e9ecee;
    border-bottom: 2px solid #e9ecee;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

/* #footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #576971;
} */

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: transparent;
    color: #8a9ca5;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 20px;
    height: 20px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: transparent;
    color: #fff;
    text-decoration: none;
}



#footer .footer-top .footer-links {
    margin-bottom: 30px;

}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #8181e1;
    font-size: 18px;
    line-height: 1;
    margin-left: -5px;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #0b0b0b;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 1.14rem;
}

#footer .footer-top .footer-links ul a:hover,
#footer .footer-top .footer-links ul a.active {
    color: #8181e1;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #e3e7e9;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #8181e1;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;

}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #007ab7;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 8px;
    text-align: center;
    font-size: 13px;
    color: #364146;
}


.footer-logo-wrapp img {
    max-width: 13.75rem;
}

.footer-headings {
    margin-top: 2.5rem;
    color: #8181e1;
    font-weight: 600;
    font-size: 1.28rem;
    line-height: 1;
}

.footermail {
    font-size: 1.14rem;
    color: #0b0b0b;
    font-weight: 400;
}

.footerlogo-right-wrapp img {
    width: 100%;
    max-width: 26rem;
}


div#loom-companion-mv3 {
    display: none !important;
}




.modal {
    padding-right: 0rem !important;
    overflow-x: hidden;
    width: calc(100% + 4rem);
    /* overflow-y: clip; */
}


.modal-content {
    background: #8282e4;
    padding: 0rem 2rem;
    padding-bottom: 2rem;
    border-top: 8px solid #dcf80e;
overflow: hidden;
}

.modal-content i {
    position: absolute;
    top: 30px;
    right: 15px;
}

i.bi.bi-eye {
    font-size: 1.5rem;
    color: #8383e5;
    top: 194px;
    right: 40px;
display:none;
}

img.modallogo {
    max-width: 12rem;
    padding-bottom: 1rem;
}

.modal-content #form-toggle-one {
    display: block;
}

.modal-content #form-toggle-two {
    display: block;
}
.modal-content #form-toggle-three {
    display: block;
}

.modal-header {
    margin: auto;
    border: none;
}

.signupmodal .modal-dialog {
    max-width: 700px;
}

.signupmodal .modal-body {
    border: none;
}

.form-signup .form-label {
    color: #fff;
    font-size: 1.07rem;
    font-weight: 300;
    line-height: 1;
    margin-top: 14px;
}

.form-signup .form-control {
    border-radius: 0px;
    padding: 0.6rem;
/* border: 1px solid transparent; */
position: relative;
    max-height: 3rem;
    min-height: 3rem;
}
/* .form-signup .form-control.error{
border-color: red;
margin-bottom: 5px;
}
*/
/*  .form-signup .form-control.valid{
margin-bottom: 5px;
}
*/

.form-signup ::placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    /* Firefox */
}

.form-signup ::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #d9d9d9;
}

.form-check {
    color: #fff;
    font-size: 1.07rem;
}

/* .form-signup .form-check-input {
    background-color: transparent;
    border-color: #d9d9d9;
    border-radius: 0px;
} */

.form-signup .form-check-input:checked {
    background-color: transparent;
    border-color: #d9d9d9
}

.form-signup .form-check-input:focus {
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #fff;
}


.form-signup .tncs-txt {
    color: #d9d9d9;
    font-size: 13px;
    font-weight: 300;
}

.form-signup .tncs-txt a {
    color: #d9d9d9;
    font-size: 13px;
    text-decoration: underline;
    font-weight: 300;
}

.form-signup .tncs-txt a:hover {
    color: #d9d9d9;
}

.form-select {
    color: rgba(0, 0, 0, 0.5);
    padding: 0.6rem;
    border-radius: 0px;
    min-height: 3rem;
    max-height: 3rem;
position: relative !important;
}

.form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.formheadinginner {
    color: #fff;
    font-size: 1.28rem;
}

.btnmodal-signup {
    border-radius: 22px;
    min-width: 11rem;
    background: #fb5607;
    padding: 0.6rem 1rem;
    border: none;
    font-weight: 600;
    font-size: 1.14rem;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.btnmodal-signup:hover,
.btnmodal-signup:focus {
    background: #fb5607;
    box-shadow: 0px 9px 9px rgba(0, 0, 0, 0.3);
    border: none;
    color: #fff;
}

.signin-txt {
    text-align: center;
    justify-content: center;
    border: none;
}

.form-alreadyacctxt {
    color: #d9d9d9;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.btn-signin {
    border-radius: 22px;
    min-width: 11rem;
    background: #49beaa;
    padding: 0.47rem 1rem;
    border: none;
    font-weight: 300;
    font-size: 1.14rem;
    transition: all 0.3s ease-in-out;
    color: #d9d9d9;
}

.btn-signin:hover,
.btn-signin:focus {
    background: #49beaa;
    box-shadow: 0px 9px 22px rgba(0, 0, 0, 0.3);
    border: none;
    color: #d9d9d9;
    font-weight: 400;
}

.close {
    display: none;
}

.form-signup .tncs-txt.remember-txt {
    display: flex;
    align-items: center;
}

.form-signup .tncs-txt.remember-txt span {
    margin-left: auto;
    margin-top: 0.35rem;
}

.form-signup .tncs-txt.remember-txt span a {
    color: #daf611;
    text-decoration: none;
    font-weight: 200;
}

.modal-content .login-signup-toggle {
    color: #def90f;
    font-size: 40px;
}

#Newlogin .form-control {
    padding: 15px 20px;
}

#Newlogin ::placeholder {
    color: #8383e6;
    opacity: 1;
    /* Firefox */
}

#Newlogin ::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #8383e6;
}

.modal-footer {
    border: 0px;
    text-align: center;
    justify-content: center;
    padding: 0px;
}

.modal-footer .seccreateaccount {
    color: #daf611;
    font-weight: 300;
    line-height: 130%;
    font-size: 14px;
    position: absolute;
    left: 60%;
    transform: translate(-80%, -50%);
}

/* .modal-footer .seccreateaccount:hover {
    transform: scale(1.04);
}
*/



.abouthero {
    width: 100%;
    background-image: none !important;
    padding: 7rem 0 !important;
    background-color: #8383e6;
    padding-top: 3rem !important;
}

.abtherotxt {
    font-size: 1.28rem;
    color: #fff;
    text-align: start;
}

.abtftr-txt {
    font-size: 4rem;
    color: #def90f;
}

.abt-pg img {
    max-width: 100%;
}

.abouthero .hero-text {
    font-weight: 600 !important;
}


.contactus {
    width: 100%;
    background-image: none !important;
    padding-top: 3rem !important;
    padding: 0rem 0;
    background-color: #8383e6;
    background-image: url(../public/uploads/contact-bg-img.webp) !important;
    background-repeat: no-repeat !important;
    background-size: 33% !important;
    background-position: right 5px top 100px !important;
}

.contactwrapper {
    display: flex;
    align-items: flex-start;
}

.contact-mid {
    text-align: center;
    padding-top: 8rem;
}

.contact-mid .hero-text-wrapper {
    text-wrap: nowrap;
}

.contact-mid .hero-text {
    font-size: 5.85rem !important;
    margin-bottom: 0px !important;
    letter-spacing: 3px;
    font-family: "Poppins", sans-serif;
}

.contectbnt-txt {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 200;
    letter-spacing: 8px;
    font-family: "Poppins", sans-serif;
}


.contactform-wrapper {
    display: flex;
    width: 100%;
}

.contactform-leftsec {
    padding: 6rem;
    max-width: 40%;
    flex: 0 0 40%;
    display: flex;
    margin-left: auto;
    justify-content: center;
    /* text-align: center; */
}

.contactform-rightsec {
    background: #fb5607;
    padding: 4rem;
    max-width: 60%;
    flex: 0 0 60%;
    margin-left: auto;
}

.footermail.mailcontact {
    color: #fb5607;
    font-size: 1.5rem;
}

.iconcontact {
    color: #8181e1;
    margin-right: 0.5rem;
    font-size: 1.43rem;
}

.iconcontact:hover {
    color: #fb5607;
}

.contact-phone {
    font-size: 1.87rem;
    font-weight: 700;
    color: #fb5607;
}

.emailwrapp .footer-headings {
    font-size: 1.57rem;
}

.sentform-heading {
    color: #fff;
    font-size: 1.43rem;
}

.btnmodal-signup.contactsend-btn {
    background: #fff;
    color: #fb5607;
    min-width: 12rem;
}

.formcontact .form-control {
    border-radius: 6px;
}
textarea.form-control{
    min-height: 200px !important;
}






/*--------------------------------------------------------------
# Blogs
--------------------------------------------------------------*/
.blogs {
    padding: 0px;
}

.blog-content {
    padding: 7rem;
    font-size: 1.4rem;
}

.blog-text {
    font-weight: 600;
    padding-top: 1rem
}

.blog-para {
    color: #8383e6;
    padding-top: 1rem;
}

.blog-button {
    color: #8383e6;
    padding-top: 2rem;
    font-weight: 600;
}

.blog-button:hover {
    color: #fb5607;
}

.odd-blog-row {
    --bs-gutter-x: 0rem;
}

.even-blog-row {
    --bs-gutter-x: 0rem;
}

.load-more {
    text-align: center;
    padding: 6rem;
    font-weight: 600;
    font-size: 1.5rem
}

.load-btn {
    color: #fb5607;
}

.blog-img {
    max-width: 100%;
}

.blog-subscription {
    padding-bottom: 9rem;
    padding-top: 1rem;
}

.subscribe-row {
    display: flex;
}

.subscribe-text {
    padding-top: 1.5rem;
    font-size: 7rem;
    letter-spacing: 6px;
    color: #8383e6;
    display: inline-block;
    font-weight: 700;
}

.subscribe-dot {
    color: #fb5607;
}

.subscribe-heading {
    font-size: 2.21rem;
    color: #fb5607;
    font-weight: 600;
}

.subscribe-para {
    color: #8383e6;
    max-width: 70%;
    font-size: 1.28rem;
    margin-bottom: 0px;

}

.subscriptionForm {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
    position: relative;
}

.subscriptionForm .form-group {
    min-width: 60%;
}

.subscribe-email {
    padding-top: 1rem;
}

.email-input {
    background-color: #ebf4fb;
    border: 1.5px solid #b8c5d1;
    border-radius: 10px;
    padding: 0.5rem;
    padding-right: 6rem;
}

.submit-btn {
    margin-left: 0.5rem;
    border-radius: 10px;
    border: 12px;
    padding: 5px 24px;
    background-color: #fd7e14;
}

.submit-link {
    color: white;
}

/*--------------------------------------------------------------
# Single Blog 
--------------------------------------------------------------*/

.single-blog {
    padding: 0px;
    padding-bottom: 7rem;
}

.singleblogwrapper {
    margin-top: 4rem;
}

.post-date {
    font-size: 1.25rem;
}

.single-blog-heading {
    font-size: 3.1rem;
    font-weight: 700;
    color: #000;
}

.single-blog-para {
    color: #8383e6;
}

.single-blog-img {
    margin-top: 1rem;
    width: 100%;
    object-fit: cover;
}

.single-blog-para {
    font-size: 1.28rem;
    color: #8383e6;
}

.paras {
    line-height: 1.7rem;
    color: #8383e6;
    padding-top: 2rem;
}

.blog-paras {
    padding-top: 2rem;
    font-size: 1.28rem;
    line-height: 180%;
    letter-spacing: 1px;
}

.sub-para {
    padding-top: 1rem;
}

.more-to-read {
    padding-bottom: 3rem;
    padding-top: 0rem;
}

.more-heading {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fb5607;
}

.recent-blogs-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.recent-blog-box {
    margin-left: 0rem;
    max-width: 33.3%;
    margin-right: 5.3rem;
}

.recent-blog-box:last-child {
    margin-right: 0px;
}

.more-posts {
    display: flex;
    align-items: center;
}

.recent-textwrapper {
    padding: 1rem 0px;
}

.recent-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.post-img {
    max-width: 100%;
}

.navbar-animate {
    animation: slideLeft 0.5s linear 0s;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

.slide-controls {
    position: relative;
    display: flex;
    height: 50px;
    width: 100%;
    overflow: hidden;
    margin: 30px 0 10px 0;
    justify-content: space-between;
    border: 1px solid lightgrey;
    border-radius: 15px;
}

.slide-controls .slide {
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.6s ease;
}

.slide-controls label.signup {
    color: #000;
}

.slide-controls .slider-tab {
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    z-index: 0;
    border-radius: 15px;
    background: #49beaa;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

input[type="radio"] {

}

#signup:checked~.slider-tab {
    left: 50%;
}

#signup:checked~label.signup {
    color: #fff;
    cursor: default;
    user-select: none;
}

#login:checked~label.signup,
#signup:checked~label.login {
    color: #fff;
}

#login:checked~label.login {
    cursor: default;
    user-select: none;
}

.form-container {
    width: 100%;
    overflow: hidden;
}

.form-container .form-inner {
    display: flex;
    width: 220%;
}

.form-container .form-inner form {
    width: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-inner form .field {
    height: 50px;
    width: 100%;
    margin-top: 20px;
margin-bottom:2.5rem;
}

.form-inner form .field input {
    height: 100%;
    width: 100%;
    outline: none;
    padding-left: 15px;
    border-radius: 0px;
    border: 1px solid lightgrey;
    border-bottom-width: 2px;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
}

.form-inner form .field input:focus {
    border-color: #8282e4;
    /* box-shadow: inset 0 0 3px #fb6aae; */
}

.form-inner form .field input::placeholder {
    color: #999;
    transition: all 0.3s ease;
}
.form-inner form .field input.error{
color: red;
}

form .field input:focus::placeholder {
    color: #999;
}

.form-inner form .pass-link {
    margin: 10px;
    margin-left: 0;
}

.form-inner form .signup-link {
    text-align: center;
    margin-top: 30px;
}

.form-inner form .pass-link a,
.form-inner form .signup-link a {
    color: #daf611;
    text-decoration: none;
}

.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover {
    text-decoration: underline;
}

form .btn {
    height: 50px;
    width: auto;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}
form .btn input[type="submit"] {
    height: 100%;
    width: 100%;
    z-index: 1;
    position: relative;
    background: none;
    border: none;
    color: #fff;
    padding-left: 0;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}
label.form-check-label.tncs-txt.remember-txt {
    color: #daf611;
    display: flex;
    margin-top: 1rem;
}

label.form-check-label>span {
    margin-left: auto;
}

.error {
    color: #dcf80e;
    white-space: nowrap;
    font-size: 13px;
    position: absolute;
}


/////////////////////////////////////////////////


.auth-form{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

.auth-form .row {
    height: 60px;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.auth-form .row:last-child {
    border-bottom: none
}

.auth-form .row.name,.auth-form .row.email,.auth-form .row.password {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    color: #fff;
}

.auth-form .row.name input,.auth-form .row.email input,.auth-form .row.password input {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 0 none;
    font-size: 16px;
    line-height: 15px;
    padding: 20px 8px;
    margin-right: 2px;
    color: #fff; 
    background-color: #8282e4;
}

.auth-form .row.submit {
    border-bottom: none;
    padding: 0 15px;
}

.auth-form .row.submit input.button {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 11px 10px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    margin: 18px auto;
    font-weight: bold
}

.auth-form .row .icon {
    display: inline-block;
    margin: 0 11px 0 16px;
}

.auth-form .row .icon.person {
    width: 20px;
    height: 22px;
    margin-top: 19px
}

.auth-form .row .icon.email {
    width: 21px;
    height: 18px;
    margin-top: 20px
}

.auth-form .row .icon.padlock {
    width: 21px;
    height: 25px;
    margin-top: 16px
}

.link.forgot-password,.link.signup,.link.login {
    display: block;
    text-align: center;
}

.link.forgot-password a,.link.signup a,.link.login a {
    color: #1b7edf;
    text-decoration: none
}

.link.forgot-password {
    font-size: 14px
}

.link.signup,.link.login {
    margin-top: 10px;
    padding: 10px;
    font-size: 15px;
    color: #666
}

@media screen and (max-height: 480px) {
    .card {
        margin-top:20px
    }

    .auth-form .row {
        height: 50px;
    }

    .auth-form .row.name input,.auth-form .row.email input,.auth-form .row.password input {
        padding: 15px 5px
    }

    .auth-form .row .icon.person {
        margin-top: 14px
    }

    .auth-form .row .icon.email {
        margin-top: 15px
    }

    .auth-form .row .icon.padlock {
        margin-top: 11px
    }
}

html[dir=rtl] .icon {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

html[dir=rtl] .external-auth .icon,html[dir=rtl] .icon.tick {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none
}

.logo {
    margin: 15px 15px 15px 15px;
}



@media screen and (max-width: 500px) {
    .logo {
        margin-top:15px
    }
}

@media screen and (max-height: 480px) {
    .logo {
        margin-top:10px
    }
}

.button {
    cursor: pointer;
    -webkit-transition: 0.1s -webkit-transform ease-in-out;
    -moz-transition: 0.1s -moz-transform ease-in-out;
    -o-transition: 0.1s -o-transform ease-in-out;
    -ms-transition: 0.1s -ms-transform ease-in-out;
    transition: 0.1s transform ease-in-out;
}

.button:active {
    -webkit-transform: scale(.99);
    -moz-transform: scale(.99);
    -o-transform: scale(.99);
    -ms-transform: scale(.99);
    transform: scale(.99)
}
::placeholder{
    color:#fff;
}
.button.blue {
    border: 0 none;
    background-color:#fb5607;
    color: #fff;
}

.button.gray {
    border: 0 none;
    background-color: #e6e6e6;
    color: #777;
}

.button.gray:hover {
    background-color: #e9e9e9
}

.buttons-external {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    margin-top: 20px
}

.external-auth {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
    margin-right: 10px;
    width: 50%;
}

.external-auth:last-child {
    margin-right: 0
}

.external-auth .button {
    display: block;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 1px 2px rgba(120,120,120,0.05);
    box-shadow: 0 1px 2px rgba(120,120,120,0.05);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none;
    color: #444;
    text-align: center;
    font-weight: bold
}

.external-auth.facebook .button {
    color: #47629c
}

.external-auth.google .button {
    color: #db4c3f
}

.external-auth.microsoft .button {
    color: #0072c6
}

.external-auth.twitter .button {
    color: #2085d2
}

.external-auth.weibo .button {
    color: #e6162d
}

.external-auth.qq .button {
    color: #221f25
}

.external-auth .button .icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    float: left;
    margin-top: -6px;
    margin-left: -4px
}

html[dir="rtl"] .external-auth {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .external-auth:last-child {
    margin-left: 0
}

.auth-form.forgot-password {
    background: #8282e4;
    padding: 0rem 2rem;
    border-top: 8px solid #dcf80e;
    padding-bottom: 2rem;
}

.auth-form.forgot-password-success {
    height: initial;
    min-height: 100px
}

.auth-form.forgot-password .row.labels,.auth-form.forgot-password-success .row.labels {
    height: initial;
    min-height: 75px;
    padding: 0 20px;
}

.auth-form.forgot-password .row.labels h2,.auth-form.forgot-password-success .row.labels h2 {
    text-align: center;
    font-size: 18px;
    margin: 20px auto 10px auto;
    color: #fff;
}

.auth-form.forgot-password .row.labels h3,.auth-form.forgot-password-success .row.labels h3 {
    color: #fff;
    font-size: 13px;
    text-align: center;
    margin: 0 auto;
    font-weight: normal;
    margin-bottom: 20px
}

a.btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 0px;
    transition: 0.5s;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    margin-top: 2rem;
}

a.btn-get-started:hover{
color: #fff;
background:#7c7ce0;
}

.textblink { 
    position: relative;
    display: inline-block;
    color: white;
  }
  
  .textblink::after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: -22px;
    display: inline-block;
    background-color: #fff;
    vertical-align: middle;
    width: 20px;
    height: 7px;
    -webkit-animation: blink 1s step-end infinite;
    animation: blink 1s step-end infinite;
  }
  
  @-webkit-keyframes blink {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }
  
  @keyframes blink {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }
.animate_wrdwrapp {
    padding: 2rem 0px;
    position: relative;
}
.wordanimate {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    text-align: end;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
}
.form-control.error,.form-select.error,.form-check-input.error{border-color: red; color: red;}
.form-select.error{color: red;}
.modal-backdrop:nth-child(2n){
opacity: 0.5;
}


@media screen and (max-height: 480px) {
    .auth-form.login {
        height:200px
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.subscriptionForm .error {
    color: red;
}

.subscriptionForm #email-error {
   margin-left: 1rem;
}