@import url("https://fonts.googleapis.com/css?family=Roboto:100,200,400,500,600,700,800,900|Nunito:300,400,600,700,800");
:root {
    --primary: #0a66c2;
    --text-primary: #202223;
    --text-secondary: #484c4e;
    --light-border: #909090;
    --bg-white:#fff;
    --red:#eb0029;
    --grey:#999;
    --shadow:0 12px 28px 0 #00000033, 0 2px 4px 0 rgb(0 0 0 / 10%);
    --shadow-bottom:0px 30px 28px 0 rgb(0 0 0 / 20%);
    --border:1px solid #b7b7b7;
    --border-radius:5px;
    --light-divider:#d2d2d2;
}

html {
    font-family: "Roboto", sans-serif !important;
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    position: relative;
    z-index: -10;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    letter-spacing: 0.3px;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}
button {
    border: none;
    background: none;
    font-family: inherit;
}

section, article, main, footer{
    background-color: var(--bg-white);
}

/* cookie alert start */
.cookiealert {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px !important;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #202223;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
    background: #202223;
    color: #ecf0f1;
    border-radius: 0;
}

.cookiealert a {
    color:#f5f5f5;
}

.cookiealert span{
    font-size: 14px;
}

.cookies-sec {
	margin: 70px 0;
}
.cookies h1 {
	font-size: 30px;
	font-weight: 500;
	color: #202223;
	border-bottom: 3px double #202223;
	display: inline-block;
	padding-bottom: 5px;
}

.cookies h4, .cookies h2, .cookies h3 {
	font-size: 18px;
	font-weight: 500;
	color: #1c1c1c;
    padding: 0 0 5px 0;
    margin: 30px 0 10px 0;
    border-bottom: 1px solid #1c1c1c;
    display: inline-block;
}
.cookies p, .cookies li {
	font-size: 14px;
	font-weight: 400;
	color: #5b5b5b;
    margin: 0;
}
.cookies li {
	margin: 10px 0;
	line-height: 25px;
}

.update_cookie_txt{
    float: right;
    font-size: 14px;
    font-weight: 400;
    color: #5b5b5b;
}

/* cookie alert end */

.box-card-lg {
	width: 100% !important;
}
@keyframes shine{
    0%{
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

.button-sm{
    width: 100px;
}

.button-lg{
    width:100%;
}

.button-primary{
    background: var(--primary);
    color: var(--bg-white);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    border-radius: 5px;
    margin-right: 20px;
    transition: all 300ms ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 0 5px;
}

.button-primary:before{
    background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.3));
    content: "";
    display: none;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}

.button-primary:hover{
    background: #075099;
}

.button-primary:hover::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
    display: block;
}

.button-secondary{
    background: var(--bg-white);
    color: var(--text-primary);;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    border-radius: 5px;
    margin-right: 20px;
    transition: all 300ms ease;
    cursor: pointer;
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
}

.button-secondary:before{
    background: linear-gradient(90deg,hsla(0,0%,100%,0) 0,hsla(0,0%,64%,.3));
    content: "";
    display: none;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}

.button-secondary:hover{
    background: #e8e8e8;
}

.button-secondary:hover::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
    display: block;
}

.button-underline{
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    position: relative;
}

.button-underline:before{
    height: 3px;
    width: 100%;
    bottom: -6px;
    left:0;
    content:"";
    background: var(--primary);
    position: absolute;
}

p {
    line-height: 29px;
    font-size: 20px;
    color: var(--text-secondary);
    margin: 24px 0;
}

.highlight-text {
    color: var(--primary);
}

/*scroll-bar start*/
body::-webkit-scrollbar {
    width: 10px;
}
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 3px;
}
/*scroll-bar End*/



/*header start*/

.menu-m-wrapper {
    max-height: 350px;
    overflow-y: auto;
    padding: 20px;
}

.menu-button {
    display: none;
}
.all-menu-dropdowns{
    display: none;
}
.add-menu{
    display: block !important;
}
header {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    background: #ffffff;
    z-index: 100;
    box-shadow: 0 13px 35px #0000000f;
    border-bottom: 1px solid #b7b7b7;
}
header .logo > a {
    display: flex;
}
header .logo > a img,
footer .flogo img {
    height: 20px;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    flex-wrap: wrap;
}
header .menu > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .menu > ul > li {
    margin-right: 30px;
    position: relative;
}

