﻿@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: 'RobotoRegular';
	background: #fff;
    overflow-x: hidden;
}

@font-face {
	font-family: 'RobotoRegular';
	src: url('../fonts/Roboto-Regular.ttf');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'RobotoMedium';
	src: url('../fonts/Roboto-Medium.ttf');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'RobotoBold';
	src: url('../fonts/Roboto-Bold.ttf');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'RobotoItalic';
	src: url('../fonts/Roboto-Italic.ttf');
	font-weight: normal;
	font-style: normal;
}

ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
a, a:hover, a:focus{
	color: #333;
	text-decoration: none;
}
:focus{
	outline: 0;
	box-shadow: none;
}
button:focus {
    outline: none;
}

input.ng-invalid.ng-dirty
{
  border: 0px solid #dc3545;
  box-shadow: 0 0 3px #dc3545 !important;
}
.required{
  font-size: 80%;
  color: #dc3545;
}
 .required-fild{
   color: #dc3545 !important;
    font-size: 15px;
    margin: -3px 0px 0px 2px;
  }


  .home-main-mouse-scroll {
    height: 100%;
}

.stBubble2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: rgba(246, 225, 242,0.7);
}

.bubble-animation-main {
    position: absolute;
    right: 50px;
    width: 220px;
    top: -20px;
    z-index: 9;
}

    .bubble-animation-main svg {
        width: 100%;
    }

.bubble-buyer-seller {
    bottom: -140px;
    top: auto;
    right: auto;
    width: 200px;
}

    .bubble-buyer-seller .stBubble2 {
        fill: rgba(255,255,255,0.5);
    }

.home-main-multi-bubble {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

    .home-main-multi-bubble svg {
        position: absolute;
        bottom: -140px;
    }
.stFLOW2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: rgba(255,255,255,0.5);
}

/*================= Custome Checkbox ==================*/

