/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
	overflow: auto;
	overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    color: #313030;
}

a {
    color: #ff5821;
}

a:hover {
    color: #ff7e54;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

::-webkit-input-placeholder {
    /* Edge */
    color: rgb(255, 255, 255);
    background: none;
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgb(255, 255, 255);
    background: none;
}

 ::placeholder {
    color: rgb(255, 255, 255);
    background: none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 15px;
    bottom: 15px;
    background: #ff5821;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
    padding: 24px;
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 10px;
    left: 11px;
}

.back-to-top:hover {
    color: #fff;
    background: #ff774a;
    transition: background 0.2s ease-in-out;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    /*height: 70px;*/
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 10px 0;
}

#header.header-scrolled {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 8px 0;
    line-height: 1;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #635551;
    text-decoration: none;
}

#header .logo img {
    padding: 4px 0;
    margin: 0;
    max-height: 70px;
    height: 100%;
}

#header.header-scrolled .logo img {
    max-height: 80px;
}

#main {
    z-index: 3;
}

#header.fixed-top.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 9px 0;
    transition: 1s all;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

#header .nav-menu a.btn-get-started {
    color: #212529;
    border-radius: 8px;
    padding: 10px 26px 10px 26px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    display: inline-block;
    border: 2px solid rgb(143 49 27);
    margin: 2px 0;
    margin: auto;
    position: relative;
    width: 110px;
}

#header.header-scrolled .nav-menu a.btn-get-started:hover {
    color: #fff;
    /*background: rgb(143 49 27) !important;*/
    background: rgb(255 118 87) !important;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    /* float: left; */
    display: inline-block;
    width: auto;
}

#header.header-scrolled .nav-menu a {
    color: rgb(0 0 0);
}

.nav-menu a {
    display: block;
    position: relative;
    color: rgb(0 0 0);
    padding: 12px 45px 12px 0;
    transition: 0.3s;
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    float: left;
    text-align: center;
    font-weight: 500;
}

#header.header-scrolled .nav-menu a:hover,
#header.header-scrolled .nav-menu .active>a, 
#header.header-scrolled .nav-menu li:hover>a {
    color: /*#212529*/rgb(144 37 12);
    text-decoration: none;
}

#header .nav-menu a:hover,
#header .nav-menu .active>a,
#header .nav-menu li:hover>a {
    color: /*#212529*/rgb(144 37 12);
    text-decoration: none;
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 20px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    background: #ff161f;
    padding: 8px 10px;
    border-radius: 6px;
    z-index: 99999;
}

.mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
    max-height: 220px;
    /* height: 30vh; */
    /*height: 100%;*/
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #473d3a;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #ff5821;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(43, 37, 35, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    background: url("../img/hero1.png") no-repeat top right;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    position: relative;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1105px;
    z-index: 0;
}

#hero .container {
    z-index: 0;
}

#hero .container .contentheromain {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    margin-right: -15px;
    margin-left: -15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#hero .hero-img {
    position: relative;
    z-index: 0;
    top: 0rem;
}

#hero .maindeals {
    position: relative;
    margin: 0;
    padding: 0;
    justify-content: end;
    display: flex;
    right: auto;
    align-items: center;
}

#hero .maindeals img.mlady {
    float: right;
    position: relative;
    top: auto;
    height: 300px;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: bold;
    line-height: 70px;
    color: #4B4B4B;
}

#hero h1 span {
    color: #ff161f;
}

#hero p {
    font-size: 16px;
    line-height: 1.9;
    margin: 10px 0;
    padding: 15px 0 25px;
}

#hero h2 {
    color: #FC9446;
    font-size: 22px;
    text-align: center;
    margin: 1.7rem auto 2.5rem;
}

#hero .get-started-icon {
    font-size: 24px;
    background: #ff5821;
    padding: 14px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    z-index: 5;
    box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.1);
}

#hero .maintext {
    text-align: left;
}

#hero .btn-get-started,
.btn-r {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-left: 0px;
    padding: 16px 25px 16px 25px;
    color: #212529;
    border-radius: 12px;
    position: relative;
    z-index: 4;
    border: solid 1px rgb(255 122 92);
    cursor: pointer;
}

#hero .btn-get-started:hover {
    background: rgb(255 122 92);
    color: #ffff;
}


/**** BTN No. 14 ****/

.btn-14 {
    /*border: 2px solid rgb(255 122 92);*/
    z-index: 1;
}

.btn-14:after,
#header .nav-menu a.get-started-btn.btn-14:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background: rgb(255 122 92);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-14:hover:after,
#header .nav-menu a.get-started-btn.btn-14:hover:after {
    left: 0;
    width: 100%;
}

.btn-14:active,
#header .nav-menu a.get-started-btn.btn-14:active {
    top: 2px;
}

#header .nav-menu a.get-started-btn.btn-14:hover:after {
    background: rgb(143 49 27)!important;
    border-color: rgb(143 49 27);
}

#hero .ladyform {
    background: url("../img/finalformbg.png") center center no-repeat;
    position: relative;
    float: left;
    margin: 0;
    display: flex;
    height: 800px;
    justify-content: center;
    align-content: center;
    background-size: contain;
}

#hero .formsmainphpmain {
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding-left: 14px;
}

#hero .php-email-form {
    position: relative;
    width: 100%;
    top: 2.5rem;
    /*left: -.25rem;*/
}

#hero .php-email-form .validate {
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 14px;
}

#hero .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#hero .php-email-form .error-message br+br {
    margin-top: 25px;
}

#hero .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#hero .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#hero .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;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#hero .php-email-form input,
#hero .php-email-form textarea {
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    transition: .4s all;
}

#hero .php-email-form input:focus,
#hero .php-email-form textarea:focus {
    border-color: #eb6f53;
    transition: .4s all;
}