header .menu > ul > li > a {
    color: #353535;
    font-size: 16px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    letter-spacing: 0.35px;
}
header .menu ul li > a i {
    margin-left: 10px;
    font-size: 14px;
    transition: all 300ms ease;
}
header .menu-other {
    display: flex;
    justify-content: space-between;
}

.all-nav-dropdown {
    position: absolute;
    z-index: 300;
    top: 40px;
    left: 0;
    background: #ffffff;
    width: 310px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--light-border);
    transform: translateY(30px);
    opacity: 0;
    display: none;
    transition: all 300ms ease;
    box-shadow: 0 12px 28px 0 rgb(0 0 0 / 20%), 0 2px 4px 0 rgb(0 0 0 / 10%);
}
.int-stuff-dropdown {
    width: 800px;
    left: -240px;
}
header:hover .all-nav-dropdown {
    display: block;
}
.all-nav-dropdown li {
    padding: 20px 20px 0 20px;
}
.int-stuff-dropdown li {
    padding: 20px 0 0 0;
}
.all-nav-dropdown li:last-child {
    padding: 30px 0 30px 30px;
}
.int-stuff-dropdown li:last-child {
    padding: 20px 0 20px 0;
}
.all-nav-dropdown div div p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}
.all-nav-dropdown div div p:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--primary);
}

.all-nav-dropdown div div ul li a,
.all-nav-dropdown li a {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--text-secondary);
}
.all-nav-dropdown div div ul li:hover a,
.all-nav-dropdown li:hover a {
    color: var(--primary);
}
.int-stuff > div {
    margin: 0 20px;
}
.transform-ul {
    transform: translateY(0);
    opacity: 1;
    z-index: 301;
}
.transform-icon {
    transform: rotate(180deg);
}
header .menu ul li span{
    width: 100%;
    display: inline-block;
    background: #b6e3ff70;
    padding: 20px 30px;
    display: flex;
    align-items: baseline;
    margin-top: 30px;
}

header .menu ul li ul span i{
    margin-left: 10px;
    animation-name: arrow;
    position: relative;
    animation-iteration-count: infinite;
    animation-direction: forward;
    animation-duration: 2000ms;
    animation-timing-function: ease;
    transition: all 300ms ease;
}

@keyframes arrow {
    0%,
    100% {
        margin-left: 10px;
    }
    50% {
        margin-left: 15px;
    }
}
#int-stuff .all-nav-dropdown {
    width: auto;
}
.int-stuff {
    display: flex;
    align-items: flex-start;
    padding: 20px;
}
.article-text a,
.expert-sec a,
footer .f1 span a,
footer .search-button,
.all-nav-dropdown > span > a {
    color: #353535;
    font-size: 17px;
    font-weight: 600;
    position: relative;
}
.article-text a:before,
.expert-sec a:before,
footer .f1 span a:before,
footer .search-button:before,
.all-nav-dropdown span a:before {
    height: 2.5px;
    width: 100%;
    bottom: -4px;
    left: 0;
    content: "";
    background: var(--primary);
    position: absolute;
}

/*menu 2*/
.menu-2{
    position: absolute;
    top: 70px;
    width: 100%;
    height: auto;
    background: #f9f9f9;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    border-radius: 5px;
    display: none;
}

