@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
	--color-primary:#0078ff;
	--color-red:#ef4036;
	--color-orange:#f7941d;
	--color-green:#0d9a49;
	--color-black:#242424;
	--color-white:#fff;
	--site-font:"Montserrat", sans-serif;
	--color-bg:#f4f4f4;
	--color-text:#5c5c5c;
}


body {
    font-family: var(--site-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 26px;
    -webkit-font-smoothing: antialiased;
	margin: 0;
}
.container{
	max-width:1280px;
}
.bg-yellow{
	background: linear-gradient(180deg, var(--color-orange) 60%, transparent 40%);
}
.text-yellow{
	color:var(--color-orange);
}
.bg-red{
	background: linear-gradient(180deg, var(--color-red) 60%, transparent 40%);
}
.text-red{
	color:var(--color-red);
}
.bg-green{
	background: linear-gradient(180deg, var(--color-green) 60%, transparent 40%);
}
.text-green{
	color:var(--color-green);
}
.bg-home{
	background: linear-gradient(180deg, var(--color-primary) 60%, transparent 40%);
}
.text-home{
	color:var(--color-primary);
}
.home-header{
	position: relative;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9;
    background: var(--color-white);
	will-change: width;
	transition: 
        width 0.4s ease,
        top 0.4s ease,
        border-radius 0.4s ease,
        box-shadow 0.4s ease;
		border-bottom:1px solid #ebebeb;
}
.home-header-white{
	background:transparent;
}
.home-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    border-radius: 0;
	background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
	z-index:99;
}
.header-logo{
	padding:0;
	margin:0;
}
.header-logo img {
    width: 75%;
}
.home-header.sticky .header-logo img {
    width: 50%;
}

.banner-section{
	background-image:url('../images/home-bg.png');
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

.banner-text h1 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 800;
    color: var(--color-primary);
	margin-bottom:10px;
}
.banner-text p{
	font-size:14px;
	line-height:22px;
	color:var(--color-black);
	font-weight:500;
}
.banner-bottom-section{
	position:relative;
	padding:0px;
}
.banner-bottom-section .bottom-cover .col-lg-4{
	padding:0;
}
.banner-bottom-section .bottom-box{
	background:var(--color-red);
	padding:20px 15px;
	display:flex;
	flex-direction: column;
    align-items: center;
	min-height: 332px;
	position:relative;
	overflow: hidden;
	transition: all 0.5s ease;
}
.banner-bottom-section .bottom-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(255,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}
.banner-bottom-section .bottom-box:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
.banner-bottom-section .bottom-box.center{
	background:var(--color-orange);
	padding:20px 15px;
}
.banner-bottom-section .bottom-box .box-icon {
    text-align: center;
}
.banner-bottom-section .bottom-box .box-icon img {
    width:70%;
}
.banner-bottom-section .bottom-box .box-head h3{
    font-size:17px;
    line-height:26px;
    margin:10px 0;
    font-weight:700;
    color:var(--color-white);
	text-align:center;
}
.banner-bottom-section .bottom-box .box-text p{
    font-size:14px;
    line-height:22px;
    text-align:center;
    margin-bottom:0;
    color:var(--color-white);
	font-weight:500;
}
.second-logo{
	position:relative;
}
.porfolio-landing-section{
	position:relative;
	padding:60px 0 0;
}
.porfolio-landing-section .section-head {
    margin-bottom: 30px;
}
.porfolio-landing-section .section-head h1{
	font-size: 45px;
    line-height: 55px;
    font-weight: 900;
    color: var(--color-primary);
	text-align:center;
	position:relative;
	padding-bottom:10px;
	margin-bottom:10px;
}

