﻿/*==================================================

    Project: Grad Landing Page
    Version: 1.0
    Last change: 26/02/2021
    Author : Oscar Themes

    /**
    * Table of Contents :
    * 1.0 - DEFAULT CSS START 
    * 2.0 - HOME PAGE CSS START
        * 2.1 - HEADER DEFAULT CSS START #HEADER
        * 2.2 - Full Banner Area Start
        * 2.3 - Main Banner Css Start
        * 2.4 - Featured Thumb Start
        * 2.5 - Video Thumb Start
        * 2.9 - RoadMap Thumb Start
        * 2.6 - Donut Chart Start
        * 2.7 - Team Thumb Start
        * 2.8 - Blog Thumb Start
        * 2.10 - Faqs Accordian Start
        * 2.11 - Footer Area Start 
        * 2.12 - Footer 2 Start
        * 2.13 - Copy Right Bar Start

    [Color codes]

    Background: #ffffff (white)
    Content: #616569 (light black)
    Header h1: #393e42 (dark black)
    Header h2: #393e42 (dark black)
    Footer:  rgba(255,255,255,0.5) (dark black)

    a (standard): #999999 (light black)
    a (visited): #999999 (light black)
    a (active): #999999 (light black)

    [Typography]
      
    Body copy:  16px/ 'Roboto', sans-serif
    Headers:  'Roboto', sans-serif
    Input, textarea: 'Roboto', sans-serif
    Sidebar heading: 'Roboto', sans-serif

==================================================*/
/*
    ==============================================================
     DEFAULT CSS START 
    ==============================================================
*/
.text,
footer,
section,
.section,
.mian-wrapper,
.main-contant,
header{
    float: left;
    width: 100%;
    position: relative;
}
footer,
.section,
section{
    padding: 88px 0 20px;
}
.pd-0{
    padding: 0!important;
}
.main-wrapper{
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.z-1{
    z-index: 1;
}
.parallax-section {background-attachment: fixed !important;}
.border-bottom{border-bottom:1px solid #edecec;}

/* p {
    font-size: 16px; 
    margin-bottom: 20px;
}
 li {
    font-size: 16px; 

} */
#populationmap {
    background-image: url('../images/populationdensity.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px; /* Increased padding */
    min-height: 800px; /* Minimum height */
}
#populationmap h3 {
    margin-top:60px;
    margin-bottom: 50px; /* Space below the title */
    font-size:60px;
    font-weight:bold;
    color:white;
}
#Metro .row p{
    font-size:18px;
    color:black;
}
#populationmap p {
    margin-bottom: 30px; /* Space between paragraphs and below the last paragraph */
    font-size:24px;
    line-height: 1.4; 
    text-align: left;
}

#populationmap a.btn {
    margin-top: 30px; 
    padding: 15px 30px; 
    font-size: 24px; 
    border: 2px solid transparent; 
    background-color: #007bff; 
    color: white; 
    transition: background-color 0.3s, border-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

#populationmap a.btn:hover, #populationmap a.btn:focus {
    background-color: black; /* Darker shade on hover/focus */
    border-color: #004085; /*  Change border color on hover/focus */
    color: #fff; /* Keep text color white on hover/focus */
}


/*
    ==============================================================
     HOME PAGE CSS START 
    ==============================================================
*/
/* .triangle-bg{
    background-size: 75%,74%;
    background-repeat: no-repeat,no-repeat;
    background-position: 180% 66px, 180% 195px;
    background-image: url(../fonts/header-shape.svg),url(../fonts/header-shape-1.svg);
} */
/*
    ==============================================================
       HEADER DEFAULT CSS START #HEADER
    ==============================================================
*/
/* .oscar-header-2 {
    padding:0px 0 0;
    background: transparent;
    min-height: 100vh;
    position: relative;
    background-repeat:no-repeat;
    background-size:40%;
    background-position: 93% center;   
    background-image:url(../images/blockchain.png) 
} */
.nav-outer{
    z-index: 2;
    float: left;
    width: 100%;
    padding: 50px 0 0;
    position: relative;
    transition: background .3s ease,box-shadow .3s ease, padding .4s ease;
    -o-transition: background .3s ease,box-shadow .3s ease, padding .4s ease;
    -ms-transition: background .3s ease,box-shadow .3s ease, padding .4s ease;
    -moz-transition: background .3s ease,box-shadow .3s ease, padding .4s ease;
    -webkit-transition: background .3s ease,box-shadow .3s ease, padding .4s ease;
}
.logo{
    margin: 0;
    float: left;
    width: auto;
    line-height: 0;
}
.menu-holder{
    padding: 38px 0;
}
.navigation li{
    float: left;
    width: auto;
    margin: 0;
    position: relative;
    background-color: transparent;
}
.navigation nav ul > li{
    margin-left:35px;
}
.navigation nav ul > li:first-child{
    margin-left:0 
}
.navigation li a{
    color: white;
    display: block;
    font-size: 16px;
    padding: 2px 0 1px;
    line-height: 1.1;
    font-weight: normal;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    /*mix-blend-mode: difference;*/
}
.navigation li a::after, 
.navigation li a::before {
    content: '';
    position: absolute;
    top: calc(100% + 5px);
    width: 0;
    right: 0;
    height: 3px;
}
.navigation li a::before {
    -webkit-transition: width .25s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    -o-transition: width .25s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    transition: width .25s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    background: #2FFFAD;
}
.navigation li a::after {
    background: #845EC2;
    -webkit-transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    -o-transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}