.menu-2 > div > ul > li{
 
    position: relative;
    transition: all 300ms linear;
}
.menu-2 > div > ul > li a:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--light-divider);
    bottom: 0px;
    left: 0;
}
.menu-2 > div > ul > li > a{
    text-transform: capitalize;
    width: 100%;
    display: inline-block;
    color: var(--text-primary);
    position: relative;
    transition: all 300ms linear;
    font-size: 15px;
    font-weight: 500;
    padding: 15px 5px;
}
.menu-2 > div > ul > li a > i{
    float: right;
}
.all-menu-dropdowns > ul > li{
    margin: 0;
    border-radius: 5px;
}
.more-opt {
    width: 100%;
    background: #b6e3ff70;
    font-size: 15px;
    display: flex;
    padding: 15px 10px;
    margin-top: 15px !important;
}
.more-opt i {
    margin-left: 0px;
    animation-name: arrow2;
    position: relative;
    animation-iteration-count: infinite;
    animation-direction: forward;
    animation-duration: 2000ms;
    animation-timing-function: ease;
    transition: all 300ms ease;
}
.more-opt > a{
    width: unset !important;
}
@keyframes arrow2 {
    0%,
    100% {
        margin-left: 0px;
    }
    50% {
        margin-left: 5px;
    }
}
.dropdown-content-2 a,
.all-menu-dropdowns a{
    color: var(--text-secondary);
    padding: 20px 0px 0px 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
}
.show2 {
    display: block;
}
/*header over*/
.fix-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    border-radius: 5px;
    background: var(--grey);
    width: 35px;
    height: 35px;
    font-size: 15px;
    z-index: 999;
    transition: all 500ms ease;
    box-shadow: 0 12px 28px 0 rgb(0 0 0 / 20%), 0 2px 4px 0 rgb(0 0 0 / 10%);
}
.fix-button:hover {
    transform: translateY(-5px);
}
.fix-button a {
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.fx-hidden {
  opacity: 0;
  transform: translateY(20px);
}
/*main start*/
.main-sec {
    top: 0;
    z-index: -1;
}

.main-sec .main-content {
    height: 100vh;
}
.main-sec .main-content h1{
    font-size: 30px;
    line-height: 60px;
    color: var(--text-primary);
}
.automate-sec{
    padding: 100px 0;
}
.automate-sec h2 {
    font-size: 88px;
    line-height: 92px;
    color: var(--text-primary);
}

.main-sec .main-content p,
.automate-sec p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.main-sec .main-content div {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}
/*main end*/


/*Banner Start*/
.banner-sec {
    margin-top: 200px;
    padding: 5rem 0;
}
.p-banner-outer{
    width: 100%;
    transform: translateY(-200px);
}
.product-banner {
    background: url("../images/Banner1.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #00000042;
    z-index: 5;
    position: relative;
    box-shadow: 0 12px 28px 0 rgb(0 0 0 / 20%), 
                0 2px 4px 0 rgb(0 0 0 / 10%);
}
.banner-text {
    text-align: center;
    padding: 100px 150px 0;
}
.banner-text h3 {
    font-size: 60px;
    line-height: 64px;
    color: #ffffff;
}
.banner-background {
    background: var(--primary);
}
.banner-text .dropbtn {
    background-color: #ffffff;
    color: var(--text-primary);
    border-radius: 5px;
    font-size: 30px;
    line-height: 34px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    width: 600px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
.banner-text .dropbtn i {
    margin-left: 40px;
}
.banner-text .dropdown {
    position: relative;
    display: inline-block;
    margin: 40px 0;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border-radius: 5px;
    min-width: 100%;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px #00000033;
    z-index: 1;
    bottom: -280px;
    height: 270px;
    overflow-y: auto;
    text-align: left;
    text-transform: capitalize;
}
.dropdown-content a {
    color: var(--text-primary);
    padding: 15px 30px;
    text-decoration: none;
    display: block;
    font-size: 20px;
    transition: all 300ms ease;
}
.dropdown a:hover {
    color: var(--primary);
    font-weight: 500;
}
.show {
    display: block;
}
.img-c1{
    background: url("../images/demo-one.webp");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 440px;
}
.img-c2{
    background: url("../images/demo-two.webp");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 440px;
}
.img-c3{
    background: url("../images/demo-three.webp");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 440px;
}
.img-c4{
    background: url("../images/demo-four.webp");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 440px;
}
.partner-program-img{
    background: url("../images/partner.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 216px;
    border-radius: 5px;
}
/*banner end*/

/*article section*/
.article-text {
    padding: 0 65px;
}
.article-text p {
    margin: 17px 0;
}
.article-text .span-text {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 24px;
}
.article-text h3,
.expert-sec h3 {
    color: var(--text-primary);
    font-size: 35px;
    margin-top: 7px;
}
.article-text a,
.expert-sec a,
footer .f1 span a,
footer .search-button {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    position: relative;
}
.article-text a:before,
.expert-sec a:before,
footer .f1 span a:before,
footer .search-button:before {
    height: 3px;
    width: 100%;
    bottom: -4px;
    left: 0;
    content: "";
    background: var(--primary);
    position: absolute;
}

/*article over*/

/*expert sec*/

.expert-sec {  
    border-radius: 5px;
    -webkit-box-shadow: 0 13px 35px #0000000f, 0 8.42593px 20px #00000008,
        0 5.00741px 12.7407px #00000005, 0 2.6px 6.5px #00000005,
        0 1.05926px 3.25926px #00000003, 0 0.240741px 1.57407px #00000003;
    box-shadow: 0 13px 35px #0000000f, 0 8.42593px 20px #00000008,
        0 5.00741px 12.7407px #00000005, 0 2.6px 6.5px #00000005,
        0 1.05926px 3.25926px #00000003, 0 0.240741px 1.57407px #00000003;
}
.expert-text {
    padding: 0 35px;
}
/*testimonial-sec*/
.testimonials{
    padding: 3rem 0;
}
.testimonial-sec {
    padding: 50px;
    border-radius: 5px;
}
.testimonials .owl-carousel {
    background: #6db5ff1f;
    border-radius: 5px;
}
.testimonial-sec > div:first-child img {
    border-radius: 5px;
    min-width: 160px;
    max-width: 265px;
}
.testimonial-sec > div:nth-child(2) {
    padding: 0 0 0 85px;
}
.testimonial-sec h3 {
    font-size: 40px;
}
.testimonial-sec p {
    font-size: 17px;
}
.active .item {
    opacity: 1;
    transform: scale(1);
}
.item {
    opacity: 0.2;
    transition: 0.9s ease all;
    transform: scale(0.5);
}

/*test navs*/
.owl-theme .owl-nav {
    display: none;
}
.owl-theme .owl-dots {
    position: relative;
    bottom: 35px;
    left: 0;
    right: 0;
}
.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
    transition: all 300ms ease;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary) !important;
    width: 40px !important;
    transition: all 300ms ease;
}
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary) !important;
}
/*test nav ends*/