/*#hero .php-email-form input {
    padding: 10px 10px;
    height: 48px;
}*/

#hero .php-email-form textarea {
    padding: 12px 15px;
}

#hero .php-email-form button[type="submit"],
.about .manaboutbtn {
    background: /*#212529*/
    #a33923;
    border: 0;
    padding: 14px 36px;
    color: #fff;
    transition: 0.4s;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0px 13px 20px #eba492;
}

#hero .php-email-form button[type="submit"]:hover,
.about .manaboutbtn:hover {
    background: rgb(255 126 97);
    box-shadow: none;
    transition: .5s all;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Sections General  transform: rotateX(
45deg) rotateY(
351deg) rotateZ(
316deg);
    transform-origin: 165% -800% -79px;
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
    float: left;
    clear: both;
    position: relative;
    width: 100%;
}

.section-bg {
    background-color: #fff9f7;
}

.section-title p {
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    width: 100%;
    margin-top: 4rem;
}

.section-title h2 {
    font-size: 1.7rem;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    /* background: #e7f1fd; */
    color: #eb6f53;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    transform: scale3d(1.5, 1.5, 1.5);
    transform: rotateX(180deg) scale(1.0, -1);
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    margin: 0px 0 0;
    padding: 4rem 0 12rem;
    background: url("../img/aboutbg.png") no-repeat;
    background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-position: center center;
    width: 100%;
    height: 101vh;
    /*background: rgb(250 250 250 / 82%);*/
}

.about .aboutmaintak {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6.1rem;
    margin-bottom: 2rem;
    position: relative;
    top: 40px;
}

.about .content h3 {
    font-weight: 400;
    font-size: 33px;
    font-family: "Poppins", sans-serif;
}