.navigation li.active > a::after, 
.navigation li.active > a::before,
.navigation li:hover > a::after, 
.navigation li:hover > a::before {
    width: 100%;
    left: 0;
}
.navigation nav ul > li:hover > a,
.navigation nav ul > li > a:hover{
    background-color: transparent
}
.navigation ul.sub-menu li a:hover{
    background: #f2f4f6
}
.navigation ul.sub-menu {
    right: auto;
    left: 50%;
    opacity: 0;
    z-index: 98;
    width: 200px;
    display: block;
    transition: .3s;
    list-style: none;
    -o-transition: .3s;
    visibility: hidden;
    position: absolute;
    min-width: 17.75rem;
    min-width: 13.625rem;
    padding: .625rem 10px;
    word-wrap: break-word;
    background-color: #fff;
    -webkit-transition: .3s;
    border-radius: 0.313rem;
    -ms-word-wrap: break-word;
    transform: translateY(20px);
    margin: -.0625rem 0 0 -100px;
    -ms-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    box-shadow: 0 0.375rem 2.75rem rgba(0,0,0,0.17);
    -webkit-box-shadow: 0 0.375rem 2.75rem rgba(0,0,0,0.17);
}
.navigation li:hover > ul.sub-menu {
    opacity: 1;
    /* transform: none; */
    /* -ms-transform: none; */
    visibility: visible;
    /* -webkit-transform: none; */
    transform: translateY(15px);
    -ms-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -webkit-transform: translateY(15px);
}
.navigation ul.sub-menu::before {
    top: -5px;
    left: 0px;
    right: 0;
    margin: 0 auto;
    content: "";
    z-index: -2;
    width: .9375rem;
    height: .9375rem;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.navigation ul.sub-menu li {
    margin: 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
}
.navigation ul.sub-menu li a{
    color: #818992;
    display: block;
    transition: .3s;
    font-weight: 600;
    -o-transition: .3s;
    position: relative;
    font-size: 1.125rem;
    -webkit-transition: .3s;
    padding: .9375rem 1.5625rem;
}
.navigation ul.sub-menu li a::after,
.navigation ul.sub-menu li a::before{
    display: none;
}
.navigation ul.sub-menu li a:hover,
.navigation ul.sub-menu li a:focus{
    color: #000
}
.navigation ul.sub-menu li a.menu-active{
    background: #f1f2f7;
    color: #2d3136;
}





.nav-outer.affix {
    margin: 0;
    position: fixed;
    padding: 0px 0;
    background-color: #fff;
    box-shadow:0px 20px 20px 0px rgba(0, 0, 0, 0.05);
    transition:background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out;
    -o-transition:background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out;
    -ms-transition:background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out;
    -moz-transition:background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out;
    -webkit-transition:background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out;
}
.crypton-vertion .nav-outer.affix{
    background-color: #171921 !important;
}
.nav-outer.affix-top{
    background:transparent;
    box-shadow: none;
}
.nav-outer.affix  .logo,
.nav-outer.affix .navigation ul li a{
    /* color: #fff; */
    -o-transition:padding .4s ease;
    -ms-transition:padding .4s ease;
    -moz-transition:padding .4s ease;
    -webkit-transition:padding .4s ease;
    /*mix-blend-mode: unset;*/
}
.nav-outer.affix .logo {
    padding: 18px 0;
    max-width: 150px;
    -o-transition:padding .5s ease-in-out, width .5s ease-in-out,
    -ms-transition:padding .5s ease-in-out, width .5s ease-in-out,
    -moz-transition:padding .5s ease-in-out, width .5s ease-in-out,
    -webkit-transition:padding .5s ease-in-out, width .5s ease-in-out,
}
.nav-outer.affix .navigation ul.children li a {
    color: #818992;
    display: block;
    transition: .3s;
    font-weight: 600;
    -o-transition: .3s;
    position: relative;
    font-size: 1.125rem;
    -webkit-transition: .3s;
    padding: .9375rem 1.5625rem;
}
/******************************** Full Banner Area Start **********************************/
.full-page-bg{
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
    position: absolute;
    padding-top: 147px;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.full-page-bg .banner-caption-wrap{
    float: left;
    max-width: 460px;
    padding-bottom:2px; 
}
.full-page-bg .banner-caption-wrap .banner-title{
    float: left;
    width:100%;
    font-size: 20px;
    margin: 0 0 22px;
    line-height: 40px;
}

.banner-thumb{
    float: right;
    max-width: 1000px;
}

/******************************** Main Banner Css Start *******************************/
.main-banner{
    float: left;
    width: 100%;
    height:100%;
    position: relative;
    padding:0 0 0 0; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url('../images/banner-bg.svg'); */
}


.main-banner .banner-caption-wrap,
.main-banner .banner-thumb,
.main-banner .banner-thumb2 {
    float: left;
    width: 100%;
    height:100%;
    position: relative;
}
.main-banner p{
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 20px;
}
@-webkit-keyframes bounce1{0%, 100%{-webkit-transform:translateY(0);transform:translateY(0);}
50%{-webkit-transform:translateY(-20px);transform:translateY(-20px);}
}
@keyframes bounce1{0%, 100%{-webkit-transform:translateY(0);transform:translateY(0);}
50%{-webkit-transform:translateY(-20px);transform:translateY(-20px);}
}

.main-banner .newsletterform{
    position: relative;
}
.main-banner .newsletter-widget .form-control{
    font-size: 14px;
    min-height: 60px;
    border-radius: 40px;
    padding-left: 37px;
    background-color:#fff;
    border:none;
}
.search-icon{
    right: 7px;
    top: 50%;
    margin: 0;
    position: absolute;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.main-banner .newsletter-widget .btn{
    font-size: 16px;
    line-height: 19px;
    font-weight: normal;
    padding:15px 25px;
}
/******************************** Header 3 Css Start **********************************/
.intro-section.section-heading-2{

}
.intro-section.section-heading-2 .sub-title{
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color:#04004D;
    margin: 0 0 8px;
}
.intro-section.section-heading-2 .title{
    font-size: 44px;
    font-weight: normal;
    line-height: 50px;
    color:#04004D;
    margin: 0 0 22px;
}
.intro-section.section-heading-2 .title:last-child{
    margin: 0;
}
.intro-section.section-heading-2 p {
    font-size: 14px;
    font-weight: normal;
    color:#9192A6;
    line-height: 20px;
}

/******************************** Featured Thumb Start **********************************/
.featured-slider-section{
    padding: 0;
}
.featured-slider-section .slick-track{
    display: flex !important;
    align-items: center;
}
.featured-slider-section .slick-slide{
    padding: 0 15px;
}
.featured-thumb{
    float: left;
    width: 100%;
    margin: 0 0 30px;
    overflow: hidden;
}
.slick-slide .featured-thumb{
    margin: 0;
}
.slick-slide .featured-thumb img{
    margin:  0 auto;
}
/*Featured Slider Css Start*/
.crypton-vertion .featured-slider .featured-thumb.b-shadow,
.crypton-vertion .featured-slider .featured-thumb{
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
/******************************** Video Thumb Start **********************************/
.video-thumb{
    float: left;
    width: 100%;
    margin: 0 0 30px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
}
.video-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}
.video-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ba1f24;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}
.video-btn:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fa183d;
  border-radius: 50%;
  transition: all 200ms;
}
.video-btn:hover:after {
  background-color: #4b6fff99;
}
.video-btn span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}
@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
    border-radius: 100%;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
    border-radius: 100%;
  }
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
    border-radius: 100%;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
    border-radius: 100%;
  }
}