.porfolio-landing-section .section-head p{
	font-size:15px;
	line-height:24px;
	color:var(--color-black);
	font-weight:500;
	text-align:center;
	margin-bottom:0;
}
.porfolio-landing-section .portfolio-inner {
    padding: 150px 0 60px;
    background: var(--color-primary);
    position: relative;
    margin-top: -150px;
    z-index: 1;
}
.landing-box {
    display: flex;
    gap: 10px;
    flex-direction: column;
    border: 1px solid #ebebeb;
    padding: 20px 15px;
    align-items: center;
	height:100%;
}
.landing-box .landing-info .landing-head h4 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 700;
    color: var(--color-red);
	text-align:center;
}
.landing-box .landing-info .landing-text p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--color-black);
	margin-bottom:0;
	text-align:center;
}
.landing-box .landing-icon img {
    width: 70px;
}
.porfolio-landing-section .top-img{
	position:relative;
	z-index:9;
}
.content-tabs-section{
	position:relative;
	padding:30px 0 60px;
}
.content-tabs-section .content-tabs-nav {
    width: 25%;
    background: var(--color-bg);
    padding: 10px;
    border: 3px solid #ebebeb;
	position: sticky;
    top: 60px;
}
.content-tabs-section .content-tabs-nav button{
    text-align:left;
    font-size:13px;
    font-weight:600 !important;
    border-bottom:1px dashed #ccc;
    border-radius:0 !important;
    padding:8px 10px;
    color:var(--color-black);
}
.content-tabs-section .content-tabs-nav button:last-child{
	border-bottom:0;
}
.content-tabs-section .content-tabs-content {
    width: 75%;
    padding:0 0 0 10px;
}
.content-tabs-section .content-tabs-nav .nav-link.active {
    background: var(--color-primary);
}
.content-tabs-section .content-tabs-nav .nav-link:hover {
    background: var(--color-red);
    color:var(--color-white);
}
.content-tabs-section .content-tabs-content .financial-tab {
    padding: 40px 0 20px;
}
.content-tabs-section .content-tabs-content .tabs-inner-content h1{
	font-size: 35px;
    line-height: 1.2;
    font-weight: 800;
    position: relative;
    margin-bottom: 15px;
}
.content-tabs-section .content-tabs-content .tabs-inner-content p{
	font-size: 14px;
    line-height: 22px;
    color: var(--color-black);
    font-weight: 500;
    margin-bottom: 5px;
}
.tabs-inner-benefit {
    background: var(--color-red);
    padding: 15px;
}
.tabs-inner-benefit .tabs-benefit {
    margin-bottom:0;
    font-size:15px;
    line-height:24px;
    font-weight:500;
    color:var(--color-white)
}

.content-tabs-section .content-tabs-content .tabs-box {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ebebeb;
    padding: 20px 15px;
    height: 100%;
}
.content-tabs-section .content-tabs-content .tabs-box .tabs-box-content h3{
    font-size:17px;
    font-weight:700;
    color:var(--color-red);
    line-height:26px;
	margin-bottom:5px;
	text-align:center;
}
.content-tabs-section .content-tabs-content .tabs-box .tabs-box-content p{
    font-size:14px;
    line-height:22px;
    color:var(--color-black);
	font-weight:500;
	text-align:center;
	margin-bottom:0;
}
.tab-360-img img {
    min-height: 480px;
    border-radius: 20px;
}
.tabs-benefit-box {
    background: var(--color-orange);
    padding: 10px 15px;
}
.content-tabs-section .content-tabs-content .tabs-benefit-box h1 {
    font-size: 20px;
    line-height: 30px;
    color: var(--color-white);
	margin-bottom:5px;
	padding-bottom:0;
	text-transform:uppercase;
}
.content-tabs-section .content-tabs-content .tabs-benefit-box h1:after{
	content:none;
}
.content-tabs-section .content-tabs-content .tabs-benefit-box p{
	color: var(--color-white);
	margin-bottom:0;
}
.nav-header-big {
    justify-content: end;
	padding:0;
}
.navbar-expand-lg .navbar-collapse{
	justify-content:end;
}
.nav-header-big .nav-item .nav-link{
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    color:var(--color-black);
	padding: 0 15px;
}
.nav-header-big .nav-item .nav-link:hover{
    color:var(--color-primary);
}
.nav-header-big .nav-item:last-child .nav-link{
	padding-right:0;
}

