:root {
    --text-color: #272D37;
    --text-color-light: #5F6D7E;
    --breadcrumbs-color: #FFFFFF;
    --breadcrumbs-active-color: #E0E0E0;
    --link-color: #2A6AE2;
    --control-color: #2865E0;
    --control-alt-color:#E5ECFB;
    --demo-color: #28A745;
}


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

a, a:hover {text-decoration:none;}

button {-webkit-appearance: none;
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

ol, ul {
    list-style: none;
}


html {
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}


.lnd-header {
    background-color: #000000;
    height: 60px;
    width: 100%;
    top: 0;
    position: fixed;
}


.gotop {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    background-color: #2A6AE2;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition-property: opacity, visibility;
    transition-duration: .3s, 0s;
    transition-delay: 0s, .3s;
    z-index: 99;
}

.gotop--visible {
    visibility: visible;
    opacity: 1; 
    transition-delay: 0s, 0s;
}


.gotop__icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
}



/* license popup*/

.license-popup-box {
   
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0,0,0);
    -webkit-transform-style: preserve-3d;
}

.license-popup--visible {
    visibility: visible;
    opacity: 1;
    transition: opacity ease 0.3s;
}

.license-popup__back {
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.15);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.license-popup {
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    z-index: 999;
    background-color: #fff;
    overflow: hidden auto;
    max-height: calc(-8rem + 100vh);
    width: 90%;
    max-width: 58rem;
    position: relative;
    padding: 2rem;
}

.license-popup__btn {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    opacity: 0.8;
    cursor: pointer;
    color: #111111;
    font-size: 1.25rem;
}

.license-popup__btn:hover {
    opacity: 1;
}

.license-popup-animation-fadein {
    animation: 0.4s ease-out 0s 1 anmFadeIn;
    
}


.license-popup__title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.license-popup__cols {
    display: flex;

}
.license-popup__col{
    padding: 0 1.5rem;
    border-right: 1px solid #e3e3e3;
    width:50%;
}

.license-popup__col:last-child {
    border-right: none;
}

.license-popup__step {
   position: relative;
    margin-bottom: 1rem;
    padding-left: 3rem;
  
}
.license-popup__step-text {
  
    line-height: 1.4rem;
    font-size: 1rem;
    color: #66686B;
}

.license-popup__step b {
    font-weight: 600;
    color: #000;
}
.license-popup__step-number {
    position: absolute;
    left:0;
    top:0.2rem;
    font-size: 1rem;
    background-color: #1756F7;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
   
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-sizing: border-box;
}

.license-popup__img-box {
    text-align: center;
}
.license-popup__img-box img {
opacity: 0.9;
}

.license-btn-box {
    padding: 2rem 0;
    padding-bottom: 1rem;
    text-align: center;

}

.license-btn {
   
        background-color: #2865E0;
        border-radius: 0.375rem;
        padding: 0.9rem 1.2rem;
        display: inline-block;
        color:#fff;
        font-weight: 600;
        font-size: 0.9rem;
        transition: background-color 0.15s linear;
    
}

.license-btn:hover {
    background-color:  #1b55c9;
}


/* demo popup */

.demo-popup-box {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0,0,0);
    -webkit-transform-style: preserve-3d;
}

.demo-popup-placeholder {
    height: 100%;
}

.demo-popup--visible {
    visibility: visible;
    opacity: 1;
    transition: opacity ease 0.3s;
}

.demo-popup__back {
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.15);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.demo-popup {
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    z-index: 999;
    background-color: #fff;
    overflow: hidden auto;
    max-height: calc(-8rem + 100vh);
    width: 98%;
    max-width: 77rem;
    position: relative;
    padding: 0.3rem;
    padding-top:0;
    margin-top: 60px;
    max-height: 90%;
    height: 90%;
}

.demo-popup__btn {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    opacity: 0.8;
    cursor: pointer;
    color: #111111;
    font-size: 1.25rem;
}