.features-section-bg{
    float: left;
    width: 100%;
    position: relative;
    background: #f5f6fb;
}
.features-section-bg::before{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    content: "";
    position: absolute;
    background-size:cover;
    background-repeat:no-repeat;  
    background-position:right center; 
    background-image:url(../fonts/7f0d2584a3a943b3afaa5c6c00ef6841.svg), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);*/
}
.features-thumb-2:hover{
    box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
}
.features-thumb-2 .svg-icon{
    float: none;
    width: auto;
    height: auto;
    display: block;
    font-size: 96px;
    margin: 0 auto 37px;
    width: 67px;
    height: 67px;
    border-radius: 100%;
    padding:12px; 
}
.features-thumb-2 .title{
    font-size: 18px;
    margin: 0 0 28px;
}
/******************************** RoadMap Thumb Start **********************************/
.roadmap-thumb{
    float: left;
    width: 100%;
    margin: 0px 0;
    position: relative;
    background-color: #fff;
    padding:28px 30px 26px; 
    box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
}
.roadmap-thumb::before {
    right: 0;
    left: 0px;
    top: -10px;
    content: "";
    width: 10px;
    height: 10px;
    margin: 0 auto;
    position: absolute;
    border-style: solid;
    border-width: 0px 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
}
.roadmap-thumb::after {
    top: 0px;
    right: 0;
    left: 0px;
    content: "";
    width: 19px;
    height: 19px;
    margin-top: -35px;
    border-width: 5px;
    position: absolute;
    border-radius: 100%;
    margin-bottom:-35px; 
    border-style: solid;
    border-color: #8d5cd7;
    background-color: #fff;
    margin-left: auto !important;
    margin-right: auto !important;
}
.roadmap-slider .slick-slide:nth-child(odd) .roadmap-thumb::after{
    margin-bottom: 0px !important;
}
.roadmap-slider .slick-slide:nth-child(even) .roadmap-thumb::after{
    margin-top: 0px !important;
    top: auto;
    bottom: 0;
}
.roadmap-thumb h6{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    margin: 0 0 14px;
    text-align: center; 
    text-transform: capitalize;
}
.roadmap-thumb .d-map{
    font-weight: 600;
}
.roadmap-thumb h6:last-child{
    margin: 0;
}
/*RoadMap Slider Start*/
.roadmap-slider{
    position: relative;
    margin: 0 0 125px;
}
.roadmap-slider::before{
    position: absolute;
    top: 50%;
    /* margin: 0 auto; */
    left: -50%;
    background-color: #8d5cd7;
    height: 1px;
    /* width: 100%; */
    content: "";
    min-width: 10000px;
}
.roadmap-slider .slick-list{
    float: none;
    width: auto;
    margin-left:-15px; 
    margin-right:-15px; 
}
.roadmap-slider .slick-slide{
    margin: 154px 0;
    padding:0 15px; 
}
.roadmap-slider .slick-slide:nth-child(odd){
    margin-bottom: 0px !important;
}
.roadmap-slider .slick-slide:nth-child(even){
    margin-top: 0px !important;
}
.roadmap-slider .slick-slide:nth-child(even) .roadmap-thumb::before{
    transform: rotate(180deg);
    top: auto;
    bottom: -10px;
}
.roadmap-slider .slick-arrow {
    left: 0;
    right: 0;
    top: auto;
    color: #fff;
    width: 50px;
    height: 50px;
    bottom: -95px;
    margin: 0 auto;
    transform: translate(0);
    -o-transform: translate(0);
    -ms-transform: translate(0);
    -moz-transform: translate(0);
    -webkit-transform: translate(0);
    background-color: rgba(255,255,255,0.33);   
}
.roadmap-slider .slick-arrow::before{
    font-family: 'Glyphicons Halflings'; 
}
.roadmap-slider .slick-prev{
    left: -65px;
} 
.roadmap-slider .slick-next{
    right: -65px;
} 
.roadmap-slider .slick-arrow:hover{
    box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
}
.roadmap-slider .slick-prev::before {
    content: "\e079";
}
.roadmap-slider .slick-next::before {
    content: "\e080";
}
/*RoadMap 2 Slider Start*/
.roadmap-slider-2{
    position: relative;
    margin: 0 0 30px;
}
.roadmap-slider-2::before{
    position: absolute;
    top: 50%;
    /* margin: 0 auto; */
    left: -50%;
    height: 1px;
    /* width: 100%; */
    content: "";
    min-width: 10000px;
    background-color: #8d5cd7;
}
.roadmap-slider-2::after {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    left: 0%;
    height: 100%;
    width: 200%;
    content: "";
    background-image: linear-gradient(to bottom, #1f212c, #1d1f29, #1b1d2666, #191b2433, #12142033);
    left: -50%;
    z-index: -1;
}
.gd-none::after{
    display: none !important;
}
.roadmap-slider-2 .slick-list{
    float: none;
    width: auto;
    margin-left:-15px; 
    margin-right:-15px; 
}
.roadmap-slider-2 .slick-slide{
    padding:0 15px; 
}
.roadmap-slider-2 .slick-slide::before {
    right: 0;
    top: 50%;
    left: 0px;
    content: "";
    width: 9px;
    height: 42px;
    margin: 0 auto;
    margin-top: 44px;
    mask-size: cover;
    position: absolute;
    mask-position: center;
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
    mask-image: url(../fonts/pin-icon.svg);
    -webkit-mask-image: url(../fonts/pin-icon.svg);
    mask: url(../fonts/pin-icon.svg) no-repeat 100% 100%;
    -webkit-mask: url(../fonts/pin-icon.svg) no-repeat 100% 100%;
    transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
}
.roadmap-slider-2 .slick-slide::after {
    top: 50%;
    right: 0;
    left: 0px;
    content: "";
    width: 36px;
    height: 36px;
    border-width: 2px;
    position: absolute;
    border-radius: 100%;
    border-style: solid;
    border-color: #8d5cd7;
    background-color: #1c1e28;
    margin-left: auto !important;
    margin-right: auto !important;
    box-shadow: 0 0 0 10px #1d1f29 inset,0 0 0 10px #1d1f29;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.gd-none .slick-slide::after{
    box-shadow: 0 0 0 10px #fff inset,0 0 0 10px #fff;
}
.roadmap-slider-2 .slick-slide:nth-child(even)::before{
    top: auto;
    bottom: 50%;
    margin-bottom: 44px;
    transform: translateY(50%) rotate(0deg);
    -o-transform: translateY(50%) rotate(0deg);
    -ms-transform: translateY(50%) rotate(0deg);
    -moz-transform: translateY(50%) rotate(0deg);
    -webkit-transform: translateY(50%) rotate(0deg);
}
.roadmap-slider-2 .slick-arrow {
    left: 0;
    right: 0;
    top: auto;
    color: #fff;
    width: 50px;
    height: 50px;
    bottom: -95px;
    margin: 0 auto;
    transform: translate(0);
    -o-transform: translate(0);
    -ms-transform: translate(0);
    -moz-transform: translate(0);
    -webkit-transform: translate(0);
    background-color: rgba(255,255,255,0.33);   
}
.roadmap-slider-2 .slick-arrow::before{
    font-family: 'Glyphicons Halflings'; 
}
.roadmap-slider-2 .slick-prev{
    left: -65px;
} 
.roadmap-slider-2 .slick-next{
    right: -65px;
} 
.roadmap-slider-2 .slick-arrow:hover{
    box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
}
.roadmap-slider-2 .slick-prev::before {
    content: "\e079";
}
.roadmap-slider-2 .slick-next::before {
    content: "\e080";
}



.roadmap-thumb-2{
    float: left;
    width: 100%;
    padding:0; 
    margin: 229px 0;
    position: relative;
}
.roadmap-slider-2 .slick-slide:nth-child(odd) .roadmap-thumb-2{
    margin-bottom: 0px !important;
}
.roadmap-slider-2 .slick-slide:nth-child(even) .roadmap-thumb-2{
    margin-top: 0px !important;
}
.roadmap-thumb-2 h6{
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 16px;
    text-align: center; 
    text-transform: capitalize;
}
.roadmap-thumb-2 .d-map{
    font-weight: 600;
}
.roadmap-thumb-2 h6:last-child{
    margin: 0;
}











/******************************** Donut Chart Start **********************************/
.amcharts-chart-div > a{
    display: none !important;
}
#chartdiv{
    min-height: 420px !important;
}
.donut-chart-outer{
    float: left;
    width: 100%;
    overflow: hidden;
    /* max-height: 345px; */
    position: relative;
    /* margin: 25px 0; */
    background: transparent;
}
.donut-chart-outer #chartdiv{
    opacity: 1;
    /* left: -1%; */
    top: -30px;
    margin: 0 0 -35px;
    min-width: 660px;
    overflow: hidden;
    text-align: left;
    position: relative;
}
.chart-caption-thumb{
    float: left;
    width: 100%;
    margin: 0 0 30px;
    padding:42px 45px;
    border: 1px solid #e3e3e3;
}
.chart-caption-thumb .title{
    font-size: 28px;
    text-transform: capitalize;
    margin: 0 0 38px;
}
.graph-caption{
    float: left;
    width: 100%;
    padding-left:50px;
    margin: 0 0 27px; 
}
.graph-caption:last-child{
    margin: 0;
}
.graph-caption strong{
    float: left;
    width: 100%;
    margin: 0 0 2px;
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    position: relative;
}
.graph-caption strong::before{
    width: 27px;
    height: 27px;
    content: "";
    top: 0;
    left: -50px;
    position: absolute;
    border-radius: 100%;
    background-color: red;
}
.graph-caption p{
    margin: 0;
    float: left;
    width: 100%;
    color:#4c4c4c;
    font-size: 18px;
    line-height: 18px;
}