.about-section .about-content {
    padding: 105px 40px;
	background:#ebebeb;
	height:395px;
}
.about-img-block img {
    max-height: 395px;
    object-fit: cover;
}
.about-section .about-content h1{
	font-size: 35px;
    line-height: 45px;
    font-weight: 800;
    color: var(--color-primary);
	position:relative;
	margin-bottom:10px;
}

.about-section .about-content p{
	font-size:14px;
	line-height:22px;
	color:var(--color-black);
	font-weight:500;
	margin-bottom:10px;
}
.progress-footer{
	background:var(--color-black);
	padding:60px 0 30px;
}
.progress-footer-widget {
    padding-bottom: 30px;
}
.progress-footer-widget p{
    font-size:15px;
    line-height:24px;
	font-weight:400;
    color:#ccc;
    margin-bottom:0;
}
.progress-footer .copyright{
	padding-top:30px;
}
.progress-footer .copyright p{
    font-size:15px;
    line-height:24px;
    color:#ccc;
    margin-bottom:0;
	font-weight:400;
	margin-bottom:5px;
}
.progress-footer .copyright p:last-child{
	margin-bottom:0px;
}
.progress-footer .copyright p a{
	text-decoration:none;
	color:var(--color-white);
}
.progress-footer .copyright p a:hover{
	color:var(--color-orange);
}
.progress-footer-widget h4 {
    font-size: 20px;
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 20px;
}
.progress-footer-widget .footer-about p{
	padding-right:30px;
}
.footer-menu{
	display:block;
}
.footer-menu li a {
    padding: 3px 0;
    color: #ccc;
    font-size: 15px;
    font-weight: 400;
}
.footer-menu li a:hover{
	color:var(--color-white);
}
.footer-menu li:first-child a{
	padding-top:0;
}
.footer-menu li:last-child a{
	padding-bottom:0;
}
.progress-footer-widget .social-nav {
    padding: 0;
    margin: 0;
}
.progress-footer-widget .social-nav li{
    padding-bottom:5px
}
.progress-footer-widget .social-nav li a{
    font-size:15px;
    line-height:24px;
    text-decoration:none;
    color:#ccc;
}
.progress-footer-widget .social-nav li a:hover{
	color:var(--color-white);
}
.progress-footer-widget .social-nav li i{
	font-size:15px;
	color:var(--color-white);
	margin-right:5px;
}
.moretext {
  display: inline;
}
.moreless-button{
	display:block;
	font-size: 14px;
	font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}
.moreless-button{
	display:none;
}
#panoCompare {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom:10px;
}

.viewer {
  position: absolute;
  inset: 0;
}

.clip {
  clip-path: inset(0 50% 0 0);
}

#divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #000;
  z-index: 10;
  cursor: ew-resize;
}

#handle {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width:45px;
  height:45px;
  line-height:43px;
  text-align:center;
  cursor: pointer;
  user-select: none;
}
@media (min-width: 1025px) {

  .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s;
  }
}
.nav-item.dropdown > .nav-link {
  cursor: pointer;
}
.dropdown-menu {
    border-radius: 0;
    border: 1px solid #ebebeb;
    border-top: 3px solid var(--color-black);
    padding: 0;
}
.dropdown-menu li a {
    padding: 10px 15px;
    font-size: 13px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid #ebebeb;
}
.dropdown-menu li:last-child a{
    border-bottom:0;
}
.dropdown-menu li a:hover{
    color:var(--color-primary);
}
.dropdown-toggle::after{
	display:none;
}