.about .content p {
    line-height: 1.9rem;
    font-size: 16px;
    color: #000;
    margin: 1rem 0;
    padding: 10px 0 0 0;
    text-align: justify;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content a {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about.connected {
    margin: 0px 0 0;
    padding: 8rem 0;
    /*background: url("../img/aboutbg.png") no-repeat; */
    background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    width: 100%;
    height: 101vh;
    transform: rotateX(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about.connected .aboutmaintak {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateX(180deg);
    position: relative;
    top: 0px;
    margin-top: -8rem;
    margin-bottom: 0rem;
}

.about.connected .aboutmaintak .maincardreal {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.about.connected .aboutmaintak .maincard {
    display: inline-flex;
    flex-direction: column;
}

.about.connected .aboutmaintak .maincard .card,
.about.connected .aboutmaintak .maincard .card.one {
    width: 250px;
    height: 250px;
    background: #fff;
    border-radius: 30px;
    position: relative;
    margin: 11px 5px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.about.connected .aboutmaintak .maincard .card img,
.about.connected .aboutmaintak .card.two img {
    text-align: center;
    margin: 12px auto;
}

.about.connected .aboutmaintak .maincard .card h2,
.about.connected .aboutmaintak .card.two h2 {
    text-align: center;
    font-size: 16px;
}

.about.connected .aboutmaintak .card.two {
    left: 0;
}

.about.connected .aboutmaintak .card.two {
    left: 0;
    width: 250px;
    height: 250px;
    flex-direction: column;
    top: 100px;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.about.connected .content h2 {
    font-weight: 600;
    font-size: 27px;
    font-family: "Poppins", sans-serif;
    color: #212529;
    margin: 20px ​0 10px;
    padding: 15px 0 10px;
}

.about.connected .content h3 {
    font-weight: 500;
    font-size: 22px;
    font-family: "Poppins", sans-serif;
    color: #eb6f53;
    padding: 0px 0 10px;
    /* word-break: break-all;
    word-spacing: -2px; */
    line-height: 1.3;
}

.about .content p {
    line-height: 1.9rem;
    font-size: 16px;
    color: #000;
    margin: 1rem 0;
    padding: 0px 0 10px 0;
}

.about.connected .content p:last-child {
    margin-bottom: 0;
}

.mainbottomimg {
    width: 100%;
    float: right;
    background: url("../img/vec.png") no-repeat bottom right;
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    height: 500px;
    z-index: 9999;
}

.circular-sb {
    width: 250px;
    border: 5px solid #00bfb6;
    padding: 80px 0px;
    margin: 30px auto;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    font-family: arial;
    position: relative;
    color: #00bfb6;
}


/*right circle shape speech bubble*/

.circle1 {
    border: 5px solid #00bfb6;
    position: absolute;
    width: 25px;
    padding: 20px;
    border-radius: 50%;
    right: -15px;
    bottom: 23px;
}

.circle1:before {
    content: "";
    position: absolute;
    width: 25px;
    padding: 20px;
    border-radius: 50%;
    right: 0px;
    bottom: 0px;
    background: #fff;
}

.circle2 {
    border: 5px solid #00bfb6;
    position: absolute;
    width: 5px;
    padding: 10px 15px;
    border-radius: 50%;
    right: -60px;
    bottom: 5px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services.about.connected {
    margin: 0 0;
    padding: 25px 0;
    /* background: none; */
    height: 100%;
}

.services.about .row {
    flex-direction: row-reverse;
    margin-top: -4rem;
    margin-bottom: 0;
}

.services.section-bg {
    width: 100%;
    background: #fff;
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}

.services .deals {
    background: url("../img/deals1.jpg") no-repeat;
    background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-position: center center;
    border-radius: 20px;
    box-shadow: 0 20px 40px 0 rgb(255 118 87 / 70%);
    -webkit-box-shadow: 0 20px 40px 0 rgb(255 118 87 / 70%);
    -moz-box-shadow: 0 20px 40px 0 rgb(255 118 87 / 70%);
    color: #fff;
}

.services .deals .mainicon {
    margin: 3.0rem 0 1.5rem 1.5rem;
}

.services .deals .mainicon h1 {
    font-size: 3.3rem;
    margin: 1rem 0;
    padding: 1rem 0;
    line-height: 3.9rem;
}

.services .deals .mainicon h1 span {
    color: #ff161f;
}

.services .deals .mainicon p {
    font-size: 1.5rem;
    margin: 1.7rem 0 2.4rem;
    width: 50%
}

#services .btn-get-started.btn-r {
    background: #fff;
    border-color: #fff;
}

.services.take {
    margin: 2rem 0 3.5rem;
}

.services.take .deals .mainicon p.delstext {
    font-size: 4rem;
    margin: 2rem 0;
}

.services .deals .mainicon .reedmoremain .btn-get-started.btn-r {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    margin-left: 0px;
    padding: 16px 25px 16px 25px;
    color: #fff;
    border-radius: 9px;
    position: relative;
    z-index: 4;
    border: solid 1px #fff;
    position: relative;
    z-index: 99999;
}

.services .deals .mainicon .reedmoremain .btn-get-started.btn-r:hover {
    background: #ff161f;
    opacity: 1.0;
    position: relative;
    z-index: 99999;
}

.trasformgif {
    width: 453px;
    height: 313px;
    border: 1px #000 solid;
    background-color: rgba(255, 245, 0, 0.5);
    line-height: 0;
    text-align: center;
    transform: rotateY( 285deg) translateZ(3em);
}


/* .gif {
    position: absolute;
    perspective: 900px;
    -webkit-perspective: 900px;
    transform-style: preserve-3d;
    transform: rotateX(341deg) rotateY(-90deg);
    top: 1%;
    right: 0;
} */

.gif {
    position: absolute;
    perspective: 1000px;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    transform: rotateX(0deg) rotateY(22deg);
    top: 1%;
    right: 0;
}

.trasformgif {
    width: 75%;
    height: auto;
    border: 1px #000 solid;
    background-color: rgb(255 118 87 / 56%);
    line-height: 200px;
    text-align: center;
    transform: rotateY( 124deg) translateZ(22em);
}

.trasformgif .title a {
    transform: rotate(0deg) scale(-1, 1);
}

.trasformgif .title a {
    color: #fff;
    padding: 10px;
    font-size: 2.1rem;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    color: #000;
    font-size: 14px;
    background: #f2f2f2;
    float: left;
    clear: both;
    width: 100%;
}

#footer .footer-top {
    padding: 60px 0 40px 0;
    background: url("../img/footer.jpg") no-repeat;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin: 15px 0;
    padding-top: 20px;
}

#footer .footer-top h4 {
    font-size: 17px;
    font-weight: bold;
    color: rgb(255 118 87);
    position: relative;
    padding-bottom: 30px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    display: flex;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0 0 0 40px;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 4px;
    color: rgb(255 118 87);
    font-size: 13px;
    line-height: 1;
}

#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: #ffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: rgb(233 108 79);
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter p a {
    color: rgb(255, 255, 255);
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: rgb(255 118 87);
    position: relative;
    padding-bottom: 30px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #ffe2d9;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px 0 20px;
    background: rgb(255 118 87);
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover,
#footer .footer-newsletter form input[type="submit"]:active,
#footer .footer-newsletter form input[type="submit"].active,
#footer .footer-newsletter form input[type="submit"]:focus {
    background: rgb(0 0 0);
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #313030;
}

#footer .social-links {
    margin-top: 15px;
    padding-top: 20px;
}

#footer .social-links a {
    font-size: 25px;
    display: inline-flex;
    color: rgb(255 118 87);
    line-height: 1;
    margin-right: 16px;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

#footer .social-links a:hover,
#footer .social-links a:focus,
#footer .social-links a:active,
#footer .social-links a.active {
    background: #212529;
    color: #fff;
    text-decoration: none;
    box-shadow: 1px 2px 7px 1px rgb(255 118 87 / 73%);
}

#footer .copyrightmain {
    padding: 1.5rem 0 1.5rem 0;
    color: #666666;
    font-size: 1rem;
}

#footer .footer-newsletter form input:focus-visible,
#footer .footer-newsletter form:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}


/*============================================== Login Page or Other page Css =============================================*/


/*---------------------------------------------------- # General --------------------------------------------------------*/

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body.login {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background: url("../img/Hero_bg1.jpg") top center #f9eeee;
    background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

body.login .mainbg {
	/*background: url("../img/Hero_bg1.jpg") top center #f9eeee no-repeat;*/
	/* display: flex; */
	/* height: 100vh; */
	background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	/* width: 100vw; */
	flex-direction: column;
	/* overflow-x: hidden; */
}

img.img-hover-zoom--point-zoom {
    transform-origin: 65% 75%;
    transition: transform 1s, filter .3s ease-out;
}

img.img-hover-zoom--point-zoom:hover {
    transform: scale(1.14);
}

#mainragistration {
    background: url("../img/left-img.jpg") no-repeat;
    width: 100%;
    height: 100vh;
}

.card-registration .select-input.form-control[readonly]:not([disabled]) {
    font-size: 1rem;
    line-height: 2.15;
    padding-left: .75em;
    padding-right: .75em;
}

.card-registration .select-arrow {
    top: 13px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#headerlogin {
    transition: all 0.5s;
    z-index: 9999;
    position: relative;
    padding: 15px 0;
    background: #fff;
}

#headerlogin.header-scrolled,
#headerlogin.header-inner-pages {
    background: rgba(40, 58, 90, 0.9);
}

#headerlogin .logo {
    margin-left: 2rem;
    margin-right: 2rem;
}

#headerlogin .logo a {
    color: #fff;
}

#headerlogin .logo img {
    max-height: 60px;
}