.graph-caption strong.orange{
    color: #df661d;
}
.graph-caption strong.orange::before{
    background-color: #df661d;
}
.graph-caption strong.reddish{
    color:#ec3737;
}
.graph-caption strong.reddish::before{
    background-color:#ec3737;
}
.graph-caption strong.purple{
    color:#a32dd9;
}
.graph-caption strong.purple::before{
    background-color:#a32dd9;
}
/******************************** Team Thumb Start **********************************/
.osr-team-thumb{
    float: left;
    width: 100%;
    margin-top: 65px;
    margin-bottom:30px; 
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
    -webkit-box-shadow: 0 0 0 1px rgba(186,186,186,0.028), 0 1.8vw 3vw -0.7vw rgba(0,0,0,0.06);
}
.osr-team-thumb figure{
    float: none;
    width: 130px;
    height: 130px;
    margin-top: -65px;
    margin-bottom:0px; 
    border-radius: 100%;
}
.osr-team-thumb .text{
    text-align: center;
    padding: 28px 30px 22px;
}
.osr-team-thumb .title{
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 8px;
}
.osr-team-thumb .designation{
    float: left;
    width: 100%;
    font-size: 14px;
    margin: 0 0 6px;
    line-height: normal;
}
.osr-team-thumb p{
    float: left;
    width: 100%;
    margin: 0;
}
/*Team 2 Start*/
.osr-team-thumb-2{
    float: left;
    width: 100%;
    margin: 0 0 30px;
    text-align: center;
}
.osr-team-thumb-2 figure{
    margin: 0 0 18px;
}
.osr-team-thumb-2 figure img{
    opacity: 0.3;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.osr-team-thumb-2:hover figure img{
    opacity: 1;
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}
.osr-team-thumb-2 .title{
    font-size: 16px;
    margin: 0 0 10px;
    text-transform: capitalize;
}
.osr-team-thumb-2 .designation{
    float: left;
    width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 14px;
}
/******************************** Blog Thumb Start **********************************/
.blog-thumb{
    float: left;
    width: 100%; 
    margin: 0 0 30px;
    border: 1px solid #E4E4E7;
    border-radius: 10px;
    padding: 40px 30px;
}
.blog-thumb figure{
    margin: 0 0 25px;
}
/*Them Overlay Effect Start*/
.blog-thumb figure img{
    opacity: 0.95;
    transform: scale3d(1.05,1.05,1);
    -webkit-transform: scale3d(1.05,1.05,1);
    transition: opacity 0.35s, transform 0.35s !important;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s !important;
}
.blog-thumb figure::before{
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255,255,255,0.1);
    transition: transform 0.6s !important;
    -webkit-transition: -webkit-transform 0.6s !important;
    -moz-transition: -moz-transform 0.6s !important;
    -ms-transition: -ms-transform 0.6s !important;
    -o-transition: -o-transform 0.6s !important;
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
    -moz-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
    -ms-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
    -o-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
}
.blog-thumb:hover figure img{
    opacity: 0.25;
    transform: scale3d(1,1,1);
    -webkit-transform: scale3d(1,1,1);
    -moz-transform: scale3d(1,1,1);
    -ms-transform: scale3d(1,1,1);
    -o-transform: scale3d(1,1,1);
}
.blog-thumb:hover figure::before{
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
    -moz-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
    -ms-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
    -o-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
}
/*Kenburns top ffect */
@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
.blog-thumb .blog-meta{
    float: left;
    width: 100%;
    margin: 0 0 20px;
}
.blog-thumb .title{
    font-size: 24px;
    line-height: 28px;
    font-weight: normal;
    margin: 0 0 18px;
}
.blog-thumb p{
    float: left;
    width: 100%;
    margin: 0 0 17px;
}
.blog-thumb p:last-child{
    margin-bottom:1px; 
}
.blog-thumb [class*="btn"]{
    float: left;
}
/*Blog Thumb 2 Start*/
.blog-thumb-2{
    float: left;
    width: 100%;
    margin: 0 0 30px;
    overflow: hidden;
    background-color: #1e202b;
}
.blog-thumb-2 figure {
    margin: 0 0 27px;
}
.blog-thumb-2 figure::after{
    display: none !important;
}
.blog-thumb-2 figure::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-image: linear-gradient(-180deg, rgba(0,0,0,0.00) 0%, #000000 100%);
}
.blog-thumb-2 .blog-meta{
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    padding:20px 25px;
    position: absolute;
}
.blog-thumb-2 .blog-meta li{
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}
.blog-thumb-2 .text{
    padding: 0 25px 5px;
}
.blog-thumb-2 .title {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 18px;
}
.blog-thumb-2 p {
    float: left;
    width: 100%;
    margin: 0 0 17px;
}