@media (min-width:200px) and (max-width:768px){
	.header-logo img {
    width: 65%;
	}
	.second-logo {
	   top: 10px;
        text-align: center;
        margin-bottom:0px;
        position: relative;
	}
.banner-text{
	padding-bottom:20px;
}
.banner-text h1 {
    font-size: 25px;
    line-height: 35px;
}
.finance .tabs-inner-content{
padding-top:20px;
}
.mob-box{
	margin-top:20px;
}
	.second-logo img {
		width: 80%;
	}
	.home-header .navbar-toggler {
		background: var(--color-black);
		width: 40px;
		height: 40px;
		border-radius: 0px;
		line-height:40px;
		text-align:center;
		padding:0;
	}
	.home-header .navbar-toggler:focus{
		border:0;
		box-shadow:none;
	}
	.home-header .navbar-toggler:hover{
		background:var(--color-primary);
	}
	.home-header .navbar-toggler i{
		color: var(--color-white);
		font-size:20px;
	}
	.banner-section{
	background-image:url('../images/home-mobile-bg.png');
	height:520px;
	}
	.banner-section .banner-text {
    padding-top: 0px;
    text-align: center;
	position: relative;
    top: 0px;
	}
	.banner-section .banner-text h1 {
    font-size: 25px;
    line-height: 35px;
	}
	.banner-section .banner-text p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
	margin-bottom:5px;
	padding-right:0;
	}
	.nav-header-big{
		justify-content:space-between;
	}
	.nav-header-big ul.navbar-nav{
		background:var(--color-black);
	}
	.about-img-block img {
    max-height: 100%;
	width:100%
	}
	.about-section .about-content {
		padding:20px;
		height:auto;
	}
	.porfolio-landing-section{
		padding:40px 0;
	}
	.porfolio-landing-section .section-head h1 {
    font-size: 35px;
    line-height: 45px;
    padding-bottom: 20px;
    margin-bottom: 15px;
	}
	.moretext {
	display: none;
	}
	.banner-text p.expanded {
	  background-color: #fff;
	  transition: background-color 0.3s ease;
	}
	.banner-bottom-section {
    margin-top: 0;
	}
	.banner-bottom-section .bottom-box {
		padding: 25px;
		min-height: 260px;
	}
	.banner-bottom-section .bottom-box.center {
    padding: 20px;
    margin-top: 0;
	}
	.porfolio-landing-section .portfolio-inner {
    padding: 70px 0 40px;
    margin-top: -50px;
	}
	.landing-box{
		margin-top:10px;
		height:auto;
	}
	.landing-box .landing-info .landing-head h4 {
    font-size: 20px;
    line-height: 30px;
	}
	.landing-box .landing-info .landing-text p {
    font-size: 14px;
    line-height: 22px;
	}
	.about-section .about-content h1 {
    font-size: 35px;
    line-height: 45px;
	}
	.about-section .about-content p {
    font-size: 14px;
    line-height: 22px;
	}
	.progress-footer {
    padding: 40px 0 20px;
	}
	.footer-about img {
    width: 100px;
	}
	.progress-footer-widget .footer-about p {
    padding-right:0px;
	}
	.progress-footer-widget p {
    font-size: 14px;
    line-height: 22px;
	}
	.progress-footer-widget {
    padding-bottom: 20px;
	}
	.progress-footer-widget h4 {
    font-size: 18px;
    margin-bottom: 10px;
	}
	.progress-footer .copyright {
    padding-top: 20px;
	}
	.footer-menu li a {
    padding: 1px;
    font-size: 14px;
	}
	.progress-footer .copyright p{
		font-size: 14px;
    line-height: 22px;
	}
	.progress-footer-widget .social-nav li a {
    font-size: 14px;
    line-height: 22px;
	}
	#navbarNav {
    padding: 5px 0;
	background: #fff;
	}
	.nav-header-big .nav-item .nav-link {
    padding: 7px 10px;
	font-size:14px;
	color:var(--color-white);
	}
	.nav-header-big li {
    border-bottom: 1px solid #ebebeb;
    padding: 0px;
	}
	.content-tabs-section {
    padding: 20px 0 40px;
	}
	.content-tabs-section .content-tabs-nav {
    width: 100%;
	position:relative;
    top: 0;
	height: 320px;
	overflow-x: scroll;
	display: block;
	}
	.content-tabs-section .content-tabs-content {
    width: 100%;
    padding: 20px 0 0;
	}
	.content-tabs-section .content-tabs-content .financial-tab {
    padding: 0;
    background: transparent;
    padding-bottom: 10px;
	}
	.content-tabs-section .content-tabs-content .tabs-inner-content h1 {
    font-size: 25px;
    line-height: 35px;
	}
	.content-tabs-section .content-tabs-content .tabs-inner-content p {
    font-size: 14px;
    line-height: 22px;
	}
	.content-tabs-section .content-tabs-content .tabs-inner-content .tabs-benefit {
    font-size: 16px;
    line-height: 24px;
	}
	.content-tabs-section .content-tabs-nav button {
    width: 100%;
    display: block;
	}
	.moreless-button{
	display:block;
}
#panoCompare {
    height: 300px;
    margin-bottom: -10px;
}
.dropdown-toggle::after{
	display:inline-block;
	    margin-left: 18em;
}
.dropdown-menu {
    border-radius: 0;
    border: 0px solid #ebebeb;
    padding: 0;
	background:var(--color-black);
}
.dropdown-menu li a {
    padding: 7px 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 0px solid #ebebeb;
	color: var(--color-white);
}
.dropdown-menu li:first-child a{
	border-top: 1px solid #ebebeb;
}
.dropdown-menu li:last-child a,
.nav-header-big li:last-child{
	border-bottom:0;
}

}
 
