@font-face {
    font-family:poppins ;
    src: url('/assets-area/fonts/poppins/Poppins/Poppins-Regular.ttf');
  }

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.container.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.overlay {
	background: #2fdbed;
	background: -webkit-linear-gradient(to right, #2fdbed, #2fdbed);
	background: linear-gradient(to right, #2fdbed, #2fdbed);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
  	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

footer {
    background-color: #051c42;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position:relative;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
    padding: 5px;
}

footer p {
    margin: 10px 0;
}

footer i {
    color: red;
}

footer a {
    color: #3c97bf;
    text-decoration: none;
}

/* -----------------------homepage--------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
*{
    margin: 0;
    outline: none;
    box-sizing: border-box;
    list-style:none;
}
body
{
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}





/* Start Navbar */
.navbar
{
    background-color: #fff;
    padding: 1rem 0;
}
.navbar .container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .left {
    display: flex;
    align-items: center;
}
.navbar .logo
{
    width: 150px;
    margin-right: 2rem;
}
.navbar .logo img
{
    /* filter: invert(1); */
    width:100%;
    height: 100%;
}


.navbar-nav .nav
{
    padding: 0;
    display: flex;
    align-items: center;
}
.navbar-nav .nav .nav-link
{
    margin-left: 1.5rem;
    cursor: pointer;
    padding: 1rem 1rem 1rem 0;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    color: #000;
    position: relative;
}
.navbar-nav .nav .nav-link:after{
    display:block;
    transform: scaleX(1);
    position: absolute;
    width: 100%;
    bottom: 5px;
    content: '';
    border-bottom: solid 3px black;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    top: 10px;
}
.navbar-nav .nav .nav-link:hover:after
{
    transform: scaleX(1);
}

.nav-link span{
font-family: 'poppins' !important;
}

.nav-dropdown
{
    cursor: auto;
    position: fixed;
    background: #fff;
    width: 100%;
    left: 0;
    /* min-height: 60vh; */
    z-index: 100;
    margin-top: 15px;
    display: none;
    /* box-shadow: 0 13px 15px -2px #ededed; */
    animation: scaleOut 250ms;
    transform: translateY(5px);
    opacity: 0;
}
.navbar-nav .nav .nav-link.open .nav-dropdown
{
    display: block;
    animation: scale 250ms;
    transform: translateY(0);
    opacity: 1;
}
@keyframes scale {
    from {
        transform: translateY(5px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes scaleOut {
    from {
        transform: translateY(0);
        opacity: 0;
    }
    to {
        transform: translateY(5px);
        opacity: 1;
    }
}


.megamenu-wrapper
{
    display: flex;
    flex-direction: column;
}
.megamenu, .megamenu .cols
{
    display: flex;
    justify-content: space-between;
}
.megamenu .recap
{
    width:40%;
}
.megamenu .recap .div-text
{
    margin: 2.5rem 1rem 0.5rem 1rem;
}
.megamenu .cols
{
    flex: 1;
}
.megamenu .col
{
    margin: 2rem;
    width: 50%;
}
.megamenu .menu
{
    width:100%;
    padding: 0;
    list-style: none;
    /* background-color: #eee; */
}

.megamenu .menu .menu-item
{
    position: relative;
}

.megamenu .menu .menu-item::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    font-size: 14px;
    opacity: 0;
    transition: all .15s linear;
    top: 50%;
    right: 25px;
    transform: translate(0,-50%);
}
.megamenu .menu .menu-item:hover:before {
    opacity: 1;
    right: 20px;
}


.megamenu .menu .menu-item a
{
    display: flex;
    padding: 0.1rem;
    border-radius: 4px;
    text-decoration: none;
    color: black;
    background-color: transparent;
}

.megamenu .menu .menu-item a:hover
{
    /* background-color: rgba(14,186,197,0.1); */
    background-color: rgba(0,0,0,0.05);
}
.megamenu .menu .menu-item a .icon
{
    width:40px;
    /* height:40px; */
    font-size: 1.5rem;
}
.megamenu .menu .menu-item a .icon svg
{
    width:60%;
    height: 60%;
}
.megamenu .menu .menu-item a:hover .icon,
.megamenu .menu .menu-item a:hover .details h4
{
    color: black;
}

.megamenu .menu .menu-item a .details
{
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}
.megamenu .menu .menu-item a .details h4
{
    font-weight: 500;
    font-size: 1rem;
    font-family:poppins;
}
.megamenu .menu .menu-item a .details p
{
    color: #777575;
    font-weight: 400;
    font-size: .875rem;
}


.megamenu-wrapper .footer {
    padding: 0 2rem;
    background-color: rgba(253,251,244,1);
}
.megamenu-wrapper .footer .partners {
    display: flex;
    align-items: center;
}
.megamenu-wrapper .footer .partners .to {
    display: flex;
    align-items: center;
    height: 80px;
    margin-left: 2rem;
}
.megamenu-wrapper .footer .partners .to .img {
    width: 135px;
    height: 50%;
    overflow: hidden;
    object-fit: contain;
}
.megamenu-wrapper .footer .partners .to .img img {
    width: 100px;
    height: 100%;
    object-fit: contain;
}


.megamenu .blog {
    margin-left: 1rem;
    border-top: 1px solid #eee;
    margin-top: 0.25rem;
    padding-top: 1rem;
}
.megamenu .blog .image {
    width: 100%;
    height: 130px;
    overflow: hidden;
}
.megamenu .blog .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}
.megamenu .blog .det {
    margin: 1rem 0;
}
.megamenu .blog .det h4 {
    font-size: 1rem;
    font-weight: 500;
}
.megamenu .blog .det p {
    font-size: .875rem;
    margin: 0.25rem 0 0.75rem 0;
    color: #777575;
}

.megamenu .div-text
{
    margin: 1rem;
}
.megamenu-wrapper .list-menu {
    padding: 0;
    display: grid;
    grid-template-columns: auto auto;
    margin: 0 1rem;
}
.megamenu-wrapper .list-menu li {
    display: block;
    position: relative;
}

.megamenu-wrapper .list-menu li a {
    display: inline-flex;
    text-decoration: none;
    margin: 0.75rem 0;
    color: #0a2540;
    font-weight: 500;
    align-items: center;
    position: relative;
}
.megamenu-wrapper .list-menu li a i {
    margin-right: 0.75rem;
}

.megamenu-wrapper .list-menu li a::before {
    position: absolute;
    right: -20px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    right: -10px;
    font-size: 15px;
    opacity: 0;
    transition: all .15s linear;
    margin-top: 2px;
}
.megamenu-wrapper .list-menu li a:hover:before
{
    opacity: 1;
    right: -15px;
}


.megamenu-wrapper .integration-list {
    padding: 0;
    margin-left: 1rem;
    width: 75%;
}
.megamenu-wrapper .integration-list li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}
.megamenu-wrapper .integration-list li:last-child
{
    border-bottom-color: transparent;
}

.megamenu-wrapper .integration-list li .lang {
    min-width: 100px;
    font-weight: 500;
    color: #0a2540;
}
.megamenu-wrapper .integration-list li:hover .lang
{
    color: black;
}

.megamenu-wrapper .integration-list li .lang-item {
    display: flex;
    align-items: center;
}
.megamenu-wrapper .integration-list li .lang-item .img {
    margin-right: 2rem;
    overflow: hidden;
    max-width: 100px;
    max-height: 40px;
}
.megamenu-wrapper .integration-list li .lang-item .img img {
    object-fit: contain;
    object-position: left;
    filter: grayscale(100);
    cursor: pointer;
    max-width: 100%;
    max-height: 33px;
}
.megamenu-wrapper .integration-list .lang-item .img img:hover 
{
    filter: grayscale(0);
}

.megamenu-wrapper .more
{
    font-weight: 500;
    color: #0a2540;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.megamenu-wrapper .more i
{
    font-size: 95%;
    margin-left: .5rem;
    margin-top: 1px;
    
}
.megamenu-wrapper .more:hover i
{
    transition: .25s ease-in-out;
    margin-left: .75rem;
}



.navbar-nav .nav .nav-link.has-arrow
{
    position: relative;
}
.navbar-nav .nav .nav-link.has-arrow::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    font-size: 13px;
}




/* Solid Megamenu */
.megamenu-wrapper.solid .col {
    margin: 0;
    padding: 2rem;
}
.megamenu-wrapper.solid .col:nth-child(1)
{
    background: #fff;
}
.megamenu-wrapper.solid .col:nth-child(2)
{
    background: #fff;
}



.navbar .right {
    display: flex;
    align-items: center;
}

.navbar .right button 
{
    padding:.5rem 1.5rem;
    border:3px solid #2fdbed;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
}

.navbar .right .login
{
    font-weight: 700;
    background-color: #fff;
    margin-right: 1rem;
}
.navbar .right .login:hover
{
    transition: all 100ms ease-in-out;
    background: #2fdbed;
    color: #fff;
}

.navbar .right .try
{
    font-weight: 700;
    background: black;
    color: #fff;
}
.navbar .right .try:hover
{
    transition: all 250ms ease-in-out;
    background-color: #fff;
    color: black;
}


/* Start Hero */
.hero
{
    text-align: center;
    margin: 17rem 0;
}

.hero .title
{
    font-size:4rem;
    font-weight: 700;
}

.hero .parag
{
    font-size:1.5rem;
    margin: 2rem 0;
}

.start-field
{
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 450px;
    margin: 0 auto;
}

.start-field .field
{
    display: flex;
    width:100%;
}
.start-field .field input
{
    font-weight: 500;
    padding:0.75rem 1rem;
    border: 2px solid black;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-right:none;
    flex: 1;
}
.start-field .field button
{
    font-weight: 700;
    padding: 0.75rem 1rem;
    border:2px solid black;
    background-color: black;
    color: #fff;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
    font-size: .9rem;
}
.start-field .field button:hover
{
    background: #fff;
    transition: all 250ms ease-in-out;
    color: black;
}

.start-field ul
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width:100%;
    margin: .75rem 0 1rem 0;
}
.start-field ul li
{
    display: flex;
    align-items: center;
    font-weight: 500;
}
.start-field ul li i 
{
    font-size: .875rem;
}
.start-field ul li span
{
    font-size: .75rem;
    margin-left: .25rem;
}



.products-row{
    margin-bottom: 30px;
}


.copyright {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.copyright a
{
    font-weight: 500;
    color: black;
    font-weight: 500;
}

.navbar{
    padding: 20px !important;
}

.container
{
    margin: 0 auto;
}

/* Responsive Layout */
.menu-mobile {display: none;cursor: pointer;}
@media only screen and (max-width: 1920px) {
    .container { width: 1600px;}
}
@media only screen and (max-width: 1600px) {
    .container { width: 1300px;}
}
@media only screen and (max-width: 1300px) {
    .container { width: 1000px;}
}
@media only screen and (max-width: 768px) {
    .container {
        width:100%;
        padding: 0 1.5rem;
    }
    .navbar-nav, .try
    {
        display: none;
    }

    .hero .title
    {
        font-size: 2rem;
    }
    .hero .parag
    {
        font-size: 1rem;
    }
    .menu-mobile
    {
        font-size:1.5rem;
        display: block;
    }

    .navbar-nav {
        position: absolute;
        left: 0;
        top: 60px;
        width: 100%;
        background: #fff;
    }
    .navbar-nav .nav {
        flex-direction: column;
        width: 100%;
        align-items: unset;
    }
    .navbar-nav .nav .nav-link {
        margin: 0;
        padding: 1rem;
    }
    .navbar-nav .nav .nav-link.has-arrow::before {
        right: 20px;
    }
    .megamenu, .megamenu .cols
    {
        flex-direction: column;
    }
    .megamenu, .megamenu .cols,
    .megamenu .col
    {

        width: 100%;
    }
    .megamenu-wrapper, .megamenu
    {
        overflow-y: scroll !important;
        overflow-x: hidden !important;
    }
    .megamenu .col
    {
        margin: 1rem;
    }
    .start-field .field {
        flex-direction: column;
    }
    .start-field .field input {
        border-bottom-left-radius: 0;
        border-right: 2px solid black;
        border-top-right-radius: 3px;
        border-bottom: none;
    }
    .start-field .field button {
        border-top-right-radius: 0;
        border-bottom-left-radius: 3px;
    }
  }

  .cs-parallax div{
    position: absolute !important;
  }


  .skeleton-loader {
    width: 300px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f0f0f0;
}

.skeleton-item {
    margin: 10px 0;
    background: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
}

.skeleton-item.title {
    height: 20px;
    width: 70%;
}

.skeleton-item.text {
    height: 14px;
    width: 100%;
}

.skeleton-item.button {
    height: 30px;
    width: 40%;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}


.top-banner{
    text-align: center;
    align-self: center;
    padding: 150px 0px;
    color: #fff;
}

.hero{
    color: #fff;
}

.align-self{
    align-self: center;
}

.back-color{
    background-color: #eaeaea;
    
}

.padding{
    padding: 20px;
}
.float-right{
    float: right;
}

.text-align-right{
    text-align: right;
}

.button-download a{
color: #fff; 
background-color: #051c42;
padding: 15px;
text-decoration: none;
}

.button-download a:hover{
    color: #fff; 
    background-color: #2fdbed;
    padding: 15px;
    text-decoration-line: underline;
    }

    /* ------------fullscree popup ------- */

    .full-screen {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0,0,0,0.9);
      }
      
      .flex-container-center {
        displaY: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
      }
      
      .full-screen{
        color: white
      }
      
      .hidden {
          display: none;
      }
      

      /* --------------------search bar---------------------- */

      .grid {
        width: 90%;
        max-width: 24em;
        text-align: center;
      }
      
      .search {}
      
      .search__field {
        position: relative;
      }
      
      .search__label {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAQAAAC1QeVaAAAAxElEQVR4AXXPIUuDcRDA4Zv4AUSwTLEKVoNlySyCYLO98CCsahGrX0AW/QhmBRHEJghLS4JFBBXDgrJi2In78w8v4v3S8XDh4nd0DTxLEzd2RC2EnrH07trQVDrXqbhs7FvfnBDWDKWTigOpL2oWvZpYKPjio1zVHEt7BdOtaLUtHRX8MmqjRjooeCVttPBOWi+4JT1aLaDjVLpU/5ytn840Dj1IaWSpYmi8yVlTF54qh9K8nn27usJK5fC3yvfhPx7a/AE9dYwDEfKrlAAAAABJRU5ErkJggg==);
        background-position-y: 50%;
        background-repeat: no-repeat;
        color: #b2b2b2;
        left: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        transition: left 0.4s, transform 0.4s;
        padding-left: 1.25em;
      }
      
      .search__input {
        border: 1px solid #dfdfdf;
        border-radius: 0.25em;
        box-shadow: 0 1px 0 #bfbebf;
        display: block;
        padding: 0.5em 1.75em;
        width: 100%;
      }
      
      .search__input:focus + .search__label,
      .search__input:valid + .search__label {
        left: 0.5em;
        transform: translate(0, -50%);
      }
      
      .search__input:valid + .search__label {
        text-indent: -9999px;
      }

      /* -----------------search bar end----------- */
    .redirect-page-header{
        background-color: #38d5e6;;
    }
    .redirect-page-header h4{
       color: #fff;
       padding: 10px;
       font-size: 15px;
       font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
       text-transform: uppercase;
       align-self: center;
       margin-bottom: 0px;
       font-weight: 800;
    }

    .redirect-page-header h4 i{
        color: #fff;
        font-weight: 999;
        font-size: auto;
        transition: 1s ease;
     }

     .redirect-page-header h4 i:hover{
        color: #000;
        font-weight: 999;
        font-size: auto;
        transition: 1s ease;
     }

     .back-color a img {
        width: 100%;
        height: 150px;
    }