/*#headerlogin .logo img {
  max-height: 40px;
}*/

#herologin {
    width: 100%;
    /* background: url("../img/Hero_bg1.jpg") top center; */
    background-size: cover;
    position: relative;
    /* margin-bottom: -90px; */
    padding: 0;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /*top: 55px;*/
    margin: 0;
    padding: 0;
}

#herologin .mainhero {
    margin-left: 4rem;
    margin-right: 4rem;
    height: 100vh;
    top: 1rem;
}

#herologin div.shape {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: /*#cf606d*/
    #ff161f;
    /*background-image: linear-gradient(19deg, #000000 0%, #cf606d 100%);*/
    background-image: /*linear-gradient(19deg, #000000 0%, rgb(225 97 68) 100%)*/
    linear-gradient(19deg, #000000a6 0%, rgb(247 126 99 / 48%) 100%);
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    animation: morphing 10s infinite;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

#herologin .logo img {
    padding: 4px 0;
    margin: 0;
    max-height: 80px;
    height: 100%;
}

div.shape:hover {
    animation-play-state: paused;
}


/*div h1 {
  color: #fff;
  font-family: Helvetica Neue, Helvetica, Verdana, sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: auto;
}*/

@-moz-keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    }
    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    }
    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

@-webkit-keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    }
    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    }
    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

@-o-keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    }
    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    }
    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
    }
    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
    }
    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
    }
}

#herologin .slderleftman {
    text-align: left;
}

#herologin .slderleftman.maincold h2 {
    margin: 0;
    font-size: inherit;
    line-height: 0;
}

#herologin h2 {
    color: #ff161f;
    margin-bottom: 15px;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
}

#herologin h2 a img:befor {
    content: "";
    width: 100%;
    height: 400px;
    background: #000;
    position: absolute;
    top: 0px;
    right: 0px;
}

#herologin h3 {
    width: 100%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 5px auto 10px auto;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
}

#herologin h3 span {
    color: #cf606d;
}

#herologin .btnman {
    display: flex;
}
.reedmoremain {
    display: block;
}
.services .deals .mainicon .reedmoremain .btn-get-started.btn-r {
	text-align: center
}
@media (min-width: 1024px) {
    #herologin .bd-example .mainformtext {
        /* width: 50%; */
        font-size: 2rem;
        color: #000;
        line-height: 60px;
        margin: 0px 0 5px;
        padding: 0px 0 15px 0;
    }
}

.icofont-simple-right:before {
    content: "\f105";
}

.icofont-simple-left:before {
    content: "\f104";
}