.cust-check-main {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cust-check-main input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}
.cust-check-main input:checked ~ .checkmark {
    background-color: transparent;
}
.checkmark:after {
    content: "";
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.cust-check-main input:checked ~ .checkmark:after {
    opacity: 1;
    visibility: visible;
    border-color: #106649;
}

.cust-check-main .checkmark:after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


::-webkit-input-placeholder { 
  color: #b4b4b4;
  font-size: 14px;
}
::-moz-placeholder {
  color: #b4b4b4;
    font-size: 14px;
}
:-ms-input-placeholder {
  color: #b4b4b4;
    font-size: 14px;
}
:-moz-placeholder { 
  color: #b4b4b4;
    font-size: 14px;
}

/*========== Custome Radio =========*/

.top-head-btn li{
  display:inline-block;
  margin: 5px;
}
/* The container */
.cust-radio-main {
    display: inline-block;
    position: relative;
    padding-left: 27px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.cust-radio-main input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.cust-radio-main .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #f5f5f5;
    border-radius: 50%;
    border: 2px solid #106649;
}

/* When the radio button is checked, add a blue background 
.cust-radio-main input:checked ~ .checkmark {
    background-color: #2196F3;
}*/

/* Create the indicator (the dot/circle - hidden when not checked) */
.cust-radio-main:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.cust-radio-main input:checked ~ .checkmark:after {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Style the indicator (dot/circle) */
.cust-radio-main .checkmark:after {
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #106649;
}


/*=============  Home page  ==============*/

.navigation-main{
    background: #105a42;
    padding: 5px 15px ;
    float: left;
    width: 100%;
    position: relative;
    z-index: 90;
}
.navigation-left {
    float: left;
}
.navigation-left ul li, .navigation-right ul li{
	font-family: 'RobotoMedium';
    color: #fff;
    display: inline-block;
    border-right: 2px solid #dcdcdc;
    padding-right: 15px;
    margin-right: 15px
}
.navigation-left ul li i{
    margin-right: 7px;
}
.navigation-right ul li {
    border-right: 0;
    border-left: 2px solid #dcdcdc;
    padding-left: 15px;
    margin-left: 15px;
    padding-right: 0;
    margin-right: 0;
}
.navigation-right ul li:first-child{
    border-left: 0;
}
.navigation-left ul li:last-child{
    border: 0;
}
.navigation-right{
    float: right;
}
.navigation-right i{
    margin: 0 5px;
}

.menu-main {
    float: left;
    width: 100%;
    background: #106649;
    padding: 0 15px;
    text-align: center;
    z-index: 99;
    max-height: 65px;
    position: relative;
}
.menu-fix-add {
    position: fixed;
    z-index: 1005;
    transition: all 0.2s;
    top: 0;
}
.menu-fix-add.header-fixed {
    top: 0;
    margin-top: -30px;
    transition: all 0.5s;
    box-shadow: 0 0 10px rgba(0,0,0,1);
}
.logo-main {
    float: left;
    padding: 6px 0;
}
.menu-inner {
    display: inline-block;
}
.menu-inner ul li{
    float: left;
	font-family: 'RobotoMedium';
}
.menu-inner ul li a{
    color: #fff;
    display: block;
    padding: 22px 20px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.menu-inner ul li a:before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.menu-inner ul li a:hover:before, .menu-inner ul li a:focus:before, .menu-inner ul li a:active:before {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1)
}
.menu-inner ul li a:hover,
.menu-inner ul li a:focus{
    color: #106649;
}


.bcm-member-login-btn {
    float: right
}
.bcm-member-login-btn ul li{
    display: inline-block;
}
.bcm-member-login-btn ul li a{
    color: #fff;
    padding: 7px 17px;
    display: block;
    border: 2px solid #fff;
    border-radius: 50px;
    margin: 13px 0 13px 10px;
    transition: all 0.3s;
	font-family: 'RobotoMedium';

}
.bcm-member-login-btn ul li a:hover{
    background: #fff;
    color: #106649;
}
li.bcm-member-login-btn-mobile {
    display: none;
}

.home-main-slider {
    width: 100%;
    float: left;
    background: url(../images/home-main-bg.png);
    background-size: cover;
    background-position: bottom;
    position: relative;
    overflow: hidden;
}
.active_main{
    position: relative;
}
.active_main:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
}
.mr-top{
        margin-top: 94px;
}
.right-laptop {
    position: absolute;
    right: 0;
    top: 35%;
    background: url(../images/laptop-screen.png);
    background-repeat: no-repeat;
    -webkit-transform: translateY(-35%);
    -moz-transform: translateY(-35%);
    transform: translateY(-35%);
        background-position: 0 0;
    background-size: 100%;
}
.right-laptop img{
    width: 100%;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.swiper-slide-active .right-laptop img{
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.mainslider-left-content {
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-40%);
    -moz-transform: translateY(-40%);
    transform: translateY(-40%);
}
.mainslider-left-content h1{
    color: #323232;
	font-family: 'RobotoBold';
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
    top: -25px;
    transition: all 0.7s;
}
.mainslider-left-content p{
    color: #5a5a5a;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 10px;
    position: relative;
    right: -100px;
    transition: all 0.7s;
}
.swiper-slide-active .mainslider-left-content h1 {
    top: 0;
}
.swiper-slide-active .mainslider-left-content p {
    right: 0;
}
.home-main-slider .slider-app-download {
    position: absolute;
    bottom: 12%;
    left: 15px;
    z-index: 50;
}
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    background: url(../images/back-to-top-icon.png) #106649 no-repeat;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    background-position: 8px 5px;
    cursor: pointer;
    animation: back-to-top 2s infinite;
    display: none;
}

@-webkit-keyframes back-to-top {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(16, 102, 73, 0.7);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(16, 102, 73, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(16, 102, 73, 0);
    }
}

@keyframes back-to-top {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(16, 102, 73, 0.7);
        box-shadow: 0 0 0 0 rgba(16, 102, 73, 0.7);
    }

    70% {
        -moz-box-shadow: 0 0 0 15px rgba(16, 102, 73, 0);
        box-shadow: 0 0 0 10px rgba(16, 102, 73, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(16, 102, 73, 0);
        box-shadow: 0 0 0 0 rgba(16, 102, 73, 0);
    }
}

.slider-app-download h5{
    color: #37383b;
    font-size: 16px;
	font-family: 'RobotoMedium';
}
.slider-app-download ul li{
    display: inline-block;
}
.slider-app-download ul li a{
    background: #37383b;
    display: block;
    color: #fff;
    padding: 7px 20px 7px 60px;
    position: relative;
    border-radius: 5px;
    margin-right: 10px;
    transition: all 0.3s;
}
.slider-app-download ul li a:hover{
    background: #106649;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.6);
}
.slider-app-download ul li a img {
    position: absolute;
    left: 15px;
    top: 9px;
}
.slider-app-download ul li a span{
    font-size: 12px;
}
.swiper-slide{
    opacity: 0 !important;
}
.swiper-slide.swiper-slide-active{
    opacity: 1 !important;
}

.toggle {
    cursor: pointer;
    float: right;
    padding: 0 0 0 15px;
    position: relative;
    z-index: 999;
}

.navicon-button {
    display: inline-block;
    position: relative;
    padding: 30px 0;
    float: right;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    cursor: pointer;
    user-select: none;
    opacity: 1;
}

.navicon-button:hover {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
}

.navicon-button:hover .navicon:before, .navicon-button:hover .navicon:after {
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.navicon {
    position: relative;
    width: 25px;
    height: 3px;
    background: #FFF;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-border-radius: 2.5rem;
    -moz-border-radius: 2.5rem;
    border-radius: 2.5rem;
}

.navicon:before, .navicon:after {
    display: block;
    content: "";
    height: 3px;
    width: 30px;
    background: #FFF;
    position: absolute;
    z-index: -1;
    -webkit-transition: 0.5s 0.25s;
    -moz-transition: 0.5s 0.25s;
    -ms-transition: 0.5s 0.25s;
    -o-transition: 0.5s 0.25s;
    transition: 0.5s 0.25s;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
}

.navicon:before {
    top: 8px;
}

.navicon:after {
    top: -8px;
}

.menu-icon-open:not(.steps) .navicon:before,
.menu-icon-open:not(.steps) .navicon:after {
    top: 0 !important;
}

.menu-icon-open .navicon:before,
.menu-icon-open .navicon:after {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}


/* × and + */
.menu-icon-open.x .navicon {
    background: transparent;
}

.menu-icon-open.x .navicon:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-icon-open.x .navicon:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.toggle {
    display: none;
}


.main-menu-open {
    position: relative;
}
.screen-auto-move {
    position: absolute;
    bottom: 13px;
    right: 50px;
    width: 75px;
    height: 75px;
    text-align: center;
    border-radius: 50%;
    padding: 5px 0 0 0;
    cursor: pointer;
    z-index: 1002;
}
.screen-auto-move:before {
    content: '';
    background: url(../images/mouse-shadow.png);
    
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -10px;
    
}
.screen-auto-move img{
    animation: mouse-scroll 1.5s infinite;
}

@-webkit-keyframes mouse-scroll {
    0% {
        margin-top: 8px;   
    }

    50% {
       margin-top: 0px;
    }

    100% {
       margin-top: 8px;
    }
}

@keyframes mouse-scroll {
    0% {
        margin-top: 8px;   
    }

    50% {
       margin-top: 0px;
    }

    100% {
       margin-top: 8px;
    }
}

.now-on-lhd-trade-main {
    float: left;    
    margin-top: 0px;
    padding-top: 70px;
    position: relative;
}
.now-on-lhd-trade-main:before {
    content: '';
    background: url(../images/pattern-lg.png);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    background-position: -20px 0;
    background-attachment: fixed;
    width: 100%;
    background-size: contain;
    z-index: 1;

  display: none;
}
.now-on-lhd-trade-subbg {
    position: absolute;
    background: url(../images/now-on-lgd-trade-bg.png);
    background-repeat: no-repeat;
    background-position: 0 15px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.section-heading {
    text-align: center;
    position: relative;
    z-index: 90;
}
.section-heading h5{
    color: #323232;
    font-size: 30px;
	font-family: 'RobotoMedium';

}
.section-heading p{
    color: #646464;
}
.shadow-box {
    background: #fafafa;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    border-radius: 5px;
    height: 100%;
    padding: 0 15px 0 15px;
    position: relative;
    z-index: 90;
}
.my-ac-four-box-main ul {
    float: left;
    width: 100%;
    padding: 0 0 25px 0;
}
.my-ac-four-box-main ul li {
    float: left;
    width: 50%;
    color: #323232;
    padding: 10px 0;
    font-family: 'RobotoBold';
    font-size: 44px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.my-ac-four-box-main ul li:last-child {
    text-align: right;
}
.my-ac-four-box-main:hover ul li {
    color: #106649;
}
.my-ac-four-box-main ul li img {
    filter: grayscale(100) brightness(0.7);
    -webkit-filter: grayscale(100) brightness(0.7);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.my-ac-four-box-main:hover ul li img {
    filter: none;
    -webkit-filter: none;
}
.my-ac-four-box-main h5 {
    float: left;
    width: 100%;
    color: #787878;
    font-family: 'RobotoMedium';
    font-size: 18px;
    text-transform: capitalize;
}
.my-ac-four-box-main h5 {
    float: left;
    width: 100%;
    color: #787878;
    font-family: 'RobotoMedium';
    font-size: 18px;
    text-transform: capitalize;
}
.my-ac-bottom-patten {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.my-ac-bottom-patten img {
    width: 100%;
}
.buyer-seller-main{
    float: left;
    width: 100%;
    background: url(../images/seller-buyer-bg-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: -45px;
    padding-top: 45px;
    padding-bottom: 80px;
    z-index: 9;
}
.buyer-seller-main:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0,0,0,0.7);
}
.buyer-seller-main .section-heading h5, .buyer-seller-main .section-heading p {
    color: #fff;
}
.buyer-seller-box-main {
    background: url(../images/buyer-seeler-background.png) #fff;
    position: relative;
    z-index: 90;
    background-position: 0 bottom;
    background-repeat: no-repeat;
    border-radius: 5px;
}
.buyer-seller-heading img{

}
.buyer-seller-heading span{
    color: #106649;
    font-size: 24px;
	font-family: 'RobotoBold';
    margin-left: 15px;
    position: relative;
    top: 4px
    
}
.buyer-seller-heading {
    padding: 10px 15px;
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
}
.buyer-seller-content {
    color: #464646;
	font-family: 'RobotoMedium';
    font-size: 15px;
    line-height: 24px;
    padding: 25px 15px 10px;
}
.buyer-seller-content ul{
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 20px;
}
.buyer-seller-content ul li{
    padding: 5px 0;
}
.buyer-seller-content ul li i{
    color: #106649;
    margin-right: 5px;
}
.buyer-seller-price {
    text-align: center;
    padding: 20px 0;
}
.buyer-seller-price h2{
    display: inline-block;
	font-family: 'RobotoBold';
    font-size: 56px;
    color: #106649;
    padding: 0 20px 0 0;
}
.buyer-seller-price h3 {
    display: inline-block;
    font-size: 28px;
	font-family: 'RobotoBold';  
    color: #787878;
    position: relative;
    padding: 0 5px;
}
.buyer-seller-price h3:before{
    content: '';
    width: 100%;
    height: 2px;
    background: #787878;
    position: absolute;
    transform: rotate(7deg);
    top: 50%;
}
.buyer-seller-price h2 span, .buyer-seller-price h3 span{
    font-size: 20px;
}
.buyer-seller-button {
    text-align: center;
}
.buyer-seller-button button{
    background: #106649;
    border: 0;
    color: #fff;
    font-family: 'RobotoBold';
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 50px;
    position: relative;
    bottom: -20px;
    cursor: pointer;
    transition: all 0.3s;
}
.buyer-seller-button button:hover{
    box-shadow: 0px 2px 5px rgba(0,0,0,1);
}

.app-feature-main {
    float: left;
    width: 100%;
    position: relative;
}
.app-feature-main-subbg{
    background: url(../images/app-feature-bg.png) #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.app-feature-main-subbg:before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/pattern-lg.png) no-repeat;
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
}
.app-feature-content {
    float: left;
    width: 100%;
    padding: 30px 0 10px;
}
.app-feature-content ul li{
    float: left;
    width: 100%;
    position: relative;
    padding: 10px 10px 10px 90px;
    margin: 5px 0;
    border-radius: 5px;
    transition: all 0.3s;
    height: auto !important;
    opacity: 1 !important;
    transform: none !important;
    cursor: pointer;
    z-index: 99;
}
.app-feature-content ul li.active, .app-feature-content ul li:hover{
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.8);
}

.app-feature-content ul li h5{
    font-family: 'RobotoBold';
    font-size: 18px;
    color: #5a5a5a;
}
.app-feature-content ul li p{
    color: #969696;
    margin-bottom: 0;
}

.app-feature-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    box-shadow: 0 0 2px rgba(0,0,0,0.30);
    text-align: center;
    /* padding: 14px 0; */
    border-radius: 50%;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s;
}
.app-feature-icon img{
    filter: grayscale(1) brightness(0.7);
}
.app-feature-content ul li.active .app-feature-icon, .app-feature-content ul li:hover .app-feature-icon {
    background: #106649;
    color:white;
}
.app-feature-content ul li.active .app-feature-icon img, .app-feature-content ul li:hover .app-feature-icon img{
    filter: grayscale(1) brightness(5);
}
.app-feature-content ul li:hover{
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
}
.app-feature-content ul li:hover h5, .app-feature-content ul li:hover p{
    color: #595959;
}
.app-feature-row {

}

.app-feature-slider-img {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.app-feature-white-roung {
    background: rgba(230,230,230,0.7);
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.app-feature-white-roung:before{
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: #fff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.app-feature-mobile-screen {
    position: relative;
    background: url(../images/app-feature-mobile-screen-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 99;
    float: left;
    width: 100%;
    height: 100%;
}
.app-feature-mobile-screen img{
    width: 100%;
    -webkit-transform: rotate(46.3deg) scale(0.8) translate(1%, -5%);
    -moz-transform: rotate(46.3deg) scale(0.8) translate(1%, -5%);
    transform: rotate(46.3deg) scale(0.8) translate(1%, -5%);
}

.user-testimonial-main {
    width: 100%;
    float:left;
    background: #f5f5f5;
}
.testimonial-main {
    margin-top: 25px;
	font-family: 'RobotoMedium';
    padding-bottom: 30px;
}
.testimonial-slider .owl-item.active.center {
    transform: scale(1.15);
    transition: all 0.3s;
    opacity: 1;
    color: #505050;
    background: #fff;
}
.testimonial-slider .owl-item{
    transform: scale(0.9);
    transition: all 0.3s;
    opacity: 0.70;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    border-radius: 5px;
    background: #fcfcfc;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;

}
.testimonial-inner-box {
    padding: 20px 20px;
}
.testimonial-inner-box p{
    margin-bottom: 20px;
    line-height: 25px;
}
.testimonial-user-info {
    padding-left: 70px;
}
.testimonial-user-info img{
    width: auto !important;
    float: left;   
    position: absolute;
    left: 15px; 
    border: 2px solid #106649;
    border-radius: 50%;
    
}
.testimonial-slider .owl-dots .owl-dot span{
    background: #b0c6bf;
    margin: 4px 4px;
    transition: all 0.3s;
}
.testimonial-slider .owl-dots .owl-dot.active span {
    background: #105a42;
    width: 18px !important;
}
.testimonial-info-set {

}
.testi-name {
    font-size: 16px;
}
.testi-comment {
    font-size: 11px;
	font-family: 'RobotoRegular';

}

.footer-download {
    float: left;
    width: 100%;
    background: url(../images/footer-app-download-bg.png) #fff;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding: 45px 0;
    margin: 0 0 0 0;
    box-shadow: 2px 0 5px rgba(0,0,0,0.4);
}
.footer-download .slider-app-download h5 {
    color: #37383A;
    font-size: 30px;
	font-family: 'RobotoMedium';
    margin-bottom: 20px;
}
.footer-main{
    float: left;
    width: 100%;
    background: #2a2a2a;
    padding: 30px 0 0;
    position: relative;
}
.footer-heading {
    border-bottom: 2px solid #323232;
    padding: 15px 0;
    margin: 0 0 20px;
    display: inline-block;
    width: 100%;
}
.footer-heading h5{
    color: #FFFFFF;
    font-size: 18px;
	font-family: 'RobotoBold';
    margin: 16px 0;
}
.f-discription p{
    color: #C7C7C7;
	font-family: 'RobotoMedium';
    line-height: 23px;
}
.f-discription h6{
    color: #C7C7C7;
	font-family: 'RobotoMedium';
    line-height: 23px;
    font-size: 14px;
}
.f-discription ul li{
    width: 100%;
    float: left;
}
.f-discription ul li a{
    color: #C8C8C8;
	font-family: 'RobotoMedium';
    display: block;
    padding-bottom: 20px;
    transition: all 0.3s;
}
.f-discription ul li a:hover{
    color: #fff;
}
.footer-email ul li{
    float: left;
    width: 75%;
}
.footer-email ul li input{
    border: 0;
    background: transparent;
    width: 95%;
    color: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #404040;
    font-size: 14px;
}
.footer-email ul li button{
    background: #12674a;
    border: 0;
    color: #fff;
    padding: 10px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
	font-family: 'RobotoMedium';

}
.footer-email ul li:last-child{
    width: 25%;
}
.social-links ul li{
    text-align: center;
    padding: 0;
}
.social-links ul li a{
    display: inline-block;
    background: #c7c7c7;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 17px 0;
    font-size: 18px;
    line-height: 0;
    color: #2a2a2a;
    border-radius: 50%;
    transition: all 0.3s;
}
.social-links ul li a:hover{
    color: #fff;
}
.s-facebook:hover{
    background: #3b5999;
}
.s-twitter:hover{
    background: #55acee;
}
.s-google-plus:hover{
    background: #dd4b39;
}
.s-instagram:hover{
    background: #3f729b;
}
.s-youtube-play:hover{
    background: #cd201f;
}
.footer-copyright {
    width: 100%;
    background: #181818;
    padding: 13px 10px;
    margin-top: 10px;
}
.copyright-content{
    color: #fff;
    display: inline-block;
}
.copyright-content a{
    color: #fff;
}




/*=============== Diamond 4C ==============*/


.breadcrumb-headding {
    background: #fafafa;
    padding: 20px 0 80px;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.breadcrumb-headding h6 {
    color: #464646;
    font-family: 'RobotoMedium';
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.breadcrumb-headding h6:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    background: #787878;
    width: 30px;
    height: 2px;
}

.fixed-box {
    padding: 30px;
    margin-bottom: 40px;
    margin-top: -50px;
}
.diamond-heading-fc {
    margin-bottom: 35px;
}
.diamond-heading-fc h5{
	font-family: 'RobotoBold';
    font-size: 30px;
    color: #323232;
    text-align: center;
}
.diamond-heading-fc .about-detail p{
    color: #595959;
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
    line-height: 32px;
}
.diamond-carat-box {
    background: #f5f5f5;
    text-align: center;
    width: 100%;
    height: 130px;
    padding: 15px 0;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
    border-radius: 5px;
}
.diamond-carat-info{
    padding: 8px 0 0 0;
}
.diamond-carat-info h6{
    color: #595959;
	font-family: 'RobotoMedium';
    font-size: 16px;
    text-align: center;
    margin: 0 0 0 0;
}
.common-h4 {
    color: #323232;
    font-family: RobotoBold;
    text-align: center;
    margin-bottom: 30px;
}
.dim-carat-weight h5{
    color: #323232;
    font-family: RobotoBold;
    font-size: 24px;
    margin-bottom: 20px;
}
.dim-carat-weight p {
    color: #595959;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 10px;
}
ul.dimcolor-list {
    margin-bottom: 15px;
}
ul.dimcolor-list li{
    color: #595959;
    font-family: RobotoBold;
    font-size: 15px;
    padding: 4px 0;
}






/*=================================== Other Pages ===============================*/

.gray-bg {
    background: #f5f5f5;
}
.common-h4 {
    color: #323232;
    font-family: RobotoBold;
    text-align: center;
    margin-bottom: 30px;
}

.common-p {
    color: #595959;
    font-family: RobotoRegular;
    text-align: center;
    margin-bottom: 5px;
}
.common-p-privcy-policy {
    color: #595959;
    font-family: RobotoRegular;
    /* text-align: center; */
    margin-bottom: 5px;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.br-0 {
    border-radius: 0 !important;
}

.p-lr {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.breadcrumb-headding {
    background: #fafafa;
    padding: 20px 0 80px;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.breadcrumb-headding h6 {
    color: #464646;
    font-family: RobotoMedium;
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.breadcrumb-headding h6:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    background: #787878;
    width: 30px;
    height: 2px;
}

.common-box {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.fixed-box {
    padding: 30px;
    margin-bottom: 40px;
    margin-top: -50px;
}

.about-detail h6 {
    color: #323232;
    font-family: RobotoBold;
    margin-bottom: 1rem;
}

.about-detail p {
    color: #595959;
    font-family: RobotoRegular;
    margin-bottom: 5px;
}

.achive-succ-detail {
    padding: 50px 0;
}

.achive-succ-detail .detail-box-main {
    justify-content: center;
    padding-top: 40px;
}

.achive-succ-detail .detail-box {
    background: #fafafa url(../images/bg-shape.png);
    background-repeat: no-repeat;
    background-position: bottom;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px 25px 38px;
    position: relative;
}

.achive-succ-detail .detail-box:hover:before {
    right: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.achive-succ-detail .detail-box:hover:after {
    top: 50%;
    bottom: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.achive-succ-detail .detail-box:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.achive-succ-detail .detail-box:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.achive-succ-detail .detail-box ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achive-succ-detail .detail-box ul li h1 {
    color: #323232;
    font-family: RobotoBold;
    text-transform: capitalize;
}

.achive-succ-detail .detail-box ul li p {
    color: #4b4b4b;
    font-family: RobotoRegular;
    margin: 15px 0 0;
}

.achive-succ-detail .detail-box ul li img {
    width: 60px;
}

.collapse-panel .card {
    margin-bottom: 10px;
    border: 0;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.collapse-panel .card-header {
    border-bottom: 0;
    background: #fff;
    padding: 1.25rem;
}

.collapse-panel .card-link {
    color: #595959;
    font-family: RobotoMedium;
    position: relative;
}

.collapse-panel .card-link span {
    color: #fff;
    background: #106649;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    margin-right: 20px;
    display: inline-block;
}

.collapse-panel .card-link span i {
    -webkit-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.collapse-panel a[aria-expanded="true"] span i {
    -webkit-transform: rotate(-225deg) translatey(3%);
    -ms-transform: rotate(-225deg) translatey(3%);
    transform: rotate(-225deg) translatey(3%);
}


/*
.btn-question {
    background: #106649;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-family: RobotoBold;
    padding: 11px 35px;
    margin: 20px 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-question:focus {
    box-shadow: none;
}

.btn-question:hover {
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
}
*/

.subscribe-sec {
    padding: 50px 0;
}

.subscribe-sec .form-control {
    background: #f8f8f8;
    border-radius: 25px;
    border: 1px solid #ececec;
    height: auto;
    padding: 12px 15px;
    width: 35%;
    font-size: 14px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.subscribe-sec .form-control:focus {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.subscribe-sec .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #595959;
    font-family: RobotoItalic;
}

.subscribe-sec .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #595959;
    font-family: RobotoItalic;
}

.subscribe-sec .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #595959;
    font-family: RobotoItalic;
}

.subscribe-sec .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #595959;
    font-family: RobotoItalic;
}

.subscribe-sec .btn {
    background: #106649;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-family: RobotoBold;
    padding: 12px 22px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border: 1px solid #ececec;
    margin-left: -40px;
}

.subscribe-sec .btn:focus {
    box-shadow: none;
}

.contact-form label {
    color: #595959;
    font-family: RobotoMedium;
}

.contact-form {
    margin-top: 40px;
}

.contact-form .form-control {
    background: #f8f8f8;
    border: 1px solid #ececec;
    height: auto;
    padding: 15px 15px;
    font-size: 14px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-form .form-control:focus {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.contact-form .common-btn {
    padding: 15px 30px;
}

.contact-form textarea {
    resize: none;
}

.common-btn {
    background: #106649;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-family: RobotoBold;
    padding: 11px 30px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin-top: 15px;
}

.common-btn:focus {
    box-shadow: none;
}

.common-btn:hover {
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
}

.aboutus-bg {
    background-image: url(../images/map-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 750px;
}

.privacy-whylgd-detail h5 {
    color: #323232;
    font-family: RobotoBold;
    margin: 28px 0;
}

.privacy-whylgd-detail p {
    text-align: left;
    margin-bottom: 16px;
    line-height: 2;
}

.privacy-whylgd-detail p:last-child {
    margin-bottom: 0;
}

.terms-description-one {
    margin: 30px 0 0;
}

.terms-description-one p {
    color: #595959;
    font-family: RobotoMedium;
}

.terms-description-one h5 {
    color: #323232;
    font-family: RobotoBlack;
    font-size: 14px;
    margin: 30px 0 0;
}

.terms-description-two {
    margin-bottom: 20px;
}

.terms-description-two h3 {
    color: #464646;
    font-family: RobotoBold;
    font-size: 14px;
    margin: 24px 0 12px;
}

.terms-description-two p {
    color: #787878;
    line-height: 2;
    margin-bottom: 0;
}

.terms-description-two a {
    color: #0000ff;
    text-decoration: underline;
}

.terms-description-two ul li {
    position: relative;
    padding-left: 25px;
}

.terms-description-two span {
    color: #787878;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 2;
}

.process-main {
    margin-bottom: 50px;
}

.process-main h5 {
    color: #323232;
    font-family: RobotoBold;
    margin: 45px 0 30px;
}

.process-main .common-p {
    text-align: left;
}

.process-main .p {
    line-height: 2;
}

.home-main-mouse-scroll .swiper-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 5px;
    margin: 8px 0 8px auto;
    border-radius: 50px;
    transition: all 0.4s;
}
.home-main-mouse-scroll .swiper-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: #106649;
    border-radius: 50px;
}
.waveHorizontals{
    width: 100%;
    height: 20px;
    position: absolute;
    overflow: hidden;
    top: -18px;
}
.waveHorizontal{
	width: 200%;
	height: 100%;
	display: block;
	position:absolute;
	left:0; bottom:0;
	background-repeat:repeat-x;
	background-position:left bottom;
	background-size:350px 100%;
	transform-origin:0 100% 0;
	
	/* animation: move linear infinite; */
	animation-name:move;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
}
#waveHorizontal2{
	background-image:url(../images/wave2.svg);
	animation-delay: -2s;
	animation-duration: 5s;	
}
#waveHorizontal3{
	background-image:url(../images/wave3.svg);
	animation-delay: -1s;
	animation-duration: 3s;
}

@keyframes move{
	0% {		transform: translate(-175px,0px) scale(1,0.8);}
	50% {		transform: translate(-100px,0px) scale(1,0.5);}
	100% {	    transform: translate(0px,0px) scale(1,0.8);}
}
@-moz-keyframes move{
	0% {		transform: translate(-175px,0px) scale(1,0.8);}
	50% {		transform: translate(-100px,0px) scale(1,0.5);}
	100% {	    transform: translate(0px,0px) scale(1,0.8);}
}
@-webkit-keyframes move{
	0% {		transform: translate(-175px,0px) scale(1,0.8);}
	50% {		transform: translate(-100px,0px) scale(1,0.5);}
	100% {	    transform: translate(0px,0px) scale(1,0.8);}
}


/*plans & pricing page css*/

.plans-and-pricing-detail {
    background: #fff;
    padding: 50px 0;
}

.plans-and-pricing-detail-tab .nav-tabs {
    border-bottom: 0;
}

.plans-and-pricing-detail-tab .nav {
    justify-content: center;
    padding: 40px 0;
}

.plans-and-pricing-detail-tab .nav-tabs .nav-link {
    border: 2px solid #106649;
    text-align: center;
    font-family: RobotoBold;
    -webkit-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.plans-and-pricing-detail-tab .nav-tabs .nav-link.active {
    background-color: #fff;
    color: #106649;
    border-radius: 25px;
}

.plans-and-pricing-detail-tab .nav-tabs li:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.plans-and-pricing-detail-tab .nav-tabs li:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.plans-and-pricing-detail-tab .nav-tabs li:first-child a {
    border-radius: 25px;
}

.plans-and-pricing-detail-tab .nav-tabs li:last-child a {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.plans-and-pricing-detail-tab .nav-tabs .nav-item {
    width: 150px;
    background: #106649;
}

.plans-and-pricing-detail-tab .nav-link {
    padding: 0.7rem 1rem;
    color: #fff;
}

.plans-and-pricing-detail-tab .tab-content {
    background: #fff;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 0 0;
}

.plans-and-pricing-detail-tab h5 {
    color: #464646;
    font-family: RobotoMedium;
    margin-bottom: 20px;
}

.plans-and-pricing-detail-tab .form-group {
    margin-bottom: 2rem;
}

.plans-and-pricing-detail-tab label {
    color: #787878;
    font-family: RobotoRegular;
    width: 100%;
    padding-left: 10px;
}

.plans-and-pricing-detail-tab .form-control {
    background: #fafafa;
    border: 0;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    padding: 12px 15px;
    height: auto;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.plans-and-pricing-detail-tab .form-control::-webkit-input-placeholder {
    color: #787878;
    font-family: RobotoItalic;
}

.plans-and-pricing-detail-tab .form-control:focus {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.plans-and-pricing-detail-tab .input-one {
    width: 15%;
    display: inline-block;
    margin-right: 5px;
}

.plans-and-pricing-detail-tab .input-one::-webkit-input-placeholder {
    color: #464646;
    font-family: RobotoMedium;
}

.plans-and-pricing-detail-tab .input-two {
    width: 82%;
    display: inline-block;
}

.plans-and-pricing-detail-tab .hr-one {
    border-top: 2px solid #ededed;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.plans-and-pricing-detail-tab .select2-container {
    width: 100% !important;
}

.plans-and-pricing-detail-tab .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 12px 15px;
    line-height: inherit;
}

.plans-and-pricing-detail-tab .select2-container .select2-selection--single {
    height: auto;
    background-color: #fafafa;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    border: 0;
}

.plans-and-pricing-detail-tab .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 9px;
    right: 13px;
}

.plans-and-pricing-detail-tab .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #464646 transparent transparent transparent;
    border-width: 7px 6px 0 6px;
}

.plans-and-pricing-detail-tab .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #464646 transparent;
    border-width: 0 6px 7px 6px;
}

.plans-and-pricing-detail-tab .select2-container .select2-selection--single:focus {
    outline: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: 0;
}

.plans-and-pricing-detail-tab .form-tab .nav-tabs .nav-item {
    width: 50%;
    background: #464646;
}

.plans-and-pricing-detail-tab .form-tab .nav-link {
    border: 2px solid #464646;
}

.plans-and-pricing-detail-tab .form-tab .nav-link.active {
    color: #464646;
}

.plans-and-pricing-detail-tab h6 {
    font-size: 19px;
    color: #106648;
    font-family: RobotoBold;
    margin: 0;
    padding: 12px 0;
}

.plans-and-pricing-detail-tab .my-checkbox label {
    padding-left: 10px;
    padding-top: 5px;
    cursor: pointer;
}

.plans-and-pricing-detail-tab .my-checkbox .custom-control {
    margin: 10px 0;
}

.plans-and-pricing-detail-tab .my-checkbox .custom-control-label::before {
    width: 22px;
    height: 22px;
    background: #f5f5f5;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

.plans-and-pricing-detail-tab .my-checkbox .custom-control-label::after {
    width: 22px;
    height: 22px;
}

.plans-and-pricing-detail-tab .my-checkbox .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #106649;
}

.plans-and-pricing-detail-tab .hr-two {
    border-top: 1px solid #e6e6e6;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 0;
}

.plans-and-pricing-detail-tab .btn {
    margin: 30px 0;
    background: #106649;
    color: #fff;
    font-family: RobotoBold;
    padding: 12px 50px;
}

.plans-and-pricing-detail-tab .btn:focus {
    box-shadow: none;
}

.plans-and-pricing-detail-tab .btn:hover {
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.5);
}

.multiselect-item-checkbox input[type=checkbox] + div:before {
    color: #106649 !important;
    border: 2px solid #106649 !important;
}
.multiselect-dropdown .dropdown-btn {
    padding: 12px 15px !important;
}

.multiselect-dropdown > div > span {
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    border: 0 !important;
    background:#fafafa;
}
.multiselect-dropdown .dropdown-btn{
    color: #787878;
    font-family: RobotoItalic;
}
.multiselect-dropdown .dropdown-down{
    border-top: 7px solid #464646 !important;;
    border-left: 7px solid transparent !important;;
    border-right: 7px solid transparent !important;;
}

.multiselect-dropdown .dropdown-btn .dropdown-up{
    border-bottom: 7px solid #464646 !important;
    border-left: 7px solid transparent !important;
    border-right: 7px solid transparent !important;
}

/*=============== client section ==============*/
.client-sec-main {
    display: inline-block;
    width: 100%;
    padding: 30px 0;    
}
.top-client-logo {
    margin-bottom: 30px;
    text-align: center;
}
.top-client-logo img {
    width: 187px;
    height: 125px;
}
.top-client-logo a {
    display: block;
    overflow: hidden;
    /*box-shadow: 0 0 4px rgba(0,0,0,0.07);*/
    border-radius: 5px;
    transition: all 0.7s;
}

.buyer-wrapper .modal-dialog {
    max-width: 850px;
}
.buyer-wrapper button.close {
    position: absolute;
    right: 15px;
    color: #0E6649;
    opacity: 1;
    top: 5px;
    z-index: 3;
}
.buyer-left-sec {
    background-image: linear-gradient(to right, #0e6649 , #166836);
    text-align: center;
    padding: 25px 15px 10px 15px;
    height: 100%;
    position: relative;
    z-index: 2;
}
.top-head h3 {
    color: #fff;
    font-size: 30px;
    font-family: 'RobotoBold';
}
.top-head p {
    color: #fff;
    font-size: 18px;
}
.center-txt {
    padding: 40px 0px;
    position: relative;
    z-index: 2;
}
.center-txt h2 {
    color: #fff;
    font-size: 18px;
    font-family: 'RobotoBold';
    margin-bottom: 0;
    position: absolute;
    top: 40px;
    left: 23%;
    text-align: center;
    z-index: 1;
}
.center-txt p {
    color: #fff;
    font-size: 130px;
    font-family: 'RobotoBold';
}
.end-txt {
    position: relative;
    z-index: 2;
}
.end-txt h4 {
    color: #fff;
    font-size: 16px;
    position: relative;
} 
.end-txt h4:before {
    content: "";
    position: absolute;
    top: 9px;
    height: 1px;
    width: 100px;
    background-color: #094833;
    left: 30px;
    margin: 0 auto;
}
.end-txt h4:after {
    content: "";
    position: absolute;
    top: 9px;
    height: 1px;
    width: 100px;
    background-color: #094833;
    right: 30px;
    margin: 0 auto;
}
.end-txt p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding-top: 15px;
}
.back-pattern {
    position: absolute;
    left: 0;
    z-index: 1;
}
.back-pattern.ptn-1 img {
    width: 180px;
}
.back-pattern.ptn-1 {
    top: 100px;
}
.back-pattern.ptn-2 {
    bottom: 0;
}
.back-pattern.ptn-3 {
    bottom: 0;
    right: 0;
    left: auto;
}
.back-pattern.ptn-3 img {
    width: 150px;
}
.back-round-pattern {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.back-round-pattern img {
    height: 100%;
}
.buyer-right-sec {
    padding: 20px 15px 10px 15px;
    text-align: center; 
    position: relative;
    z-index: 2;   
}
.buyer-logo {
    text-align: center;
    position: relative;
    padding: 30px 0;
}
.buyer-logo img {
    width: 190px;
    margin: 0 auto;
}
.buyer-img {
    padding: 20px 0 10px 0;
}
.buyer-code {
    padding-top: 15px;
    position: relative;
    z-index: 2;
}
.lg-top-img {
    position: absolute;
    top: 0;
    left: 0;
}
.lg-top-img img {
    width :100px;
}
.lg-bottom-img {
    position: absolute;
    bottom: 0;
    right: 0;
}
.lg-bottom-img img {
    width :125px;
}
.buyer-code h5 {
    font-size: 16px;
    font-family: 'RobotoBold';
    color: #0E6649;
    margin: 0;
}
.buyer-code h3 {
    font-size: 24px;
    font-family: 'RobotoBold';
    color: #0E6649;
    display: inline-block;
    padding: 12px 40px;
    border: 2px dashed #0E6649;
    margin: 10px 0;  
}
.buyer-code p {
    font-size: 13px;    
    color: #0E6649;    
}
.termncondition a {
    font-size: 12px;
    color: #0E6649;
    font-family: 'RobotoBold';    
    writing-mode: tb-rl;
    margin: 0;
    transform: rotate(180deg);
    float: right;
    position: absolute;
    bottom: 10px;
    right: 7px;
    z-index: 2;
}

.buyer-promo-code {
    padding: 20px;
    border: 2px dashed #c2c2c2;
    background-color: #fcfcfc;
}
.buyer-promo-code p {
    color: #595959;
    font-family: RobotoRegular;
    margin-bottom: 5px;
}
.buyer-promo-code p img { 
    padding-right: 10px;
    width: 35px;
}
.buyer-promo-code label {
    color: #464646;
    font-family: 'RobotoBold'; 
    padding-left: 0px;
}
.by-promo-code a {
    padding: 10px 30px;
    background-color: #d5f9ed;
    color: #106649;
    border: 2px dashed #106649;
    font-family: 'RobotoBold';
    font-size: 16px;
}

#tawkchat-container {
    z-index: 999 !important;
}






@media (max-width: 1199px) {
    .menu-inner ul li a {
        padding: 22px 10px;
    }
    .collapse-panel .card-link span {
        margin-right: 11px;
    }
    .plans-and-pricing-detail-tab .input-one {
        width: 20%;
    }
    .plans-and-pricing-detail-tab .input-two {
        width: 77%;
    }
    .plans-and-pricing-detail-tab .my-checkbox label {
        padding-top: 0;
    }
}

@media (max-width: 1024px) {

    .app-feature-mobile-screen img{
        width: 100%;
    }
    .mainslider-left-content p{
      margin-bottom: 0;
      line-height:22px;
    }
    .home-main-slider .slider-app-download {
      bottom: 7%;
    }

}

@media (max-width: 991px) {
    .menu-inner {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.85);
        z-index: 999;
        transition: 0.8s;
    }
    .toggle {
        display: block;
    }
    .main-menu-open .menu-inner {
        opacity: 1;
        visibility: visible;
    }
    .menu-inner ul {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width:100%;
        padding-top: 30px;
    }
    .menu-inner ul li {
        width: 100%;
    }
    .menu-inner ul li a {
        padding: 15px 10px;
        font-size: 18px;
        width: 100%;
    }
    .md-20 {
        margin-bottom: 20px;
    }
    .app-feature-white-roung {
        display: none;
    }
    .f-discription ul li a {
        padding-bottom: 10px;
    }
    .footer-heading {
        padding: 5px 0;
        margin: 0 0 10px;
    }
    .testimonial-inner-box {
        padding: 15px 10px;
    }
    .fixed-box {
        padding: 10px;
    }
    .testimonial-slider .owl-item.active.center, .testimonial-slider .owl-item{
        transform: none;
    }
    .right-laptop {
        background-position: 8px 0px;
        background-size: 96%;
    }
    .plans-and-pricing-detail-tab .input-one {
        width: 25%;
    }
    .plans-and-pricing-detail-tab .input-two {
        width: 70%;
    }
    .plans-and-pricing-detail-tab .form-tab .nav-tabs .nav-link {
        font-size: 10px;
    }
    .plans-and-pricing-detail-tab .my-checkbox label {
        padding-top: 0;
    }
    .plans-and-pricing-detail-tab h6 {
        margin-top: 0;
    }
    .buyer-wrapper .modal-dialog {
        max-width: 730px;
    }

}
@media (max-width: 767px) {
    .top-head-btn li .common-btn{
      margin-top: 0;
      padding: 6px 20px;
      font-size: 13px;
    }
    li.bcm-member-login-btn-mobile {
        display: block;
    }
    .mainslider-left-content, .right-laptop {
        position: relative;
        transform: none;
        padding-bottom: 5px;
        top: 5px;
        background-size: 95%;
        background-position: 8px 0;
    }
    .right-laptop {
        top: 0;
    }
    .home-main-slider .slider-app-download h5 {
        float: left;
        padding: 10px 10px 0 0;
    }

    .home-main-slider .slider-app-download {
        bottom: 15px;        
        z-index: 99;
        white-space: nowrap;
    }
    .slider-app-download ul li a {
        padding: 7px 10px 7px 50px;
    }
    .home-main-slider .slider-app-download ul li a {
        padding: 6px 10px;
    }
    .home-main-slider .slider-app-download ul li a img {
        position: relative;
        top: auto;
        left: auto;
    }
    .app-feature-content ul li {
        padding: 10px 10px 10px 80px;
    }
    .app-feature-icon {
        left: 5px;
    }
    .screen-auto-move {
        display: none;
    }
    .home-main-slider .slider-app-download ul li a span {
        display: none;
    }
    .mainslider-left-content h1 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .mainslider-left-content p {
        line-height: 21px;
        font-size: 14px;
        margin-bottom: 0;
    }
    .section-heading h5 {
        font-size: 22px;
    }
    .buyer-seller-box-main {
        margin-bottom: 40px;
    }
    .section-heading {
        padding-top: 0 !important;
    }
    .navigation-left ul li, .navigation-right ul li {
        padding-right: 5px;
        margin-right: 0;
        font-size: 11px;
    }
    .navigation-right ul li {
        padding-left: 5px;
        margin-left: 5px;
    }
    .logo-main {
        width: 150px;
        padding: 12px 0;
    }
    .logo-main img{
        width: 100%;
    }
    .navigation-right ul li span {
        display: none;
    }
    .diamond-heading-fc h5 {
        font-size: 22px;
    }
    .carat-weight-img img{
        width: 100%;
    }
    .subscribe-sec .form-control {
        width: 100%;
    }
    .achive-succ-detail .detail-box {
        margin-bottom: 15px;
    }
    .achive-succ-detail {
        padding: 50px 0 35px;
    }
    .p-lr {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
    .bcm-member-login-btn {
        display: none;
    }
    .now-on-lhd-trade-main:before {
        width: 100%;
    }
    .plans-and-pricing-detail-tab .my-checkbox .custom-control {
        margin: 0;
    }
    .plans-and-pricing-detail-tab .input-one {
        width: 23%;
    }
    .plans-and-pricing-detail-tab .input-two {
        width: 73%;
    }
    .plans-and-pricing-detail-tab .form-group {
        margin-bottom: 1rem;
    }
    .plans-and-pricing-detail-tab .hr-one {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .plans-and-pricing-detail-tab .my-checkbox label {
        padding-top: 5px;
    }
    .plans-and-pricing-detail-tab .form-tab .nav-tabs .nav-link {
        font-size: 14px;
    }
    .buyer-wrapper .modal-dialog {
        max-width: 550px;
    }
    .center-txt p {
        font-size: 61px;
    }
    .top-head h3 {
        font-size: 18px;
    }
    .top-head p {
        font-size: 12px;
    }
    .center-txt h2 {
        font-size: 14px;
        top: 36px;
        left: 20%;
    }
    .end-txt p {
        font-size: 12px;
        padding-top: 10px;
    }
    .buyer-img {
        padding: 10px 0 10px 0;
    }
    .buyer-code h3 {
        font-size: 16px;
        padding: 10px 25px;
        margin: 5px 0;
    }
    .buyer-code h5 {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .fixed-box {
        padding: 30px 15px;
    }
    .plans-and-pricing-detail-tab .my-checkbox label {
        padding-top: 0;
    }
    .plans-and-pricing-detail-tab h6 {
        padding: 0;
    }
    .plans-and-pricing-detail-tab .input-one {
        width: 20%;
    }
    .plans-and-pricing-detail-tab .input-two {
        width: 77%;
    }
    .buyer-promo-code {
        padding: 15px 10px;
    }
    .buyer-promo-code label {
        font-size: 12px;
    }
    .by-promo-code a {
        padding: 8px 24px;
        font-size: 14px;
    }
    .buyer-promo-code p img {
        padding-right: 5px;
        width: 24px;
    }
    .buyer-promo-code p {
        font-size: 13px;
    }
    .buyer-left-sec {
        padding: 20px 15px 20px 15px;
    }
    .back-round-pattern {
        display: none;
    }
    .end-txt h4:before {
        content: none;
    }
    .end-txt h4:after {
        content: none;        
    }
    .center-txt {
        padding: 10px 0px;
    }
    .center-txt h2 {
        top: 5px;
    }
    .buyer-wrapper button.close {
        color: #fff;
    }
}

.flaticon-old-typical-phone:before, .flaticon-old-typical-phone:after, .flaticon-envelope-1:before , .flaticon-envelope-1:after{
    font-size: 13px !important;
}
.flaticon-ml0:before{
    margin-left: 0 !important;
    line-height: normal !important;
}
.app-feature-content [class^="flaticon-"]:before,.app-feature-content [class*=" flaticon-"]:before,.app-feature-content [class^="flaticon-"]:after,.app-feature-content [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-size: 40px !important;
    font-style: normal;
    margin-left: 0px !important;
}
.img-fluid{
    margin-top: -27px;
}

#HideCheckBox .multiselect-item-checkbox input[type=checkbox] + div:before{
  display: none;
}
#HideCheckBox .multiselect-dropdown .dropdown-btn .selected-item a{
  display: none;
}
#HideCheckBox .multiselect-dropdown .dropdown-btn .selected-item{
  border: none !important;
  background: unset !important;
  color: #000 !important;
}
#HideCheckBox .multiselect-dropdown .dropdown-btn .selected-item:hover{
  box-shadow: unset !important;
}

.payment{padding: 50px 0px; padding-top: 10%}
.payment .ptext h3{font-size: 30px;color: #006648;}
.payment .pimg img{width: 10%; margin: 40px 0px 40px 0px;}
.payment .pdetail h6{font-weight: bold;color: #006648; font-size: 22px;}
.payment .pdetail span{color: #999; font-size: 14px;}
.payment .button{margin-top: 30px;}
.payment .button a{padding: 12px 18px; background-color: #006648; color: #fff; border-radius: 5px;}
.loader_fs.global-loader {
  display: none;
}
.load_msg {
  padding: 0 !important;
  border-radius: 100% !important;
}
.loaderimg{
  width: 75px;
}
.loader_fs .load_body {
  position: fixed;
  z-index: 999999999;
  left: 45%;
  top: 45%;
  padding: 7px;
  border-radius: 100%;
}
.loader_fs .load_body img {
  border-radius: 100%;
}
.load-ft {
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 99999999;
  background: rgba(0, 0, 0, 0.298039);
}


/*downloadapp api page css*/

.dow-app-main-bg{
  float: left;
  width: 100%;
  background: url(../images/app-download-first-section-bg-light.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  position: relative;
}
.app-dow-fst-left {
  padding: 40px 0 0 0;
}
.app-dow-fst-left h4{
  font-family: RobotoBold;
  font-size: 24px;
  margin-bottom: 20px;
}
.app-dow-fst-left p{
  color: #595959;
  line-height: 25px;
  letter-spacing: 1px;
}
.app-dow-fst-right{
  text-align: right;
}
.app-dow-fst-right img{
  width: 100%;
  padding: 0 20%;
}
.app-down-frs-btm-img{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.dow-app-main-bg .slider-app-download{
  position: absolute;
  bottom: 12%;
  left: 15px;
  z-index: 50;
}
.inner-sec-pti{
  float: left;
  width: 100%;
}
.downloadapp-second-sec {
  background: #fff;
  padding: 50px 0 100px;
  -webkit-box-shadow: 0px 4px 6px -5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 4px 6px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 6px -5px rgba(0, 0, 0, 0.2)
}

.downloadapp-second-sec h5 {
  color: #323232;
  font-family: RobotoMedium;
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.downloadapp-second-sec p {
  color: #6e6e6e;
  margin: 0;
  text-align: center;
}
.gray-bg-main{
  padding: 50px 0 0;
  background: url(../images/app-download-first-section-bg-light.png)  #f0f0f0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.gray-bg-left-mbl img{

}
.gray-bg-right-mbl{

}
.app-down-page-name{

}
.gray-bg-left-mbl {
  margin-top: -120px;
}
.app-down-sec-heading{
  font-family: RobotoMedium;
  font-size: 20px;
  color: #464646;
  margin-bottom: 30px;
}
.app-down-sec-content p{
  color: #6e6e6e;
  line-height: 23px;
  letter-spacing: 1px;
}

.white-bg-main{
  padding: 50px 0 0;
  background: url(../images/app-download-first-section-bg-light.png)  #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}
.kc-item img {
  position:absolute;
  pointer-events: none;   /* Make images non-selectable. */
  width:100%;             /* Make images expand to wrapper size. */
}
.appscreen-slider, .owl-item, .owl-carousel .owl-stage, .owl-carousel .owl-stage-outer{
  height: 100%;
}
/*.appscreen-slider{
    background: url(../images/app-download-mobile-screen.png);
    background-size: 30% auto;
    background-repeat: no-repeat;
    background-position: left;
}*/



/*--------------------------------------------*/

.appscreen-slider .item .app-img{
  margin-top:61px;
  left: 15px;
  position: relative;}
.white-bg-main {
  padding: 50px 0;}
.appscreen-slider .item .app-img img{width: 99%;    box-shadow: 0px 0px 2px 2px #ccccccb0;}
.appscreen-slider .firstActiveItem .item .app-img img{/*width: 100%;*/transform: skew(0deg); transition: all 0.5s ease-out;}

.owl-carousel{
}

.owl-carousel.owl-drag .owl-item{
  transform: scale(0.95);
  transition: all 0.5s;

}
.owl-carousel .owl-item.firstActiveItem{
  transform: scale(1);
  position: relative;
  z-index: 9;
}
.owl-carousel .owl-item.lastActiveItem{
  transform: scale(1);
}


.trade-sec{
  background-image: url(../images/app.jpg); background-size: cover;
}
.trade-sec .downloadapp-second-sec {
  background: transparent;
  padding: 50px 0 0px;
  box-shadow: none;
}
.trade-sec .img_hover_main img{width: 87%;}

.left-side{margin-top: 90px;}
.right-side{margin-top: 90px;}

.left-side .product_tech_list {
  position: relative;
  float: left;
  width: 100%;
  margin: 48px 0px 20px 0px;}
.right-side .product_tech_list {
  position: relative;
  float: left;
  width: 100%;
  margin: 48px 0px 20px 0px;}

.left-side .product_tech_icon {float: right;}
.right-side .product_tech_icon {float: left;}

.product_tech_info h3 a {color: #191818;
  font-size: 14px;
  text-transform: uppercase;}

.product_tech_icon a {
  background-color: #fff;
  border-radius: 100%;
  display: block;
  font-size: 30px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  width: 90px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0px 0px 0px 2px #106649;
}
.img_hover_main {margin-top: 14%;text-align: center;}
.left-side .product_tech_info{
  text-align: right;
  float: left;
  padding: 15px 0px 0px 15px;
  width: 70%;}
.right-side .product_tech_info{
  float: right;
  padding: 15px 15px 0px 0px;
  width: 70%;}
.p-1, .p-2, .p-3, .p-4, .p-5, .p-6{padding: 0px !important;}

.product_tech_list:before{
  content: "";
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.product_tech_list:hover::before {
  width: 100%;
}
.left_side_border::before {
  left: 0;
}

.product_tech_list:hover a{
  background-color: #106649;
}
.product_tech_icon a{
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;}
.product_tech_list:hover a img{
  filter: contrast(0%) brightness(1000%);}

.appscreen-slider{position: absolute;top: 0; left: 0; right: 0;}
.slider img{width: 39%;
  position: relative;
  z-index: 99;
  right: 18px;}


.app-down-sec-content p{margin-right: 10px;}
.dow-app-main-bg{height: auto !important;    margin: 125px 0px 0px 0px;}

.firstActiveItem .item .app-img img{webkit-transform: perspective(495px) rotateY(-4deg); transform: perspective(495px) rotateY(-4deg);}
.thirdActiveItem .item .app-img img{webkit-transform: perspective(495px) rotateY(-2deg); transform: perspective(495px) rotateY(-2deg);}

.thirdActiveItem{margin-left: -8px;}
.active .item .app-img{    background: linear-gradient(to left, #ffffff40 0%, #00000038 100%); transition: all 0.5s;}
.active .item .app-img img{position: relative;z-index: -1; transition: all 0.5s;}
.lastActiveItem .item .app-img{    background: transparent; transition: all 0.5s;}
.lastActiveItem .item .app-img img{position: relative;z-index: -1; transition: all 0.5s;}
/*--------------------------------------------*/



@media (max-width: 1275px) {
  .appscreen-slider .item .app-img {margin-top: 57px;}
}

@media (max-width: 1199px) {
  .menu-inner ul li a {
    padding: 22px 10px;
  }
  .collapse-panel .card-link span {
    margin-right: 11px;
  }
  .appscreen-slider .item .app-img {
    margin-top: 53px;
    left: 12px;}
  .slider img {right: 22px;}
}
@media (max-width: 1138px) {
  .appscreen-slider .item .app-img {
    margin-top: 50px;}

}
@media (max-width: 1024px) {

  .app-feature-mobile-screen img{
    width: 100%;}
  .appscreen-slider .item .app-img {
    margin-top: 45px;left: 5px;}

  .left-side {margin-top: 0px;}
  .right-side {margin-top: 0px;}


}

@media (max-width: 991px) {
  .menu-inner {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 999;
    transition: 0.8s;
  }
  .toggle {
    display: block;
  }
  .main-menu-open .menu-inner {
    opacity: 1;
    visibility: visible;
  }
  .menu-inner ul {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width:100%;
    padding-top: 30px;
  }
  .menu-inner ul li {
    width: 100%;
  }
  .menu-inner ul li a {
    padding: 15px 10px;
    font-size: 18px;
    width: 100%;
  }
  .md-20 {
    margin-bottom: 20px;
  }
  .app-feature-white-roung {
    display: none;
  }
  .f-discription ul li a {
    padding-bottom: 10px;
  }
  .footer-heading {
    padding: 5px 0;
    margin: 0 0 10px;
  }
  .testimonial-inner-box {
    padding: 15px 10px;
  }
  .fixed-box {
    padding: 10px;
  }
  .testimonial-slider .owl-item.active.center, .testimonial-slider .owl-item{
    transform: none;
  }
  .right-laptop {
    background-position: 8px 0px;
    background-size: 96%;
  }
  .downloadapp-first-sec .app-btn {
    position: inherit;
  }
  .downloadapp-first-sec h4 {
    margin-top: 0;
  }
  .downloadapp-three-sec .img-tp {
    margin-top: 0px;
  }
  .downloadapp-second-sec {
    padding: 50px 0;
  }
  .downloadapp-four-sec {
    background-position: bottom;
  }
  .downloadapp-five-sec ul {
    justify-content: center;
  }
  .downloadapp-five-sec ul:last-child {
    margin-bottom: 50px;
  }
  .downloadapp-five-sec {
    background-position: center;
  }
  .downloadapp-three-sec .pd-two {
    padding: 0 15px 50px;
  }
  .downloadapp-four-sec .content-pd-two {
    padding: 0 15px 50px;
  }
  .aboutus-bg{
    height: 950px;
  }




  .left-side .product_tech_icon {float: left;}
  .right-side .product_tech_icon {float: right;}

  .right-side .product_tech_info {width: 83%;}
  .left-side .product_tech_info {
    float: left;
    width: 74%;
    text-align: right;
    padding: 15px;}


  .right-side .product_tech_list {margin: 20px 0px 20px 0px;}
  .left-side .product_tech_list {margin: 20px 0px 20px 0px;}

  .product_tech_icon a {
    display: inline-block;}

  .right-side .product_tech_info {
    padding: 15px;}

  .appscreen-slider .item .app-img {
    margin-top: 91px;
    left: 33px;}
  .slider img {right: 5px;}










  /*//////////////////////*/
  .gray-bg-left-mbl {
    margin-top: -92px;
    text-align: center;
  }
  .gray-bg-left-mbl img {
    width: 44%;
  }
  .app-dow-fst-right {
    margin-top: 20px;
  }
  .dow-app-main-bg .slider-app-download {
    position: initial;
  }
  .dow-app-main-bg {
    margin: 70px 0px 0px 0px;
  }
  .owl-item{visibility: hidden;}
  .owl-item.active{visibility: inherit;}
  .owl-item.clone{visibility: inherit;}
  .img_hover_main {
    margin-top: 5%;}

}
.navigation-right ul li a{
  color: #fff !important;
}
.product_tech_icon i:before {
  font-size: 35px;
  font-style: normal;
  margin-left: 0px;}
.product_tech_list a i{
  transition: all 1s ease-out; color: #106649;}
.product_tech_list:hover a i{
  color: #fff;
}

@media (max-width: 812px) {
  .appscreen-slider .item .app-img {
    margin-top: 75px;
    left: 27px;}
}

@media (max-width: 767px) {
  li.bcm-member-login-btn-mobile {
    display: block;
  }
  .mainslider-left-content, .right-laptop {
    position: relative;
    transform: none;
    padding-bottom: 5px;
    top: 5px;
    background-size: 95%;
    background-position: 8px 0;
  }
  .right-laptop {
    top: 0;
  }
  .home-main-slider .slider-app-download h5 {
    float: left;
    padding: 10px 10px 0 0;
  }

  .home-main-slider .slider-app-download {
    bottom: 25px;
    z-index: 99;
    white-space: nowrap;
  }
  .slider-app-download ul li a {
    padding: 7px 10px 7px 50px;
  }
  .home-main-slider .slider-app-download ul li a {
    padding: 6px 10px;
  }
  .home-main-slider .slider-app-download ul li a img {
    position: relative;
    top: auto;
    left: auto;
  }
  .app-feature-content ul li {
    padding: 10px 10px 10px 80px;
  }
  .app-feature-icon {
    left: 5px;
  }
  .screen-auto-move {
    display: none;
  }
  .home-main-slider .slider-app-download ul li a span {
    display: none;
  }
  .mainslider-left-content h1 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .mainslider-left-content p {
    line-height: 21px;
    font-size: 14px;
    margin-bottom: 0;
  }
  .section-heading h5 {
    margin-top: 15px;
    font-size: 22px;
  }
  .section-heading p {
    margin-top: 10px !important;
  }
  .buyer-seller-box-main {
    margin-bottom: 40px;
  }
  .section-heading {
    padding-top: 0 !important;
  }
  .navigation-left ul li, .navigation-right ul li {
    padding-right: 5px;
    margin-right: 0;
    font-size: 11px;
  }
  .navigation-right ul li {
    padding-left: 5px;
    margin-left: 5px;
  }
  .logo-main {
    width: 150px;
    padding: 12px 0;
  }
  .logo-main img{
    width: 100%;
  }
  .navigation-right ul li span {
    display: none;
  }
  .diamond-heading-fc h5 {
    font-size: 22px;
  }
  .carat-weight-img img{
    width: 100%;
  }
  .subscribe-sec .form-control {
    width: 100%;
  }
  .achive-succ-detail .detail-box {
    margin-bottom: 15px;
  }
  .achive-succ-detail {
    padding: 50px 0 35px;
  }
  .p-lr {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .bcm-member-login-btn {
    display: none;
  }
  .now-on-lhd-trade-main:before {
    width: 100%;
  }
  .developers-api .nav-tabs li {
    width: auto;
  }
  .downloadapp-first-sec .app-btn {
    margin-bottom: 32px;
  }
  .downloadapp-first-sec .app-btn ul {
    display: inherit;
  }
  .downloadapp-first-sec .app-btn ul li:first-child {
    margin-bottom: 16px;
  }
  .downloadapp-first-sec .app-btn ul li {
    margin-right: 0;
  }
  .subscribe-sec{
    padding: 30px 0;
  }



  .appscreen-slider .item .app-img {
    margin-top: 70px;
    left: 28px;}
  .left-side{margin-top: 30px;}
  .right-side{margin-top: 30px;}
  .left-side .product_tech_info {width: 75%;}
  .right-side .product_tech_info {width: 80%;}
  .white-bg-main {
    padding: 10px 0;}
  .app-dow-fst-right img {
    width: 60%;
    padding: 0 0%; }
  .gray-bg-left-mbl img {
    width: 60%;}
  .app-dow-fst-right {text-align: center;}


}



@media (max-width: 575px) {
  .fixed-box {
    padding: 25px 10px;
  }

  .right-side .product_tech_info {width: 70%;}
  .appscreen-slider .item .app-img {margin-top: 48px; left: 22px;}
  .app-dow-fst-right img {
    width: 80%;}
  .gray-bg-left-mbl img {
    width: 80%;}
  .trade-sec .img_hover_main img {
    width: 80%;}


}

@media (max-width: 414px) {
  .right-side .product_tech_list {
    padding: 20px 0px 0px 0px;}

  .appscreen-slider .item .app-img {
    margin-top: 33px;
    margin-left: 0px;
    left: 14px;}

  .left-side .product_tech_info {width: 65%;padding: 0px 15px;}
  .right-side .product_tech_info {width: 65%;padding: 0px 15px;}


}

@media (max-width: 360px) {
  .product_tech_icon a {
    height: 70px;
    line-height: 70px;
    width: 70px;}
  .trade-sec .product_tech_icon a img{width: 70%;}
  .appscreen-slider .item .app-img {margin-top: 22px;}

}

#HideCheckBox .item2 li{
  transition: all 0.5s;
}
#HideCheckBox .item2 li:hover{
  background: #106649;
}
#HideCheckBox .item2 li:hover{
  background: #106649;
}
#HideCheckBox .item2 li:hover div{
  color: #fff;
}
#HideCheckBox .item2 li input[type=checkbox]:checked + div{
  color: white;
  background: #106649;
}
#HideCheckBox .item2 li input[type=checkbox]:checked #HideCheckBox .item2 li{
  color: white;
  background: #106649;
}
#HideCheckBox .item2 li{
  padding: 0px;
}
#HideCheckBox .item2 li input[type=checkbox] + div{
  padding: 10px 6px 10px 30px;
}


/* API page */

.api-section .api-banner .api-img img{width: 100%;}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #106649;
  background-color: transparent;
}
.info-contentpage .nav-pills {
  background-color: #fff;
  padding: 10px;
  box-shadow: 0px 0px 3px -1px #0006;
}
.info-contentpage .nav-pills .nav-link{padding: 20px 20px;}
.info-contentpage .nav-pills .nav-link{border-bottom: 1px solid #00000026; }
.info-contentpage .nav-pills a.nav-link {font-family: 'RobotoBold'; font-size: 17px;}
.info-contentpage .nav-pills .nav-link:last-child{border:none;}
.nav-pills .nav-link {
  border-radius:0px;
}
.info-contentpage .nav-pills a.nav-link i{    float: right;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  top: 3px;}
.api-section{
  background-color: #f5f5f5;
}
.api-section .api-banner{
  position: relative;
}
.api-section .api-banner .api-text{
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
}
.api-section .api-banner .api-text h4{
  color: #fff;
  font-family: 'RobotoBold';
}


.info-contentpage{padding: 30px 0px;}

.info-contentpage .info-content{
  background-color: #fff;
  box-shadow: 0px 0px 3px -1px #0006;
  padding: 10px 30px;}
.info-contentpage .info-content h4{
  color: #106649;
  padding: 15px 0px;
  font-family: 'RobotoMedium';
}
.info-contentpage .info-content p{
  color: #787878;
  font-family: 'RobotoRegular';
}
.info-contentpage .info-content h5{
  color: #464646;
  font-family: 'RobotoMedium';
  font-size: 18px;
  padding: 10px 0px;
}

.info-contentpage .info-content h6{
  padding: 15px 10px;
  background-color: #000;
  color: #fff;
}
.info-contentpage .info-content a{
  color: #000;
}










/*tab*/
.sublime {
  position: relative;
  overflow: hidden;

}
.sublime-tabs__tab {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.sublime .sublime-tabs li.sublime-tabs__tab{
  padding: 5px 20px;
  background-color: #b4b4b4;
  color: #fff;
  border-radius: 3px 3px 0px 0px;
}
.sublime .sublime-tabs li.active{
  background-color: #323232;
  position: relative;
  bottom: 1px;
  margin-top: 10px;}
.sublime-tabs__tab.active {
  z-index: 2;
}
.sublime-tabs__link{
  color: #fff !important;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 500px) {
  .sublime-tabs__tab--soon {
    display: none;
  }
}

.sublime-project {
  padding: 15px 10px 25px;
  display: none;
  background-color: #323232;
}

.sublime-project .sublime-project__code ol li span{color: #fff;}
.sublime-project .sublime-project__code ol.linenums {color: #fff;}
.sublime-project__code--indent {
  padding: 0.5em 0 2em 1.8em;
}
.sublime-project.active {
  display: block;
}




/*resposive*/
@media (max-width: 991px) {
  .info-contentpage .nav-pills {
    display: inline-block;
    width: 100%;
  }
  .info-contentpage .nav-pills a.nav-link {
    display: inline-block;
  }
  .info-contentpage .nav-pills a.nav-link i {display: none;}
  .info-contentpage .nav-pills .nav-link {
    border: 1px solid;
  }
  .info-contentpage .nav-pills .nav-link:last-child {
    border: 1px solid;
  }
  .info-contentpage .nav-pills .nav-link {
    padding: 5px 10px;
    margin: 2px 0px;
  }
  .info-contentpage .nav-pills a.nav-link {
    font-size: 15px;
  }
  .mb-btm-about-thr-scc{
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .info-contentpage .nav-pills .nav-link {
    padding: 5px 5px;
    margin: 2px 0px;
  }
  .info-contentpage .nav-pills a.nav-link {
    font-size: 14px;
  }
  .info-contentpage .info-content p {
    text-align: justify;
  }
  .info-contentpage .info-content {
    padding: 10px 10px;
  }
  .info-contentpage .info-content h4 {
    padding: 0px 0px;
  }
}

@media (max-width: 575px) {
  .sublime .sublime-tabs li.sublime-tabs__tab {
    padding: 5px 5px;}
  .sublime-tabs__link {
    font-size: 12px;
  }
  .info-contentpage .info-content h6 {
    padding: 10px 10px;
    font-size: 12px;
  }
}

.overview-table-hdd
{
  background-color: #106649;
  color: #fff;
}

.up-diamond-tabss
{
  color: #106649 !important;
  font-size: 18px;
  font-family: 'RobotoRegular' !important;
  /* margin-bottom: 0; */
}
/* API page */

.clsThinBorderNoHeader tbody tr td , .clsThinBorder tbody tr td
{
  color: #787878;
  font-family: 'RobotoRegular';
}
.clsThinBorder .fieldHeader td{
  color: #fff !important;
  background: #106649;
}
.clsThinBorder tbody tr td span,.clsThinBorderNoHeader tbody tr td span{
  color: #000 !important;
  font-family: 'RobotoMedium';
  font-size: 15px;

}
.clsThinBorder tbody tr{
  border:1px solid #ddd;
  padding: 7px;
}

.clsThinBorderNoHeader tbody tr{
  border:1px solid #ddd;
  padding: 7px;
}
.tab-pane .API_code_box{
  height: auto;
  background: #323232;
  width: 100%;
  color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 10px;
}
.API_code_box .yellow{
  color: #e6db74;
}
.API_code_box .orange{
  color: #FD971F;
}
.API_code_box .green{
  color: #A6E22E;
}
.API_code_box .sky{
  color: #66d9ef;
}
.API_code_box .red{
  color: #f92672;
}
.API_code_box .purple{
  color: #ae81ff;
}
.API_code_box .Tab1{
  margin-left: 20px;
}
.API_code_box .Tab2{
  margin-left: 40px;
}
.API_code_box .Tab3{
  margin-left: 60px;
}
.API_code_box .Tab4{
  margin-left: 80px;
}
.API_code_box .Comment{
  color: #696969;
}
/*============ 404 ===============*/
.pagenot-found-main{
  text-align: center;
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}
.pagenot-found-main h1{
  color: #105a42;
  font-family: "Roboto", sans-serif;
  font-size: 15em;
  font-weight: 100;
  margin: 0;
}
.pagenot-found-main p{
  font-size: 26px;
  color: #777;
}
.pagenot-found-main a{
  font-size: 16px;
  background: #106649;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  margin-bottom: 50px;
  margin-top: 5px;
  border-radius: 50px;
  font-family: 'RobotoRegular';
  text-transform: capitalize;
}
.pagenot-found-main a:hover{
  background: #105a42;
}
.pagenot-found-main a i{
  margin-right: 7px;
  font-size: 19px;
  position: relative;
  top: 1px;
}

/* Model CSS Start */

.confirmation-comn .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}
.ord-sts-info span {
  float: left;
  font-size: 16px;
  line-height: normal;
}
.confirmation-comn .btn-main {
  display: block;
  padding: 7px 17px;
  background: #106649;
  color: #fff;
  margin-left: 5px;
  border-radius: 5px;
  font-family: 'RobotoMedium';
  font-size: 14px;
  text-transform: capitalize;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}
.confirmation-comn .modal-footer {
  padding: 10px 10px;
  border-top: 1px solid #e9ecef;
}
.confirmation-comn .modal-body {
  padding: 20px 15px 20px 16px;
}
.new-whats-is-lgd-trade-mn{

}
.new-whats-is-lgd-trade ul{
margin-top: -60px;
  padding-bottom: 0;
}
.new-whats-is-lgd-trade ul li,
.new-whats-is-lgd-trade ul li:first-child{
  width: 100%;
  text-align: center;
}
.new-whats-is-lgd-trade p{
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #323232;
  padding-top: 15px;
}
.new-whats-is-lgd-trade {
  margin-top: 20px;
}
.new-whats-is-lgd-trade-icon{
  display: inline-block;
  background: #eaf4f1;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  width: 110px;
  height: 110px;
  text-align: center;
  line-height: 100px;
  border-radius: 50%;
}
/* index newslatter popup css */

.news-letter-popup{
  max-width: 500px;
}
.nwsltr-main{
  text-align: center;
  padding: 0 40px ;
}
.nwsltr-prg{
  color: #727272;
  font-size: 11px;
  font-family: 'RobotoMedium';
}
.nwsltr-main h5 {
  color: #106649;
  font-family: 'RobotoBold';
  font-size: 22px;
}
.news-letter-popup .modal-header{
  border-bottom:none;
}
.news-letter-popup .close{
  z-index: 999;
  position: absolute;
  right: 15px;
  top: 10px;
  pointer-events: auto;
  cursor: pointer !important;
}
.nwsltr-main h6{
  color: #969696;
  font-size: 10px;
  margin-bottom: 15px;
}
.nwsltr-cntr-img{
  margin: 25px 0 15px 0;
}
.nwsltr-frm{
  padding: 0 40px;
}
.nwsltr-frm input{
  width: 100%;
  background: #f5f5f5;
  border: 0;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  padding: 9px 15px;
  border-radius: 3px;
  transition: all 0.3s;
}
.nwsltr-frm input:focus{
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  background: #fff;
}
.nwsltr-frm button{
  display: block;
  width: 100%;
  border: 0;
  background: #106649;
  margin: 15px auto;
  color: #fff;
  font-family: 'RobotoBold';
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 9px 10px;
  border-radius: 3px;
  cursor: pointer;
}

/* index newslatter popup css end */
@media (min-width: 576px){
  .confirmation-comn {
    max-width: 350px;
  }
}
@media (min-width: 767px){
  .new-whats-is-lgd-trade-mn .md-20{
    margin-bottom: 70px !important;
  }
}
@media (max-width: 767px){
  .new-whats-is-lgd-trade-mn .md-20{
    margin-bottom: 70px !important;
  }
}
@media (min-width: 992px){
  .new-whats-is-lgd-trade-mn .md-20 {
    margin-bottom: 0px !important;
  }
}

@media (min-width: 576px){
  .confirmation-comn {
    max-width: 350px;
  }
}
/* Model CSS End */
.top-head-btn li a:hover{
color: #fff;
}

b, strong {
  font-family: 'RobotoBold';
}
/* .top-head-btn{
  text-align:right;
} */

/* Ashvin Style Start 25-07-22 */
.right-laptop {
  background: none;
}
.onlybanner .mainslider-left-content h1 {
  top: 0;
}

.onlybanner .mainslider-left-content p {
  right: 0;
}

.appfeature {
  float: left;
  width: 100%;
  position: relative;
}

.appfeaturecontent ul li h5 {
  font-family: 'RobotoBold';
  font-size: 18px;
  color: #5a5a5a;
}

.appfeaturecontent ul li p {
  color: #969696;
  margin-bottom: 0;
}

.appfeaturecontent [class^="flaticon-"]:before,
.appfeaturecontent [class*=" flaticon-"]:before,
.appfeaturecontent [class^="flaticon-"]:after,
.appfeaturecontent [class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-size: 40px !important;
  font-style: normal;
  margin-left: 0px !important;
}

.appfeatureicon {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  box-shadow: 0 0 2px rgb(0 0 0 / 30%);
  text-align: center;
  border-radius: 50%;
  position: inherit;
  left: inherit;
  top: inherit;
  -webkit-transform: inherit;
  transform: inherit;
  transition: all 0.4s;
}

/* Ashvin Style End 25-07-22 */