/******************************** Copy Right Bar Start **********************************/
.copy-right{
    float: left;
    width: 100%;
    padding:33px 0 28px; 
    background-color: #04004D;
    border-top: 1px solid #9E9DC030;
}
.copy-right p{
    margin: 0;
    color: #9E9DC0;
}
.short-nav{
    float: left;
    width: 100%;
    padding: 2px 0;
}
.short-nav li{
    float: left;
    width: auto;
    font-size: 12px;
    margin: 0 0 0 20px;
}
.short-nav li:first-child{
    margin-left:0; 
}
.short-nav li a{
    color: currentcolor;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.short-nav li a:hover{
    color: #fff;
}
.short-nav li a::before {
    left: 0;
    bottom: 0;
    content: '';
    right: 100%;
    height: 1px;
    position: absolute;
    background-color: #fff;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.short-nav li a:hover::before {
    right: 0;
}
.light-black-bg.copy-right *{
    color: #a8b0b5;
}

/*
    ==============================================================
       CONTACT US CSS START #CONTACT US
    ==============================================================
*/
.contact-section{
    float: left;
    width: 100%;
    z-index: 1;
    border-radius:5px; 
    position: relative;
    background-color: #fff;
    padding:30px;
    margin: 70px 0;
    box-shadow: 0 5px 10px rgba(0,9,128,0.035), 0 7px 18px rgba(0,9,128,0.05);
    -o-box-shadow: 0 5px 10px rgba(0,9,128,0.035),0 7px 18px rgba(0,9,128,0.05);
    -ms-box-shadow: 0 5px 10px rgba(0,9,128,0.035),0 7px 18px rgba(0,9,128,0.05);
    -moz-box-shadow: 0 5px 10px rgba(0,9,128,0.035),0 7px 18px rgba(0,9,128,0.05);
    -webkit-box-shadow: 0 5px 10px rgba(0,9,128,0.035), 0 7px 18px rgba(0,9,128,0.05);
}
section.fake-footer-inner .contact-section{
    margin: 0 0 30px;
}
.contact-section .oscar-section-heading-1{

}
.contact-section .oscar-section-heading-1 p{
    float: left;
    width: 100%;
}
.contact-section .input-field{
    margin: 0 0 20px;
}
.contact-section .form-control{
    color: #383a42;
    border-radius: 5px;
    border: 1px solid #eaeaea;
}
.contact-form{
    float: left;
    width: 100%;
}
.contact-section .form-control::-moz-placeholder{
    color: #383a42;
}
.contact-section .form-control::-webkit-input-placeholder{
    color: #383a42;
}
.ab-right{
    top: 50%;
    left: auto;
    right: 20px;
    position: absolute;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.contact-section .btn{
    float: right;
    padding: 20px 75px 17px;
}
.fake-footer{
    float: left;
    width: 100%;
    padding: 0 !important;
    position: relative;
}
.fake-footer .fake-footer-inner{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.fake-footer-inner #map-canvas{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.osr-footer-2 .widget-newsletter .search-icon{
    position: static;
    transform: none;
}
/*
    ==============================================================
    Crypton Dark Vertion CSS START 
        font-family: 'Montserrat', sans-serif;
        font-family: 'Open Sans', sans-serif;
        font-family: 'Ubuntu', sans-serif;
    ==============================================================
*/
body.crypton-vertion{
    background-color: #171921;
    color: #8f96af;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
}
.crypton-vertion .lighter-black-bg {
    background-color: #171921;
}
.crypton-vertion .h1,.crypton-vertion .h2,.crypton-vertion .h3,.crypton-vertion .h4,.crypton-vertion .h5,.crypton-vertion .h6,
.crypton-vertion h1,.crypton-vertion h2,.crypton-vertion h3,.crypton-vertion h4,.crypton-vertion h5,.crypton-vertion h6{
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.crypton-vertion .b-shadow{
    box-shadow: 0 10px 30px 0 rgba(0,0,0,.5) !important;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0,0,0,.5) !important;
}
.crypton-vertion p{

}
.crypton-vertion section,
.crypton-vertion .section{
    padding:45px 0 20px;
}
.crypton-vertion .oscar-header-2 {
    background-size: 50%;
    background-position: 98% bottom;
    background-image: url(../images/iisometric.png);
}
.crypton-vertion .navigation li a{
    color: #a8afcc;
    font-size: 14px;
    padding: 2px 0 3px;
    font-family: 'Ubuntu', sans-serif;
}

.crypton-vertion .features-thumb-2{
    background-color: #21232e;
}



/******************************** Footer Area Start **********************************/

.crypton-vertion .osr-footer-2{
    padding:66px 0 33px;
}
.crypton-vertion .osr-footer-2 .widget{
    margin: 0 0 30px;
}
.crypton-vertion .osr-footer-2 .widget-title{
    margin: 0 0 20px;
}
.crypton-vertion .osr-footer-2 .widget-title .title{
    margin: 0 0 9px;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
}
.crypton-vertion  .widget_about p{
    margin: 0 0 30px;
}
.crypton-vertion .widget_about .social-list li a{
    font-size: 14px;
    line-height: 28px;
}
.crypton-vertion  .osr-footer-2 .widget_categories ul li,.crypton-vertion  .osr-footer-2 .widget_nav_menu ul li {
    margin: 0 0 14px;
}
footer.dark-black .form-control::-moz-placeholder{
    color: currentcolor;
}
footer.dark-black .form-control,
footer.dark-black .widget_about .text *,
footer.dark-black .widget-newsletter p,
footer.dark-black .widget_rss ul li,
footer.dark-black .widget_meta ul li,
footer.dark-black .widget_pages ul li,
footer.dark-black .widget_archive ul li,
footer.dark-black .widget_nav_menu ul li,
footer.dark-black .widget_categories ul li,
footer.dark-black .widget_recent_comments ul li,
footer.dark-black .widget_recent_entries ul li{
    color: #8f96af;
}
/******************************** Footer 2 Start **********************************/
.osr-footer-2.dark-black .widget_categories ul li::before, 
.widget_nav_menu ul li a::before{
    background-color: #fff;
}
.osr-footer-2.dark-black .widget_categories ul li:hover, 
.osr-footer-2.dark-black .widget_nav_menu ul li a:hover{
    color: #fff;
}
.widget_about .social-list li a{
    border-color: #8f96af
}



/*
==============================================================
    grad Version CSS START 
==============================================================
*/

.oscar-header-4{
    left: 0;
    right: 0;
    z-index: 3;
    position: fixed;
}
.oscar-header-4 .mean-container a.meanmenu-reveal{
    border-color: #645CFE;
}
.oscar-header-4 .mean-container a.meanmenu-reveal span{
    background: #645CFE;
}
.oscar-header-4 .nav-outer.affix .logo img{
    /*mix-blend-mode: difference;*/
}
.oscar-header-4 .menu-holder{
    padding: 26px 0;
}
.oscar-header-4 .nav-outer.affix .menu-holder {
    padding: 32px 0;
}
.oscar-header-4 .menu-holder,
.oscar-header-4 .nav-outer .logo,
.oscar-header-4 .nav-outer.affix .logo,
.oscar-header-4 .nav-outer.affix .logo img,
.oscar-header-4 .nav-outer.affix .menu-holder{
    transition: background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out, max-width .3s ease-in-out;
    -o-transition: background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out, max-width .3s ease-in-out;
    -ms-transition: background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out, max-width .3s ease-in-out;
    -moz-transition: background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out, max-width .3s ease-in-out;
    -webkit-transition: background .3s ease-in-out,box-shadow .3s ease-in-out, padding .3s ease-in-out, max-width .3s ease-in-out;
}
.oscar-header-4 .navigation li a::after,
.oscar-header-4 .navigation li a::before{
    top: calc(100% + 15px);
}
.oscar-header-4 .navigation li a{
    /*color: #fff;*/
    /*mix-blend-mode: inherit;*/
}
.oscar-header-4 .nav-outer.affix .navigation li a{
    color: #000;
}
.oscar-header-4 .navigation li:hover > ul.sub-menu {

    transform: translateY(30px);
    -ms-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
}
.main-banner-2{
    float: left;
    width: 100%;
    position: relative;
    padding:350px 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/banner-bg.svg');
}
.main-banner-2::before{
    top: 0;
    left: 0;
    right: 0;
    content: "";
    bottom: 30px;
    position: absolute;
    background: #091928;
    mask: url(../fonts/banner-bg-shape.svg);
    mask-image: url(../fonts/banner-bg-shape.svg);
    -webkit-mask: url(../fonts/banner-bg-shape.svg);
    -webkit-mask-image: url(../fonts/banner-bg-shape.svg);
    mask-position: bottom right;
    -webkit-mask-position: bottom right;
    -webkit-mask-size: cover;
    mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}
.main-banner-2 .banner-caption-wrap{
    padding:0px 0;
    margin-bottom:200px 
}
.main-banner-2 .banner-title{
    font-size: 60px;
    line-height: 71px;
    margin: 0 0 59px;
    font-weight: 500;
}
.main-banner-2 .btn + .btn{
    margin-left:26px 
}
.main-banner-2 .col-lg-9{
    margin-right: -8.33333333%;
}
.main-banner-2 .banner-thumb{
    margin: 0;
    max-width: 100%;
}
.main-banner-2 .banner-thumb::before{
    top: 100%;
    left: 50px;
    right: 50px;
    content: "";
    height: 10px;
    position: absolute;
    border-radius: 100%;
    margin: -10px auto 0;
    background: rgba(0,0,0,0.20);
    max-width: calc(100% - 50px);
    box-shadow: 0 10px 30px 0 rgba(50,50,98,0.15);
    -webkit-box-shadow: 0 10px 15px 0 rgba(0,0,0,0.40);
}
.main-banner-2 .banner-thumb img{
    top: auto;
    left: -60px;
    max-width: 100%;
    min-width: 754px;
    animation: none;
    position: static;
    -webkit-animation: none;
}
/*
============================================================
    Rating Css Start
============================================================
*/
/* .rating_down {
    float: none;
    width: 80px;
    height: 14px;
    display: inline-block;
    background-position: 0 0;
    background-repeat: repeat-x;
    background-image: url("../images/stars.png");
}
.rating_up {
    float: left;
    height: 100%;
    display: inline-block;
    background-repeat: repeat-x;
    background-position: 0px -17px;
    background-image: url("../images/stars.png");
}
.testimonial-thumb{
    float: left;
    width: 100%;
    background: #fff;
    text-align: center;
    margin-bottom:40px; 
    position: relative;
    padding: 33px 40px 32px;
    border:1px solid #c3e2e2;
}
.testimonial-thumb::before,
.testimonial-thumb::after{
    content: "";
    top: 100%;
    width: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
    line-height: 0px;
    _border-color: #fff #000000 #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');

}
.testimonial-thumb::before{
    border-width: 12px 12px 0 12px;
    border-color: #c3e2e2 transparent transparent transparent;
    line-height: 0px;
    _border-color: #c3e2e2 #000000 #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');

}
.testimonial-thumb p:last-child{
    margin: 0;
}
.testimonial-head{
    float: left;
    width: 100%;
    text-align: center;
}
.testimonial-head figure{
    float: none;
    display: block;
    max-width: 121px;
    max-height: 121px;
    margin: 0 auto ;
    border-radius: 100%;
    border:4px solid #fff;
}
.grad-testimonial-section{
    background-color: #645CFE;
    background-size: cover;
    background-position: center;
    background-image: url(../images/testimonials-bg-line.svg);
}
.grad-testimonial.slick-vertical .slick-list{
    margin: -8px 0;
}
.grad-testimonial.slick-vertical .slick-slide{
    padding:8px 0; 
}
.grad-testimonial-section .section-heading-2 .sub-title,
.grad-testimonial-section .section-heading-2 p,
.grad-testimonial-section .section-heading-2 .title{
    color:#fff;
}

.grad-testimonial-section .section-heading-2 p{
    margin: 0 0 14px;
}
.grad-testimonial-section .section-heading-2 p:last-child{
    margin: 0;
}
.grad-testimonial-thumb{
    float: left;
    width: 100%;
    border-radius: 20px;
    text-align: left;
    padding:30px;
    background-color: #fff;
}
.grad-testimonial-thumb p{
    font-size: 16px;
    color:#04004D;
    font-weight: normal;
    margin: 0 0 19px;
}
.grad-testimonial-thumb .testimonial-head figure{
    float: left;
    margin: 0 12px 0 0;
    width: 44px;
    height: 44px;
}
.grad-testimonial-thumb .testimonial-head .title{
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 5px;
    color:#04004D;
}
.grad-testimonial-thumb .testimonial-head .sub-title{
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    color:#9192A6;
}
.grad-testimonial-thumb .overflow-text{
    text-align: left;
    padding:3px 0;
    position: relative;;
}
.grad-testimonial-thumb .overflow-text .rating_down{
    top: 50%;
    right: 0;
    position: absolute;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.testimonial-thumb-nav .overflow-text{
    padding-top:19px; 
}
.testimonial-head .title{
    color: ;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}
.testimonial-head .designation {
    color: ;
    margin: 0;
    font-size: 13px;
    font-weight: 300;
}



.testimonial-bg + *,
.testimonial-bg{
    z-index: 1;
    padding-bottom:0;
    overflow: hidden;
}
.testimonial-bg + *::after,
.testimonial-bg::after{
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 90px;
    z-index: -1;
    background: #11314e;
    position: absolute;
}
.testimonial-bg + *::after{
    top: 0;
    height: auto;
    bottom: 85px;
}
.testimonial-thumb-nav{
    float: left;
    width: 100%;
    position: relative;
}
.testimonial-thumb-nav .slick-track{
    min-height: 180px;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.testimonial-thumb-nav .slick-slide .overflow-text{
    max-height: 0;
    padding: 0;
}
.testimonial-thumb-nav .slick-center .overflow-text{
    max-height: 100%;
    padding-top:19px; 
}
.testimonial-head,
.testimonial-thumb-nav .slick-center *,
.testimonial-thumb-nav .slick-center{

    transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.testimonial-bg + * *,
.testimonial-bg .section-heading-2 *,
.testimonial-bg .testimonial-thumb-nav *{
    color: #fff;
}
 */




.no-gutters>.col, .no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}
.flex-row {
    -ms-flex-direction: row!important;
    flex-direction: row!important;
    display: -ms-flexbox;
    display: flex;

}
.align-items-end {
    -ms-flex-align: end!important;
    align-items: flex-end!important;
}

/*Pricing Table Start*/

.pricing-table{
    float: left;
    width: 100%;
    text-align: left;
    /* background: #fff; */
    position: relative;
    padding:32px;
    border-radius: 20px;
    box-shadow: 10px 20px 30px #00000008;
}
.pricing-table.active{
    background: #25265E;
    transform: translateY(-15px);
    -o-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
}
.pricing-table.active .price-unit sub,
.pricing-table.active .price-type,
.pricing-table.active .price-unit,
.pricing-table.active .list-group-item{
    color:#fff;
}
.star-badge{
    position: absolute;
    top: 0px;
    color: #fff;
    right: 26px;
    width: 38px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.star-badge [class*="fa-"] *,
.star-badge [class*="fa-"] {
    color: currentColor;
    fill: #fff;
}
.price-area{
    float: left;
    width: 100%;
    margin-bottom:17px; 
}
.price-type{
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 13px;
    text-transform: capitalize;
}
.price-type .badge{
    color:#fff;
    background-color:#00C58D; 
    margin: 0 0 0 12px;
    padding: 7px 10px;
    border-radius: 14px;
    font-weight: normal;
    font-size: 10px;
    line-height: 10px;
}
.price-unit {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    line-height: 40px;
    color: #333; /* Ensuring text color is explicitly set for visibility */
}

.price-unit p {
    color: #333; /* Adding this to ensure paragraph text is visible */
}

.price-unit sub{
    font-size: 14px;
    color:#9192A6;
    line-height: 20px;
    font-weight: normal;
}
.pricing-table .input-field{
    margin: 0 0 15px;
}
.pricing-table .input-field select.form-control{
    float: none;
    display: block;
    margin: 0 auto;
    max-width: 124px;
    min-height: 30px;
    max-height: 30px;
    border-radius: 50px;
    border:1px solid #e1e1e1;
}
/* .pricing-table .list-group{
    float: left;
    width: 100%;
    margin: 0 0 15px;
}
.pricing-table .list-group-item {
    float: left;
    width: 100%;
    position: relative;
    display: block;
    margin-bottom: -1px;
    padding: 8px 0px;
    background-color: transparent;
    border: none;
    color:#9192A6;
    font-size: 14px;
    line-height: 20px;
}
.pricing-table .list-group-item::before{
    float: left;
    margin-right:12px; 
    content: "\f333";
    font-family: oscarthemes;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    color:#00c58d;
    background-color: rgba(0,197,141,0.1);
    text-align: center;
    line-height: 18px;
    font-size: 10px;

} */
.testimonial-bg + * .pricing-table *{
    color: #656565;
}
.testimonial-bg + * .pricing-table .price-unit,
.testimonial-bg + * .pricing-table .price-type{
    color: #000;
}
.pricing-table .btn{
    font-size: 16px;
    font-weight: normal;
    line-height: 19px;
    padding: 13px 45px;
    width: 100%
}
.pricing-table .btn.th-bdr.border.th-cl:hover{
    color: #fff !important;
}
/*.pricing-table .btn.th-bg{
  box-shadow: 0px 10px 20px 0px rgba(23, 191, 152, 0.5);
}*/
.price-section{
    position: relative;
}
.price-section::after{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
   background: transparent linear-gradient(180deg, #EEFFFA 0%, #FFF3F3 100%) 0% 0% no-repeat padding-box;
}
.price-section .section-heading-2{
    position: relative;
    z-index: 1;
}
.price-section .section-heading-2 p{
    margin-right:auto; 
    margin-left:auto; 
    max-width: 500px;
    display: block;
    float: none;
}
.price-section .pricing-table{
    z-index: 1
}

.blog-post-slider{
    float: left;
    width: 100%;
}
.blog-post-slider .slick-dots {
    bottom: 0;
    width: 50%;
    text-align: center;
    left: auto;
    right: 0;

}
.row.blog-thumb{
    float: none;
    width: inherit;
    margin-left:-15px; 
    margin-right:-15px; 
}
.blog-post-slider .text{
    padding:15px 0 15px;
}
.blog-post-slider .blog-thumb figure{
    margin: 0;
}

.about-caption-3.price-table-heading{
    
}

/*
      ============================================================
           Sub Banner Css Start #Sub Banner
      ============================================================
*/

.sub-banner{
    float: left;
    width: 100%;
    z-index: 1;
    text-align: center;
    position: relative;
    padding: 300px 0px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

}
.sub-banner::before {
    top: 0;
    left: 0;
    right: 0;
    content: "";
    bottom: 0px;
    position: absolute;
    background: #091928;
    mask: url(../../fonts/banner-bg-shape.svg);
    mask-image: url(../fonts/banner-bg-shape.svg);
    -webkit-mask: url(../fonts/banner-bg-shape.svg);
        mask-repeat: repeat;
        mask-position-x: 0%;
        mask-position-y: 0%;
        mask-size: auto;
        mask-image: url("../fonts/banner-bg-shape.svg");
    -webkit-mask-image: url(images/banner-bg-shape.svg);
    mask-position: bottom right;
    -webkit-mask-position: bottom right;
    -webkit-mask-size: cover;
    mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    z-index: -1;
}
.sub-banner .container{
    position: relative;
}
.sub-banner .title{
    color: #fff;
    font-weight: bold;
    line-height: 70px;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
}
.sub-banner .title:last-child{
    margin: 0px 0px 0px 0px;
}
.sub-banner ul{
    margin:0px 0 18px;
    list-style: none;
    display: inline-block;
}
.sub-banner ul li{
    float: left;
    border-color: #fff;
    border-style: solid;
    border-width: 0 0 0 1px;
}
.sub-banner ul li:first-child{
    border-width:0; 
}
.sub-banner ul li a{
    color: #fff;
    display: block;
    font-size: 14px;
    padding: 0 10px;
    font-weight: bold;
    text-transform: uppercase;
}
.sub-banner ul li,
.sub-banner ul li a{
    line-height: 14px;
}

/*Footer 3 Start*/
.osr-footer-3{
    float: left;
    width: 100%;
    position: relative;
    background: #091928;
}
.osr-footer-3 .widget-title{
    margin: 0 0 29px;
}
.osr-footer-3 .widget-title .title{
    color: #fff;
}



.widget-contact-form .input-field{
    margin:  0 0 22px;
}
.widget-contact-form .input-field textarea{
    margin: 0 0 8px;
}
.widget-contact-form label{
    margin: 0 0 12px;
}
.widget-contact-form .form-control{
    border-color: #22303e;
    border-width:0 0 1px 0; 
    border-radius: 0;
    min-height: 30px;
    padding: 0 0 20px 20px;
}
.widget-contact-form .form-control:focus{
    box-shadow: none;
}
.widget-contact-form .ab-right{
    top: 7px;
    left: 0;
    right: auto;
}
.widget-contact-form .btn{
    float: right;
    padding:16px 55px;
    text-transform: uppercase;
}


footer.osr-footer-3 .copy-right p,
footer.osr-footer-3 label,
footer.osr-footer-3 .ab-right,
footer.osr-footer-3 .widget_categories ul li:hover, 
footer.osr-footer-3 .widget_nav_menu ul li a:hover,
footer.osr-footer-3 li {
    color: #3f5b75 ;
}
.osr-footer-3.mt-102{
    margin-top:102px; 
}
.osr-footer-3 .newsletter-bar{
    margin: -102px 0 73px 0;
}


.newsletter-bar{
    float: left;
    width: 100%;
    padding: 48px 50px 50px;
    border-radius: 0 100px 0 100px;
}
.newsletter-bar .title{
    float: left;
    width: 100%;
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 600;
}
.newsletterform{
    float: left;
    width: 100%;
}
.newsletter-bar .form-control{
    color: #72889c;
    padding-left:30px; 
    padding-right:30px; 
    width: calc(100% - 140px);
}
.newsletter-bar .btn,
.newsletter-bar .form-control{
    border-radius: 50px;
    min-height: 50px;
}
.newsletter-bar .btn{
    width: 100%;
    float: right;
    max-width: 130px;
    font-weight: bold;
    background: #091928;
    text-transform: uppercase;
}
.newsletter-bar .text{
    padding:24px 0; 
}
.newsletter-bar .text p{
    margin: 0;
    float: left;
    width: 100%;
    font-size: 18px;
    line-height: normal;
    text-transform: capitalize;
}
.newsletter-bar .text strong{
    font-size: 20px;
    font-weight: bold;
    float: left;
    width: 100%;
    margin-top:1px; 
}
.th-bg.newsletter-bar .text strong,
.th-bg.newsletter-bar .title{
    color: #fff;
}
.th-bg.newsletter-bar .form-control{
    border-color:#fff; 
    background-color:#fff;
}


/*airquality pm2.5 map*/
#airqualitymap { 
    background-image: url('../images/airquality_background.png'); /* Replace 'path/to/your-image.jpg' with the actual path to your image */
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100%; 
    height: 100%;
    min-height: 800px;
    align-items: center;
    text-align: center;
}
#airqualitymap .title {
    font-size: 65px; 
    color:white; 
    font-weight: bold;
    margin-bottom: 40px; /* Adds some space below the title */
    text-align: center;
    margin-top:50px;
}
#airqualitymap h5 {
    font-size: 24px; 
    color: white; 
    margin-bottom: 30px;
    line-height: 1.4; 
    text-align: left;
}
#airqualitymap .btn {
    margin-top:20px;
    font-size: 24px;
    padding: 15px 30px; 
    background-color: #0056b3; 
    color: white;
    font-weight: bold;
    border: none; 
    text-align: center;
    display: inline-block; 
    justify-content: center;

}
#airqualitymap > div {
    max-width: 1170px; /*a max-width similar to a Bootstrap container */
    padding: 40px; /* Adequate padding around the content */
    margin: auto; /* Centers the container within the section */
}
/*css design for all sections title font*/
#AirQuality .intro-section h1
#Metro .section-heading-2 h1
#Built-up .section-heading-2 h1{
    font-size:60px;
    font-weight:bold;
    color:black;
}