[class*=" icofont-"],
[class^=icofont-] {
    font-family: 'FontAwesome'!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    line-height: 1;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.form-check-input {
    position: absolute;
    margin-top: .0rem;
    margin-left: -2.25rem;
    width: 25px;
    height: 25px;
}

span.particletext.bubbles {
    font-size: 3.1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    color: #ff161f;
    font-weight: 800;
}

.bd-example {
    position: relative;
    padding: 1.5rem 1.5rem;
    margin: 1rem 0px 0;
    border: solid #f16545;
    ;
    border-width: .2rem 0 0;
    border: solid 6px #f16545;
    ;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgb(207 96 109 / 33%), 0 12px 25px rgb(207 96 109 / 18%);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bd-example .mainformtext {
    padding: 10px 0 20px 0px;
    margin: inherit;
    margin-bottom: 1rem;
}

.bd-example .mainemial {
    padding-bottom: 15px;
    width: 450px;
    padding: 0 20px 15px 0;
    margin: 0;
    font-size: 20px;
}

form {
    width: 100%;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
    font-size: 16px;
}

.btn-primary {
    color: #fff;
    background-color: rgb(0 0 0);
    border-color: rgb(0 0 0);
    padding: 14px 12px;
    border-radius: 8px;
    margin-top: 20px;
    margin-left: 0px;
    width: 170px;
    float: left;
    margin-bottom: 12px;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(234 207 210 / 64%);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #92333e;
    border-color: #80212c;
}

.bd-example .form-check {
    display: inline-flex;
}

.bd-example .form-check.firstcheck {
    padding: 10px;
    /* float: left; */
    display: flex;
    margin: 5px 37px;
    padding-left: 0;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: 0.5rem .75rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1rem;;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #707070;
    border-radius: .5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

section.ragistrationfom {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../img/ragistorform.svg") no-repeat;
    width: 100%;
    background-size: cover;
}

section.ragistrationfom .container.mainbgrgistration {
    background: #fff;
    border-radius: 0.9rem;
    opacity: 1.0;
    content: "";
    position: relative;
}

section.ragistrationfom .mb-3,
section.ragistrationfom .my-3 {
    margin-bottom: 1.3rem!important;
}

section.ragistrationfom .mainrgistorrow {
    margin-left: -16px;
    margin-right: -16px;
}

h3.signtx {
    color: #ff161f;
}

button.btn.btn-primary.col-8 {
    margin: 30px 10px 10px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #ff161f;
    border-color: #ff161f;
}

.form-outline {
    display: flex;
    align-items: center;
}

.main-box-ragistration {
    border: 1px solid #707070;
    border-radius: 1rem;
}

.main-form-ragistration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
}

section.ragistrationfom .main-form-ragistration button.btn-warning {
    background: #ff161f;
    border: none;
    color: #fff;
    padding: .7rem 1.2rem;
    border-radius: .6rem;
    transition: all .5s;
}

section.ragistrationfom:before {
    background: rgb(0 0 0 / 40%);
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
}

section.ragistrationfom .main-form-ragistration button.btn-warning:not(:disabled):not(.disabled).active,
section.ragistrationfom .main-form-ragistration button.btn-warning:not(:disabled):not(.disabled):active,
.show>section.ragistrationfom .main-form-ragistration button.btn-warning.dropdown-toggle {
    background: rgb(214 79 49);
    border: none;
    transition: all .5s;
}

section.ragistrationfom .main-form-ragistration button.btn-warning:not(:disabled):not(.disabled).active:focus,
section.ragistrationfom .main-form-ragistration button.btn-warning:not(:disabled):not(.disabled):active:focus,
.show>section.ragistrationfom .main-form-ragistration button.btn-warning.dropdown-toggle:focus,
section.ragistrationfom .main-form-ragistration button.btn-warning:hover {
    box-shadow: none;
    background: rgb(214 79 49);
    border: none;
    transition: all .5s;
}

section.ragistrationfom .main-form-ragistration button.btn-warning.focus,
.btn-warning:focus {
    box-shadow: none;
    transition: all .5s;
}

.ragistorimg img {
    border-radius: 0.9rem 0 0 .9rem;
}

.form-outline div {
    padding: 0;
}


/*.cardr .card-body .row div, .form-label {
	padding: 0;
}*/

.bootstrap-select.form-control {
    border: 1px solid #000;
    padding: 2px !important;
}

.dropdown.bootstrap-select.select.form-control button.btn-light {
    color: #212529;
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    outline: none;
}

.form-control:focus,
.form-select:focus {
    color: #000;
    background-color: #fff;
    border-color: rgb(255 118 87);
    outline: 0;
    box-shadow: none;
}

.dropdown.bootstrap-select.select.form-control button.btn-light:not(:disabled):not(.disabled).active:focus,
.dropdown.bootstrap-select.select.form-control button.btn-light:not(:disabled):not(.disabled):active:focus,
.show>.dropdown.bootstrap-select.select.form-control button.btn-light.dropdown-toggle:focus {
    box-shadow: none;
    border: none;
    background: none;
    outline: none !important;
}

.dropdown.bootstrap-select.select.form-control button.btn-light.focus,
.dropdown.bootstrap-select.select.form-control button.btn-light:focus {
    color: #212529;
    background-color: #fff;
    border: none;
    box-shadow: none;
    outline: none !important;
}

img.img-fluid.mainsidebg {
    width: 100%;
    height: 850px;
    background-size: cover;
    padding: 0;
    margin-left: -17px;
    position: relative;
    z-index: 0;
}

section.ragistrationfom .welcometx {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    color: #fff;
    height: 100%;
    height: 400px;
    width: 100%;
    margin: auto;
}

section.ragistrationfom p {
    width: 440px;
    /* text-align: center; */
    /* margin: 0 auto; */
}

section.ragistrationfom h3,
section.ragistrationfom p {
    margin-bottom: 1.5rem;
    text-align: center;
}


/*.rbody {
	padding:1rem 0;
}*/

label.form-label.col-sm-4 {
    margin: 0;
    font-size: 1rem;
    padding: 0;
}

.textcontainer {
    /*padding: 40px 0;*/
    /*text-align: center;*/
}

.particletext {
    text-align: center;
    /*font-size: 48px;*/
    position: relative;
    color: rgb(0 0 0);
}

.particletext.bubbles>.particle {
    opacity: 0;
    position: absolute;
    background-color: /*rgba(33, 150, 243, 0.5)*/
    rgb(231 97 67);
    -webkit-animation: bubbles 3s ease-in infinite;
    animation: bubbles 3s ease-in infinite;
    border-radius: 100%;
}

.particletext.hearts>.particle {
    opacity: 0;
    position: absolute;
    background: url("../img/coin-01.png");
    -webkit-animation: hearts 3s ease-in infinite;
    animation: hearts 3s ease-in infinite;
}

.particletext.hearts>.particle:before,
body .particletext.hearts>.particle:after {
    position: absolute;
    content: "";
    /*border-radius: 100px;*/
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /*background-color: #cc2a5d;*/
    /*font-family:'FontAwesome';*/
    background: url("../img/coin-01.png");
}

.fa-gift:before {
    content: "\f06b"
}

.particletext.hearts>.particle:before {
    transform: translateX(-50%);
}

.particletext.hearts>.particle:after {
    transform: translateY(-50%);
}

@-webkit-keyframes bubbles {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translate(0, -20%);
    }
    100% {
        opacity: 0;
        transform: translate(0, -1000%);
    }
}

@keyframes bubbles {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
        transform: translate(0, -20%);
    }
    100% {
        opacity: 0;
        transform: translate(0, -1000%);
    }
}

@-webkit-keyframes hearts {
    0% {
        opacity: 0;
        transform: translate(0, 0%) rotate(45deg);
    }
    20% {
        opacity: 0.8;
        transform: translate(0, -20%) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: translate(0, -1000%) rotate(45deg);
    }
}

@keyframes hearts {
    0% {
        opacity: 0;
        transform: translate(0, 0%) rotate(45deg);
    }
    20% {
        opacity: 0.8;
        transform: translate(0, -20%) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: translate(0, -1000%) rotate(45deg);
    }
}

.height-100 {
    height: 100vh
}

.mainmobileverification.card.otp {
    width: 400px;
    border: none;
    height: 335px;
    box-shadow: 0px 5px 20px 0px #d2dae3;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.card.otp h6 {
    color: #ff161f;
    font-size: 20px
}

