
/* Font-family -> Montseraat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Font-family Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Font-family Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* =======================================
                General CSS
========================================== */
*{
    box-sizing: border-box;
}
body{
    /*background-color: #0E0E0E;*/
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
section{
    padding: 50px 0;
}
img{
    max-width: 100%;
    transition: .3s;
}
input{
    background: transparent;
    border: none;
}
input::placeholder{
    color: #fff;
    font-weight: 300;
}
h1, h2, h3, h4, h5, h6{
   /* font-family: 'Roboto', sans-serif;*/
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
body a, body button{
    color: #fff;
    transition: .3s;
    text-decoration: none;
    display: inline-block;
} 
body a.nav-link, body button.nav-link{
    color: #94A3C0;
    position: relative;
    padding: 10px 17px !important;
} 
body a.nav-link:hover, body button.nav-link:hover, .footer a:hover{
    color: #2BD27F;
}
button{
    box-shadow: none;
    background: transparent;
    border: none;
}
a:hover, a:focus, button:hover, button:focus{
    outline: none;
    text-decoration: none;
}
.theme-color{
    color: #2BD27F;
}
.theme-bg{
    background-color: #2BD27F;
}
.theme-btn{
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background-color: #2DD7A2;
    border-radius: 7px;
    padding: 15px 20px;
    box-shadow: 0 10px 20px rgb(43 210 127 / 26%);
}
.theme-btn:hover{
    background-color: #94A3C0;
    color: #fff;
    box-shadow: none;
}
.theme-subtitle{
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}
.theme-secondary-title{
    font-size: 24px;
    font-weight: 700;
}
.theme-title{
    font-size: 36px;
    font-weight: 700;
}
.theme-text{
    opacity: 63%;
    font-family: 'Inter', sans-serif;
}
.theme-img {
    position: relative;
    overflow: hidden;
    padding-top: 80%;
    border-radius: 10px;
}
.theme-img img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.arrow-btn {
    background-color: #2BD27F;
    border-radius: 14px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding-right: 64px;
}
.arrow-btn:before {
    content: "";
    height: 10px;
    width: 11px;
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
    background-image: url(../images/home_page/ArrowRight.png);
    background-size: contain;
}
.check-marker li{
    padding: 10px 0 10px 26px ;
    position: relative;
    
}
.check-marker li:before{
    content: "";
    height: 17px;
    width: 17px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(../images/home_page/check-icon.png);
    background-size: contain;
}
/* =======================================
                Header
========================================== */
.header{
    position: fixed;
    width: 100%;
    z-index: 999;
   /* background-color: #000;
    box-shadow: 0 15px 21px #000;*/
}
.gradient1-cvr {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
a.nav-link.active {
    color: #2BD27F;
}
a.nav-link:before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background: #2BD27F;
}
a.nav-link.active:before{
    width: 50%;
}
.navbar-toggler:focus{
    box-shadow: none;
}

/* =======================================
            Home Main
========================================== */
/* home-banner */
section.home-banner {
    overflow: hidden;
    position: relative;
}
.home-banner-titlecvr p {
    font-size: 17px;
}
.home-banner-titlecvr p:first-child{
    color: #94A3C0;
}
.home-banner-titlecvr a{
    margin-top: 63px;
}
section.home-banner .row {
    min-height: calc(100vh - 100px);
}
.home-banner-imgcvr{
    position: relative;
}
.home-banner-imgcvr img:first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    max-width: inherit;
}
.garadient3-imgcvr {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

/* features */
section.features-sec{
    position: relative;
    overflow: hidden;
}
section.features-sec .theme-title-cvr {
    max-width: 400px;
    margin: 0 auto;
}
.feature-bx {
    border-radius: 14px;
    background-color: rgb(255 255 255 / 18%);
    position: relative;
    padding: 40px 38px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    margin: 15px 0;
}
.feature-iconcvr {
    margin-bottom: 30px;
    flex: 1;
}
img.featurbx-bg1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-36%, -36%);
    z-index: -1;
}
img.featurbx-bg2 {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(36%, 25%);
    z-index: -1;
}
.feature-bx.bx2nd img.featurbx-bg2 {
    bottom: 35%;
}
.feature-bx.bx3rd img.featurbx-bg2 {
    bottom: 25%;
    right: 30%;
}
img.circle-big {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(30%, 15%);
    z-index: -1;
}
img.circle-small {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-60%);
}

/* feature-sec2 */
ul.feature-list {
    column-count: 2;
    margin: 20px 0;
}