#UrbanHistory .text-center h1{
    color:black;
    font-size:60px;
    font-weight:bold;
    margin-top: 150px;
    }
/*font design for the metro*/


/*style for metro mapbox map*/
.map-container {
    display: inline-block; 
    width: 45%; 
    height: 300px; 
    margin-right: 20px; 
     z-index: 1;
}

/*style for metro mapbox map*/
.map-container_metro {
    display: inline-block; 
    width: 70%; 
    height: 450px; 
    margin-right: 20px; 
     z-index: 1;
}

/* style for build-up area */
.image-container {
    position: relative;
}
.year-display {
    position: absolute;
    bottom: 10px; 
    left: 10px; 
    font-size: 24px; 
    color: white;
}

#Built-up .section-heading-2 p{
    font-size:18px;
    color:black;
    margin-top:20px;

}

#AirQuality .text p
{
    font-size:18px;
    color:black;
}
#Built-up .col-md-4 p{
    font-size:18px;
    color:black;
}
/*tab switch for images*/
.focus {
    width: 50%;
    height: 650px;
    margin: 30px auto;
}




#carousel-example-generic .carousel-inner .item img {
    width: 100%; /* Ensure the image covers the full width of the carousel item */
    height: auto; /* Maintain the aspect ratio of the image */
    max-height: 650px; /* Optional: Limit the height if necessary */
    z-index:1;
}