.card.otp.twoemail {
    width: auto;
    border: none;
    height: auto;
    box-shadow: 0px 7px 20px 2px rgb(246 107 76 / 51%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    border-radius: 1rem;
}

.card.otp.twoemail div {
    /*margin-bottom: 1rem;*/
    line-height: 1.7;
}

.card.otp.twoemail div a {
    font-weight: 600;
    line-height: 1.9;
}

.inputs input {
    /*width: 45px;*/
    /*height: 45px*/
    /*width: 540px;
    height: 80px;*/
    padding: 1.9rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

.card-2 {
    background-color: #fff;
    padding: 10px;
    width: 350px;
    height: 100px;
    bottom: -50px;
    left: 20px;
    position: absolute;
    border-radius: 5px
}

.card-2 .content {
    margin-top: 50px
}

.card-2 .content a {
    color: red
}

.form-control:hover {
    box-shadow: none;
    border: 1px solid red
}


/*.validate {
    border-radius: 20px;
    height: 40px;
    background-color: #ff161f;
    border: 1px solid #ff161f;
    width: 140px
}*/

button.validate {
    border-radius: 2.5rem;
    height: 80px;
    background-color: #ff161f;
    border: 1px solid #ff161f;
    width: 300px;
    font-size: 1.7rem;
    font-weight: bold;
}

.card.otp.twoemail .btn-danger:hover {
    color: #fff;
    background-color: #c55036;
    border-color: #c55036;
}

section#privacypolicy {
    /* float: left; */
    /* display: flex; */
    margin: 2rem auto 2rem;
}

section.privacypolicy p {
    clear: both;
    width: 100%;
}

#header.innerpolicy .nav-menu a {
    color: rgb(144 37 12);
    padding: 9px 25px;
    transition: 1s all;
}

#header.innerpolicy {
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}


/*================================== DASHBOARD STYLE ===============================================*/

/*------------------------- 1. Core Css -------------------*/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900|Poppins:100,300,400,500,600,700,800,900');

/* Your default CSS. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: 0;
}

html {
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
    font-family: 'Poppins', sans-serif !important;
}

:root {
    --primary-color: #4336FB;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    background: #fff;
    display: flex;
}

.loader {
    margin: auto;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: relative;
}

.loader:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    animation: popin 1.5s linear infinite 0s;
}

.loader:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    animation: popin 1.5s linear infinite 0.5s;
}

@keyframes popin {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    1% {
        opacity: 0.1;
        transform: scale(0);
    }
    99% {
        opacity: 0;
        transform: scale(2);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#dashboard #header {
    z-index: 997;
    transition: all 0.5s;
    padding: 10px 0;
    background: #FFF;
    width: 100%;
    float: left;
    clear: both;
	box-shadow: 0px 10px 21px 0px rgb(255 118 87 / 18%);
}

#dashboard #header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#dashboard #header .logo h1 a,
#dashboard #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}


#dashboard .sidebar-menu .logo {
    text-align: left;
    height: 100%;
	top: 6px;
    position: relative;
}


/*.sidebar-menu .logo img {
	height: 95px;
	width: 300px;
}*/

#dashboard .sidebar-menu {
    height: auto;
}

#dashboard  .logo a {
    display: inline-block;
    max-width: 100%;
}

#dashboard .logo a img {
    display: flex;
    align-content: center;
    justify-content: center;
    height: 80px;
}


/* Get Startet Button */

#dashboard .get-started-btn {
    margin-left: 25px;
    color: #fff;
    border-radius: 50px;
    padding: 6px 25px 7px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

#dashboard .get-started-btn:hover {
    background: #31a9e1;
    color: #fff;
}

@media (max-width: 768px) {
    #dashboard .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 20px 7px 20px;
    }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

#dashboard .nav-menu,
#dashboard .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
    font-family: 'Poppins', sans-serif;
}

#dashboard .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
	margin-right: 1rem;
}

#dashboard .nav-menu a {
    display: block;
    position: relative;
    color: rgba(0, 0, 0, 1.0);
    padding: 8px 0 12px 0;
    transition: 0.3s;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.16);
    border-radius: .5rem;
    padding: 0.0rem 0.5rem 0.3rem;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    min-height: 55px;
    font-weight: 500;
}

#dashboard .nav-menu a i {
    font-family: 'Line Awesome Free';
    font-size: 1.9rem;
    justify-content: center;
    display: flex;
    align-items: center;
}

#dashboard .nav-menu a i span {
    font-size: 1rem;
    font-weight: 500;
}

#dashboard .nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    background-color: #ff161f;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    height: 4px;
    padding: 0;
    bottom: 0;
    border-radius: 0 0 10px 10px;
}

#dashboard .nav-menu a:hover:before,
#dashboard .nav-menu li:hover>a:before,
#dashboard .nav-menu .active>a:before {
    visibility: visible;
    width: 100%;
}

#dashboard .nav-menu a:hover,
#dashboard .nav-menu .active>a,
#dashboard .nav-menu li:hover>a {
    color: #ff161f;
}

/* Mobile Navigation */

/*.mobile-nav-toggle {
    position: fixed;
    right: 55px;
    top: 30px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}*/
#dashboard .mobile-nav-toggle {
    position: fixed;
    right: 25px;
    top: 32px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    background: #000;
    padding: 7px;
    border-radius: .5rem;
	z-index: 99999;
}

#dashboard .mobile-nav-toggle i {
    color: #ff161f;
}

#dashboard .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    /* opacity: 0;
    visibility: hidden; */
    border-radius: 10px;
    padding: 10px 0;
}

#dashboard .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

#dashboard .mobile-nav a {
    display: block;
    position: relative;
    color: #21413c;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

#dashboard .mobile-nav a:hover,
#dashboard .mobile-nav .active>a,
#dashboard .mobile-nav li:hover>a {
    color: #1bac91;
    text-decoration: none;
}

#dashboard .mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

#dashboard .mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

#dashboard .mobile-nav .drop-down>a {
    padding-right: 35px;
}

#dashboard .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

#dashboard .mobile-nav .drop-down li {
    padding-left: 20px;
}

#dashboard .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(16, 31, 29, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

#dashboard .mobile-nav-active {
    overflow: hidden;
}

#dashboard .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

#dashboard .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}