/* landfill-sec */
.landfill-sec{
    position: relative;
    overflow: hidden;
}
.landfill-list{
    margin: 8px 0 20px;
}
.landfill-bg{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* projects-sec */
section.projects-sec .theme-title-cvr {
    max-width: 550px;
    margin: 0 auto;
}
section.projects-sec .theme-title{
    font-size: 50px;
    font-weight: 400;
}
.project-bx {
    background-color: rgb(255 255 255 / 20%);
    border-radius: 14px;
    padding: 12px 15px;
    font-family: 'Roboto', sans-serif;
    backdrop-filter: blur(6px);
    margin: 15px 0;
    height: calc(100% - 30px);
}
.project-bx:hover img{
    transform: scale(1.1);
}
.projectbx-imgcvr {
    margin-bottom: 38px;
}
p.small-text {
    opacity: 50%;
    font-size: 12px;
}
h3.projectbx-title {
    font-size: 18px;
    color: #2BD27F;
}
section.projects-sec {
    position: relative;
    overflow: hidden;
}
.project-bg {
    position: absolute;
    top: 0;
    left: -200px;
    right: -200px;
    bottom: 0;
    z-index: -1;
}
.project-bg img{
    width: 100%;
}

/* future-project-sec */
.future-project-sec{
    position: relative;
    overflow: hidden;
    background-image: url(../images/home_page/fut-proj-bg.png);
    background-size: cover;
    padding: 160px 0;
}
.fut-proj-left a.theme-btn {
    border-radius: 3px;
}
.fut-proj-slide .theme-img{
    padding-top: 100%;
}
.fut-proj-slider{
    position: relative;
    padding: 50px 0;
}
.slick-arrow{
    position: absolute;
}
button.slick-prev.pull-left.slick-arrow {
    top: 0;
    left: 30px;
}
button.slick-next.pull-right.slick-arrow{
    top: 0;
    left: 230px;
}
ul.slick-dots li button {
    position: relative;
    font-weight: 600;
    height: 26px;
    width: 26px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}
ul.slick-dots li button:before {
    content: "0";
}
ul.slick-dots {
    position: absolute;
    top: 0;
    display: flex;
    left: 88px;
}
li.slick-active {
    background-color: #2bd27f;
    border-radius: 4px;
}
.fut-proj-leftblock {
    position: absolute;
    width: 100%;
    height: calc(100% - 320px);
}
.fut-proj-leftblock .container, .fut-proj-leftblock .container .row{
    height: 100%;
}
.fut-proj-left {
    padding-right: 60px;
}
.fut-proj-imgcvr{
    padding: 20%;
    transition: .3s;
}
.fut-proj-slide.slick-slide.slick-current.slick-active + .slick-active .fut-proj-imgcvr {
    padding: 10%;
}
.fut-proj-slide.slick-slide.slick-current.slick-active + .slick-active + .slick-active .fut-proj-imgcvr .theme-img{
    transform: translateX(-35%);
}
.fut-proj-slide.slick-slide.slick-current.slick-active .fut-proj-imgcvr {
    padding: 0%;
}
.fut-proj-right {
    width: 130%;
}
.fut-proj-text{
    opacity: 80%;
}

/* partners-sec */
.partners-sec .theme-title{
    position: relative;
    margin-bottom: 20px;
    max-width: max-content;
}
.partners-sec .theme-title:before{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 1px;
    background-color: #2BD27F;
    width: 70%;
}
.partners-sec{
    position: relative;
    overflow: hidden;
    padding: 100px 0 180px;
}
.partners-bg{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

/* =======================================
            Footer
========================================== */
.footer{
    font-family: 'Inter', sans-serif;
    background-image: url(../images/home_page/footer-bg.png);
    background-size: cover;
    background-position: top;
    padding-top: 300px;
}
h4.footer-title {
    font-size: 20px;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
}
.footer p {
    font-weight: 200;
    margin: 24px 0 34px;
}
.mail-bx {
    border: 1px solid rgb(255 255 255 / 85%);
    border-radius: 12px;
    margin-bottom: 100px;
}
.mail-bx input{
    flex: 1;
    padding: 5px 24px;
    max-width: calc(100% - 123px);
}
button.subscribe-btn {
    padding: 16px 24px;
    background-color: rgb(255 255 255 / 16%);
    border-radius: 12px;
}
button.subscribe-btn:hover{
    background-color: rgb(255 255 255 / 36%);
}
.footer-link{
    font-family: 'Roboto', sans-serif;
    padding: 10px 0;   
    font-weight: 300;
}
.position-realtive{
    position: relative;
}
ul.social-list {
    position: absolute;
    display: flex;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
ul.social-list li{
    margin-left: 18px;
}
.social-list a:hover{
    opacity: .7;
}

/* media */
@media(min-width: 768px){
    .position-md-absolute{
        position: absolute !important;
    }
}