.demo-popup__btn:hover {
    opacity: 1;
}

.demo-popup-animation-fadein {
    animation: 0.4s ease-out 0s 1 anmFadeIn;
}

.demo-popup__title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.demo-popup__cols {
    display: flex;
}

.demo-popup__col{
    padding: 0 1.5rem;
    border-right: 1px solid #e3e3e3;
    width:50%;
}

.demo-popup__col:last-child {
    border-right: none;
}

.demo-popup__step {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 3rem;
  
}

.demo-popup__step-text {
    line-height: 1.4rem;
    font-size: 1rem;
    color: #66686B;
}

.demo-popup__step b {
    font-weight: 600;
    color: #000;
}

.demo-popup__step-number {
    position: absolute;
    left:0;
    top:0.2rem;
    font-size: 1rem;
    background-color: #1756F7;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
   
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-sizing: border-box;
}

.demo-popup__img-box {
    text-align: center;
}

.demo-popup__img-box img {
    opacity: 0.9;
}

.demo-btn-box {
    padding: 2rem 0;
    padding-bottom: 1rem;
    text-align: center;
}

.demo-btn {
    background-color: #2865E0;
    border-radius: 0.375rem;
    padding: 0.9rem 1.2rem;
    display: inline-block;
    color:#fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.15s linear;
}

.demo-btn:hover {
    background-color:  #1b55c9;
}

.iframe-popup-wrap {
    height: 100%;
}

.iframe-popup-wrap > iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes anmFadeIn {

    0% {
        opacity: 0;
    }


    100% {
        opacity: 1;
    }
}

/* useful links */

.useful-links {
    display: flex;
    margin-top: 4rem;
    justify-content: space-around;
}

.useful-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    margin-bottom: 4rem;
    width:20%;
   
}

.useful-link:hover .useful-link__icon-box {
    transform: scale(1.15);
}
.useful-link:hover .useful-link__name {
   color:#000;
}


.useful-link__icon-box {
    border-radius: 50%;
    background-color: #f1f7ff;
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    transition: all 0.15s linear;
}

.useful-link__icon-box--bg {
    background-color: #E2E8F0;
}

.useful-link__icon {
    width: 2rem;
    height: 2rem;
  
}

.useful-link__name {
    font-weight: 500;
    font-size: 1.125rem;
    color: #272D37;
    transition: all 0.15s linear;
    text-align: center;
    line-height: 1.5rem;
}




@media (min-width: 1921px) {
    .lnd-wrap {max-width: 1640px;}
    
}


@media (max-width: 1200px) {
   
    html {font-size: 14px;}

   

    
}

@media (max-width: 1020px) {

    .license-popup__cols {
        flex-direction: column;
    }

    .license-popup__col {
        width:100%;
        padding:0;
        border-right: none;
    }
   
   
}




@media (max-width: 767px) {

    
    .license-popup__title {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .license-popup__img-box img {
        width:75%;
        max-width: 330px;
    }

    .license-popup__step {
        margin-bottom: 0;
    }
 

    .license-btn-box {
        padding: 1rem 0;
    }


    .useful-links {
        flex-wrap: wrap;
    }

    .useful-link {
        width: 50%;
    }
  
}


/* Bread crumbs */

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    color: var(--breadcrumbs-color);
    font-size: .875rem;
    font-weight: 400
}

.breadcrumbs>li {
    margin-bottom: 1rem
}

.breadcrumbs a {
    color: var(--breadcrumbs-color)
}

.breadcrumbs a:hover {
    text-decoration: underline !important;
}

.breadcrumbs>li>span {
    color: var(--breadcrumbs-active-color)
}

.breadcrumbs>li::after {
    content: "/";
    padding: 0 .7rem;
    opacity: .4
}

.breadcrumbs>li:last-child::after {
    content: "";
    padding: 0
}