#carousel-example-generic
    .carousel-caption {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        color: black;
        font-weight: bold;
        background-color: transparent;
        padding: 10px;
        text-align: center;
        z-index:1;
    }
    



@media (max-width: 768px) {

 #carouselExampleIndicatorsfirstpage  .carousel-item {
        
      height: 450px;
    }
  }
  @media (min-width: 768px) {
  
    #carouselExampleIndicatorsfirstpage .carousel-item {
      height: 600px;
    }
  }
  @media (min-width: 992px) {

    #carouselExampleIndicatorsfirstpage .carousel-item {
      height: 900px;
    }
  }
/*css for the carousel for first page*/
.bg-body-tertiary {
    background-color: transparent !important;
  }
  .bg-body-tertiary .navbar-collapse {
    flex-grow: 0;
  }




    
    /* Carousel Control Icons Size */
    .carousel-control-prev-icon, .carousel-control-next-icon {
        background-size: 30px 30px; /* Bigger icon size */
        width: 30px; /* Bigger icon width */
        height: 30px; /* Bigger icon height */
    }
    
    


#carouselExampleIndicatorsfirstpage 
  .carousel .carousel-item {
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin: 0;

  }

 
/* #carouselExampleIndicatorsfirstpage  .carousel-caption h1
{
    z-index:-30;
    transform: translateY(-50%);
} */
  .carousel .carousel-item:nth-child(1) {
    background-image: url(../images/la_background1.jpg);
  }
  .carousel .carousel-item:nth-child(2) {
    background-image: url(../images/labackground2.jpg);
  }
  .carousel .carousel-item:nth-child(3) {
    background-image: url(../images/population_map.png);
  }
  .carousel .carousel-item:nth-child(4) {
    background-image: url(../images/labackground4.jpg);
  } 

  /*text color and the modal's size for urban history part*/