/*partner program*/

.partner-sec h2 {
    font-size: 50px;
}
.partner-image img {
    border-radius: 5px;
}
.partner-sec {
    padding: 0 65px;
}

/*lets get you going*/

.l-g-g-wrapper{
    padding: 50px 0;
}
.l-g-g {
    background: var(--primary);
    border-radius: 5px;
}
.l-g-g > div {
    padding: 100px;
}
.l-g-g > div > div:first-child {
    font-size: 40px;
    color: #fff;
}
.l-g-g > div > div:nth-child(2) button {
    width: 170px;
    height: 50px;
    border-radius: 5px;
    text-transform: capitalize;
    font-size: 18px;
}
.l-g-g > div > div:nth-child(2) button:first-child {
    background: #fff;
    margin-right: 15px;
    color: var(--text-primary);
}
.l-g-g > div > div:nth-child(2) button:nth-child(2) {
    background: transparent;
    border: 2px solid #ffffff;
    color: #fff;
}

/*footer start*/
footer .f1 {
    display: flex;
    flex-direction: column;
}
footer .f1 .flogo,
footer .f1 span,
footer .f1 > div input {
    margin-bottom: 27px;
}
footer .f1 input:focus-visible {
    outline: none;
}
footer .footer-mainbg {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 50px 0;
    box-shadow: var(--shadow-bottom);
    border-bottom: 10px solid var(--primary);
}