#dashboard .page-container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    /*padding-left: 280px;*/
    -webkit-transition: padding-left 0.3s ease 0s;
    transition: padding-left 0.3s ease 0s;
}

#dashboard .sbar_collapsed.page-container {
    padding-left: 0;
}

#dashboard .availablesurvey .card.mainsurvey {
    border: none;
    border-radius: 4px;
    padding: .7rem;
    background-color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: rgb(255, 255, 255 .70);
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.16);
    border-radius: 0;
}

#dashboard .card:hover {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.02);
}

#dashboard .card-body {
    padding: 0.5rem 1.6rem 0.5rem;
}

#dashboard .h-full {
    height: 100%;
}

#dashboard .main-content {
    width: 100%;
    background: #F3F8FB;
    float: left;
    clear: both;
    position: absolute;
    /*height: 100vh; */
    top: 8%;
    /*min-height: 100% !important;*/
    z-index: 0;
}

#dashboard .main-content-inner {
    padding: 0 0px 0px;
    position: relative;
    z-index: 999;
    width: 100%;
    margin-top: 4rem;
    /*top: 15%;*/
}

#dashboard .main-content-inner .card .maincardavailable h2 {
    color: #ff161f;
    font-size: 1.5rem;
    padding: 1rem 1rem 0 .5rem;
    margin: 0;
}

#dashboard .main-content-inner .card.img {
    background: url("../img/card3.jpg") no-repeat;
    width: 100%;
    height: 301px;
    display: flex;
    justify-content: center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    box-shadow: 0px 3px 7px 0px rgb(0 0 0 / 16%);
    border-radius: 0;
    border: none;
    padding: 1.7rem 0 3rem;
}

#dashboard .main-content-inner .card.img .maincardavailable .card-body {
    padding: 1.5rem 1.6rem 0.5rem;
}

#dashboard .main-content-inner .card.img .maincardavailable .card-body h3 {
    color: #fff;
    font-size: 1.1rem;
    padding-top: 1rem;
    padding-bottom: .0rem;
    font-weight: 600;
}

#dashboard .main-content-inner .card.img .maincardavailable .card-body p {
    color: #fff;
    font-size: 1.0rem;
    padding: 0.4rem 0;
    margin: 0;
}

#dashboard .main-content-inner .card.img .maincardavailable .card-body p.pointscalculate {
    font-weight: 600;
}

#dashboard .main-content-inner .card.img .maincardavailable .card-body h2 {
    margin: 0;
    padding: 0.2rem 0;
    font-size: 2.4rem;
}


/*------------------------- END Core Css -------------------*/


#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark {
    padding: 13px 18px;
    border-radius: 8px;
    box-shadow: 0 5px 5px 0 rgb(222 222 222 / 80%);
    background: #212529;
    border-color: #212529;
    transition: .3s all;
    font-size: 1rem;
}

#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark:hover {
    background: #ff161f;
    border: solid 1px #ff161f;
}

#dashboard .main-content-inner .card .maincardavailable .card.row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border: none;
    border-bottom: dashed 1px rgb(112, 112, 112, 0.7);
    border-radius: 0px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#dashboard .main-content-inner .card .maincardavailable .card.row .healthcare {
    font-size: 1rem;
    color: #000;
}

#dashboard .main-content-inner .card .maincardavailable .card.row .mins {
    color: #ff161f;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

#dashboard .main-content-inner .card .maincardavailable .card.row i:before {
    padding-right: 0.3rem;
    color: #ff161f;
    font-size: 2.0rem;
}

#dashboard .main-content-inner .card .maincardavailable .card.row i.las.la-clock {
    display: flex;
    align-items: center;
}

#dashboard .main-content-inner .card .maincardavailable .card.row {
    display: none;
}

#dashboard .load-more.btn,
.profilebtn.btn {
    background-color: #ff161f;
    color: #fff !important;
    padding: 10px 10px;
    border-radius: 8px;
    font-size: 20px;
    margin: 2rem 0 .2rem;
    display: inline-block;
    padding: 11px 17px;
    font-size: 1rem;
}

#dashboard .load-more.btn:hover,
#dashboard .profilebtn.btn:hover {
    background-color: #000;
    text-decoration: none;
}

#dashboard .btn.focus,
#dashboard .btn:focus {
    box-shadow: none;
}

#dashboard .main-content-inner .card .maincardavailable .card.row i.mainhealthicon:before {
    font-size: 3.5rem;
    padding: 0;
    color: #000;
}

#dashboard .main-content-inner .card .maincardavailable .card.row i.mainhealthicon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    margin-right: .3rem;
    width: 70px;
    height: 70px;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.16);
    max-width: 65px;
}

#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark.profile {
    padding: 13px 10px;
    background: #ff161f;
    border-color: #ff161f;
}

#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark.profile:hover,
#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark.profile:active,
#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark.profile.active {
    background: #000;
    border: solid 1px #000;
}

#dashboard .main-content-inner .card .maincardavailable .card.row .mins.point {
    color: #ff161f;
    font-size: 1.0rem;
    font-weight: 600;
}

#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark.takesurvey {
    background: #fff;
    border: none;
    box-shadow: none;
    color: #ff161f;
    margin-top: .5rem;
    font-weight: 600;
    transition: .5s all;
}

#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark.takesurvey:hover,
#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark.takesurvey:active,
#dashboard .main-content-inner .card .maincardavailable .btn.btn-dark.takesurvey.active {
    background: #000;
}

#dashboard .cardleftmaincontentpart .card-body .form-control, 
#dashboard .cardleftmaincontentpart .card-body .form-select {
    padding: .6rem .8rem;
    border-radius: .55rem;
    margin-bottom: .39rem;
    height: 45px;
    color: #6c757d;
	border: 1px solid rgb(150,150,150);
}