@media (min-width:769px) and (max-width:1024px){
	.header-logo img {
    width: 65%;
	}
	.second-logo {
	   top: 10px;
        text-align: center;
        margin-bottom:0px;
        position: relative;
	}
.banner-text{
	padding-bottom:20px;
}
.banner-text h1 {
    font-size: 25px;
    line-height: 35px;
}
.finance .tabs-inner-content{
padding-top:20px;
}
.mob-box{
	margin-top:20px;
}
	.second-logo img {
		width: 60%;
	}
	.home-header .navbar-toggler {
		background: var(--color-black);
		width: 40px;
		height: 40px;
		border-radius: 0px;
		line-height:40px;
		text-align:center;
		padding:0;
	}
	.home-header .navbar-toggler:focus{
		border:0;
		box-shadow:none;
	}
	.home-header .navbar-toggler:hover{
		background:var(--color-primary);
	}
	.home-header .navbar-toggler i{
		color: var(--color-white);
		font-size:20px;
	}
	.banner-section{
	background-image:url('../images/home-bg.png');
	height:420px;
	}
	.banner-section .col-lg-7 {
    width: 55%;
	}
	.banner-text {
    padding-top: 10px;
    text-align: left;
	position: relative;
    top: 0px;
	}
	.banner-text h1 {
    font-size: 25px;
    line-height: 35px;
	}
	.banner-text p {
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
	margin-bottom:5px;
	padding-right:0;
	}
	.nav-header-big{
		justify-content:space-between;
	}
	.nav-header-big ul.navbar-nav{
		background:var(--color-black);
	}
	.about-img-block img {
    max-height: 450px;
	width:100%
	}
	.about-section .about-content {
		padding:20px;
		height:auto;
	}
	.porfolio-landing-section{
		padding:40px 0;
	}
	.porfolio-landing-section .section-head h1 {
    font-size: 35px;
    line-height: 45px;
    padding-bottom: 20px;
    margin-bottom: 15px;
	}
	.moretext {
	display: none;
	}
	.banner-text p.expanded {
	  background-color: #fff;
	  transition: background-color 0.3s ease;
	}
	.banner-bottom-section {
    margin-top: 0;
	}
	.banner-bottom-section .bottom-box {
		padding: 25px;
		min-height: 100%;
	}
	.banner-bottom-section .bottom-box.center {
    padding: 20px;
    margin-top: 0;
	}
	.porfolio-landing-section .portfolio-inner {
    padding: 70px 0 40px;
    margin-top: -50px;
	}
	.landing-box{
		margin-top:10px;
		height:auto;
	}
	.landing-box .landing-info .landing-head h4 {
    font-size: 20px;
    line-height: 30px;
	}
	.landing-box .landing-info .landing-text p {
    font-size: 14px;
    line-height: 22px;
	}
	.about-section .about-content h1 {
    font-size: 35px;
    line-height: 45px;
	}
	.about-section .about-content p {
    font-size: 14px;
    line-height: 22px;
	}
	.progress-footer {
    padding: 40px 0 20px;
	}
	.footer-about img {
    width: 100px;
	}
	.progress-footer-widget .footer-about p {
    padding-right:0px;
	}
	.progress-footer-widget p {
    font-size: 14px;
    line-height: 22px;
	}
	.progress-footer-widget {
    padding-bottom: 20px;
	}
	.progress-footer-widget h4 {
    font-size: 18px;
    margin-bottom: 10px;
	}
	.progress-footer .copyright {
    padding-top: 20px;
	}
	.footer-menu li a {
    padding: 1px;
    font-size: 14px;
	}
	.progress-footer .copyright p{
		font-size: 14px;
    line-height: 22px;
	}
	.progress-footer-widget .social-nav li a {
    font-size: 14px;
    line-height: 22px;
	}
	#navbarNav {
    padding: 5px 0;
	background: #fff;
	}