#history {
    color: black; 
}

.btn-secondary {
    color: black; /* Ensures the text color on the button is black */
}

/* modal title alignment and close button placement */
.modal-title {
    width: 100%;
    text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
}


#imageModal .modal-content img {
    width: 100%; 
}

#carouselExampleIndicatorsfirstpage
.carousel-caption {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust positioning to true center */
    z-index: 10;
    color: #fff; /* White text color */
    text-align: center;
    width: 80%; /* Control the width of the caption area */
    background-color: transparent;
    padding: 20px;
    border-radius: 10px; /* Optional: rounded corners */
    z-index: 1;
  }

  #carouselExampleIndicatorsfirstpage
.carousel-caption h1{ 
font-size:100px;
font-weight:bold;
color:white;
margin-top:50px;
margin-bottom:50px;
z-index: 1;

  }


#carouselExampleIndicatorsfirstpage
.carousel-caption p {

    font-size: 18px;
    color: white; 
    line-height: 1.5; 
    z-index: 1;
}

#UrbanHistory .text-center p {
    color: black;
    font-size: 18px;
}

#GreenSpace { 
    background-image: url('../images/labackground3.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    width: 100%; 
    height: 100%;
    min-height: 800px;
    align-items: center;
    text-align: center;
}
.epilogue-section {
    width: 60%; 
    margin: 0 auto; 
    padding: 20px; 
    color: white;
    text-align: justify; 
    font-size: 20px; 
}

.epilogue-section h2 {
    margin-top:50px;
    text-align: center; /* Center-align the heading */
    margin-bottom: 25px; /* Space between the heading and paragraph */
 font-size:65px;
 color:white;
}
.epilogue-section p {
    line-height: 1.6; 
    margin-top:30px;
}


#UrbanHistory .btn{
    
    font-size: 18px;      
    color: black;     
}
#UrbanHistory .button-container{
    text-align:center;
}


#population .section-heading-2 {
    font-size:60px;
    font-weight:bold;

}


#airquality
{
    height:500px;
}
.intro-section {
    margin-bottom: 0; /* Adjust this value to reduce the space below the section title */
}
.blog-thumb .text p {
    margin-bottom: 10px; /* Reduce space between paragraphs */
    padding: 0 15px; /* Adjust padding as needed */
}
#airquality-text1{
    margin-bottom:0;

}
#airquality-text2{
margin-top:0;
margin-bottom:0;
}

.section-heading-2 h1{
    margin-bottom:10px;
}