#dashboard .cardleftmaincontentpart .card-body button.btn {
    border-radius: .6rem;
    padding: .75rem 1.7rem;
    transition: all .1s;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: #ff161f;
    border-color: #ff161f;
    padding-left: 3rem;
    padding-right: 3rem;	
}

#dashboard .cardleftmaincontentpart .card-body button.btn:hover {
	background: #000;
	border-color:#000;
}
.card.card-user {
    border-radius: .6rem;
}

.bd-example.heder {
	background: none;
	border: none;
	padding: 0;
}
.bd-example.heder .mainformtext {
    line-height: 25px;
    margin: 0px 0 0px;
    padding: 0px 0 0px 0;
}
.bd-example.heder span.particletext.bubbles {
	font-size: 2rem;
}

#herologin.requrtbg {
        /* height: 100vh; */
        background: no-repeat;
        background-size: cover;
}

#herologin.requrtbg.qution {
    height: auto;
    background: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 999;
    top: 150px;
	overflow: unset;
}
.form-select:focus {
    border-color: rgb(255 118 87);
    outline: 0;
    box-shadow: none;
}

.dashrow.dotted-gradient.inner {
    background-image: linear-gradient(to right, #333 40%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 10px 1px;
    background-repeat: repeat-x;
    margin: 2rem -9px 2rem;
    border-top: double 4px #ff161f;
}

.card-body.innermain  {
	float: left;
	width: 100%;
}

body.login.btwob {
	/*background: rgb(235, 111, 83, 0.5);
	background: rgb(235,111,83);
	background: -moz-linear-gradient(18deg, rgba(235,111,83,0.9780287114845938) 0%, rgba(241,193,182,0.9556197478991597) 100%);
	background: -webkit-linear-gradient(18deg, rgba(235,111,83,0.9780287114845938) 0%, rgba(241,193,182,0.9556197478991597) 100%);
	background: linear-gradient(18deg, rgba(235,111,83,0.9780287114845938) 0%, rgba(241,193,182,0.9556197478991597) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eb6f53",endColorstr="#f1c1b6",GradientType=1);*/
	/* background:url("../img/answerbg.png") top center; */
    background: linear-gradient(45deg, #fd1e27, #ff6d32);
	background-size: cover;	
}

.btn-check:focus+.btn-primary, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    color: #fff;
    background-color: #ff161f;
    border-color: #ff161f;
    box-shadow: none;
}
#dashboard .logo #google_translate_element img {
	height: auto;
}
#google_translate_element.translet.mainlanguge  {
	position: fixed;
	right: 1rem;
	top: 1rem;
}
.btn {
    float: right;
}

.form-control.singal {
    padding: 0.3rem .75rem;
    appearance: auto;
}
.form-control.singal.noans {
    appearance: none;
}
/* .form-control.singalans {
    border-radius: 4px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    border: none !important;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 2;
    border-width: 0.75px;
    border-color: rgb(214, 25, 105);
    border-style: solid;
    background-color: #ffffff;
    box-shadow: none;
    border-bottom: solid 2px #ff161f !important;
    
    padding: 0.3rem .75rem;
    color: #ff161f;
} */

.form-control.singalans {
    border-radius: 0px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    border: none !important;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 2;
    border-width: 0.75px;
    border-color: rgb(214, 25, 105);
    border-style: solid;
    background-color: #ffffff;
    box-shadow: none;
    border-bottom: solid 2px #ff161f !important;
    /* border-radius: 0; */
    padding: 0.3rem .75rem;
    color: #ff161f;
    cursor: pointer;
    }


/* .label--select::after {
    box-sizing: border-box;
    color: #000000;
    content: "\f0dd";
    font-family: FontAwesome !important;
    height: 100%;
    padding: 12px 10px;
    pointer-events: none;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 0;
    width: 10%;
    z-index: 1;
} */

.label--select::after {
    box-sizing: border-box;
    color: #ff161f;
    content: "\f0dd";
    font-family: FontAwesome !important;
    height: auto;
    padding: 12px 10px;
    pointer-events: none;
    position: absolute;
    right: 0px;
    text-align: center;
    top: -8px;
    width: auto;
    z-index: 1;
}


/* .label--select {
    border: 1px solid #cccccc;
    display: block;
    height: 40px;
    overflow: hidden;
    position: relative;
} */

.label--select {
    border: none;
    display: block;
    height: 40px;
    overflow: hidden;
    position: relative;
    padding: 0;
    border-radius: 0;
    border-bottom: solid 2px #ff161f;
    width: 100%;
    }
.form-control.singalans:focus:hover, .form-control.singalans:hover {
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.form-control.singalans:focus:after {
    content: ' ';
    height: 0;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 0;
    border: 6px solid rgba(0, 0, 0, 0);
    border-top-color: #ff161f;
    margin-top: -3px;
    
}
.form-control.singalans:focus:focus:after, .form-control.singalans:focus:after {
    right: 10px;
}

.label--select select.form-control.singalans {
    border: solid 2px#ff161f;
    appearance: none;
    }

/* tost */
.toast-header {background: /*#C80508*/#cd3716; color: #fff; border-radius: .6rem; box-shadow: 0rem 10px 15px rgb(200 5 8 / 30%); border: none }
.toast {width: 500px; right: 1rem; z-index: 999999; border: none; border-radius: .7rem;}
.toast p {margin: 0; font-size: 1rem}
.toast button {float: right; border: solid 1px #fff; color: #fff; padding: .7rem;}
.btn-close:hover, .btn.btn-close {color: #fff;}
/*-------------------- END Login ------------------- */


.blink {
    animation: blink 1s steps(1, end) infinite;
  }
  
@keyframes blink {
0% {
    opacity: 1;
}
50% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}