.search-value {
    width: 90%;
    height: 55px;
    margin: 0 0 20px;
    padding: 0 15px;
    border: 1px solid #666;
    border-radius: 5px;
    background-color: #fff;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

footer .f2 h5 {
    font-size: 19px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
footer .f2 div:nth-child(3) h5:nth-child(3) {
    margin: 20px 0;
}
footer .f2 ul {
    line-height: 25px;
    font-size: 15px;
    text-transform: capitalize;
}
footer .f2 ul li a {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 300ms ease;
}
footer .f2 ul li a:hover {
    color: var(--primary);
}
.grey-sec {
    background: #f5f5f5;
    position: sticky;
    bottom: 0;
    z-index: 1;
}
footer .footer-social {
    text-align: center;
    padding: 50px 0;
}
footer .footer-social h6 {
    font-size: 27px;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 20px 0;
}
footer .footer-social .social-icons {
    margin: 30px 0;
}
footer .footer-social .social-icons span {
    margin: 30px;
}
footer .footer-social .social-icons span a {
    color: #999999;
    font-size: 30px;
    transition: all 300ms ease;
}
footer .footer-social .social-icons span a:hover,
footer .footer-social div ul li a:hover,
footer .footer-social div:nth-child(3) > span a:hover {
    color: var(--primary);
}
footer .footer-social div ul li a:hover:before,
footer .footer-social div:nth-child(3) > span a:hover:before {
    background: var(--primary);
}
footer .footer-social div ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
footer .footer-social div ul li span {
    margin: 0 15px;
}
footer .footer-social div:nth-child(3) {
    letter-spacing: 1px;
}
footer .footer-social div ul li a,
footer .footer-social div:nth-child(3) > span a {
    position: relative;
    color: var(--text-primary);
    transition: all 300ms ease;
}
footer .footer-social div ul li a:before,
footer .footer-social div:nth-child(3) > span a:before {
    position: absolute;
    bottom: -2px;
    left: 0;
    background: var(--text-primary);
    height: 0.5px;
    transition: all 300ms ease;
    width: 100%;
    content: "";
}
footer .footer-social div:nth-child(3) > span {
    width: 100%;
    display: inline-block;
    margin: 15px 0;
}

/*****************************login page css************************************/

.section {
    height: 100vh;
    display: flex;
    align-items: center;
}
.section .container h1{
    font-size: 25px;
    font-weight: 600;
    color: var(--txt-primary);
}
.section .container span{
    line-height: 20px;
    font-weight: 400;
    font-size: 15px;
    color: var(--txt-primary);
}
.section > div{
    display: flex;
    justify-content: center;
}

.box-card{
    padding: 30px;
    border: var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.box-card-sm{
    width: 500px;
}

.box-card-lg{
    width: 800px;
}

.form-in {
    display: -ms-grid;
    display: grid;
    margin-top: 2rem;
}
.form-in input {
    font-size: 15px;
    font-weight: normal;
    background: #fff;
    padding: 15px;
    height: 50px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #79797999;
    box-shadow: 5px 5px 10px 0px #3b56790d;
}

.form-in input:focus {
    background-color: #fff9e6;
    border: 1px solid #9d9d9d9c;
}

.pwdshow{
    position: absolute;
    right: 10px;
    cursor: pointer;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--grey);
}

.forget-pass{
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.section .forget-pass a {
    font-size: 12px;
    position: relative;
    font-weight: normal;
    color: var(--primary);
}

.login-divider{
    text-align: center;
    position: relative;
    padding: 15px;
}

.login-divider:before{
    content:'';
    height:2px;
    width: 100%;
    position: absolute;
    background-color: var(--light-divider);
    left: 0;
    top: 50%;
    transform: translate(0% , -50%);
}

.login-dividertxt{
    background-color: white;
    display: inline-block;
    padding: 0 10px;
    position: relative;
}
.form-in div.input-block {
    position: relative;
    margin-bottom: 1.5rem !important;
}
.form-in div.input-block span.placeholder {
	position: absolute;
	color: #202223;
	font-size: 12px;
	top: -10px;
	left: 25px;
	text-transform: capitalize;
	padding: 0px 5px;
	border-radius: 3px;
	background: #fff;
	opacity: 1;
}


.form-in div.input-block input:focus {
    color: #284b63;
    background: #e8f0fe;
}

.form-in div.input-block input:focus + span.placeholder {
    color: #284b63;
}

.err {
  background: #ffe6ee; 
  border: 1px solid #b1395f;
}
.emsg {
    color: var(--red);
    position: absolute;
    font-size: 11px;
    top: -16px;
    right: 0;
    margin: 0;
    line-height: unset;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.errormsg{
    border: 1px solid var(--red) !important;
}

.main-heading{
    color: rgba(0,0,0,0.08);
    animation-name:color-change;
    animation-duration:7s;
    animation-iteration-count:infinite;
    transition:all 300ms ease;
    font-size: 70px;
    font-weight: 900;
}

@keyframes color-change{
    0%,100% {
    color: var(--primary);
    }
    50% {
    color: var(--text-primary);
    }	
}

/*****************************************************login page end*****************************************************/

/*****************************************************Sign up start*****************************************************/


.signup-form .org-input input {
    width: 100% !important;
}

/*****************************************************Sign up End*****************************************************/

/*****************************************************Loading Animation start*****************************************************/
.three-dots{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: transparent;
}

 .dot1, .dot2, .dot3 {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin: 3px;
    }

.dot1 {
    animation: jump 1.6s -0.32s linear infinite;
    background: #fff;
}
.dot2 {
    animation: jump 1.6s -0.16s linear infinite;
    background:  #fff;
}
.dot3 {
    animation: jump 1.6s linear infinite;
    background:  #fff;
}

@keyframes jump {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(2.0);
    transform: scale(2.0);
  }
}


.form-in input::-webkit-input-placeholder { /* Edge */

    position:absolute;
    transition: all 300ms ease;
  }
  
  .form-in input:-ms-input-placeholder { /* Internet Explorer */

    position:absolute;
    transition: all 300ms ease;

  }
  
  .form-in input::placeholder {

    position:absolute;
    transition: all 300ms ease;
  }
  .form-in .login-input:focus::placeholder{

    top: -10px;
    z-index: 999999999999999999999999999999;
    transform: scale(0.8);
  }
/*****************************************************Loading Animation End*****************************************************/

.p-0{
    padding: 0 !important;
}