.nav-header-big .nav-item .nav-link {
    padding: 7px 10px;
	font-size:14px;
	color:var(--color-white);
	}
	.nav-header-big li {
    border-bottom: 1px solid #ebebeb;
    padding: 0;
	}
	.content-tabs-section {
    padding: 20px 0 40px;
	}
	.content-tabs-section .content-tabs-nav {
    width: 100%;
	position:relative;
    top: 0;
	height: 320px;
	overflow-x: scroll;
	display: block;
	}
	.content-tabs-section .content-tabs-content {
    width: 100%;
    padding: 20px 0 0;
	}
	.content-tabs-section .content-tabs-content .financial-tab {
    padding: 0;
    background: transparent;
    padding-bottom: 10px;
	}
	.content-tabs-section .content-tabs-content .tabs-inner-content h1 {
    font-size: 25px;
    line-height: 35px;
	}
	.content-tabs-section .content-tabs-content .tabs-inner-content p {
    font-size: 14px;
    line-height: 22px;
	}
	.content-tabs-section .content-tabs-content .tabs-inner-content .tabs-benefit {
    font-size: 16px;
    line-height: 24px;
	}
	.content-tabs-section .content-tabs-nav button {
    width: 100%;
    display: block;
	}
	.moreless-button{
	display:block;
}
#panoCompare {
    height: 450px;
    margin-bottom: 10px;
}
.risk-div{
	width:30%;
}
.risk-content{
	width:70%
}
.tabs-box-icon img {
    width: 60px;
}
.dropdown-toggle::after{
	display:inline-block;
	    margin-left: 49em;
}
.dropdown-menu {
    border-radius: 0;
    border: 0px solid #ebebeb;
    padding: 0;
	background:var(--color-black);
}
.dropdown-menu li a {
    padding: 7px 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 0px solid #ebebeb;
	color: var(--color-white);
}
.dropdown-menu li:first-child a{
	border-top: 1px solid #ebebeb;
}
.dropdown-menu li:last-child a,
.nav-header-big li:last-child{
	border-bottom:0;
}
}