/*
  * Name: Solar Onepage Landing Page HTML Template
  * Version: 1.0
  * Author: Glowlogix
  * Author URL: https://demo.glowlogix.com.pk/templates/solar/index.html
*/

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

/*------------------------------------------------------------------

[Table of contents]
  1.  Global Colors, Fonts and Animations 
  2.  Header 
  3.  Home
  4.  About
  5.  Services
  6.  Counter
  7.  Why Choose Us
  8.  projects
  9.  Spacer
  10. Team
  11. Testimonials
  12. Contact
  13. CTA
  14. Footer
  15. Responsiveness 

------------------------------------------------------------------*/


html {
    scroll-behavior: smooth;
}

* {
    font-family: 'Nunito', sans-serif;
}

body {
    position: relative;
}


/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius   : 100px;
    background-color: rgb(9 14 33 / 25%);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background   : rgb(9 14 33 / 40%);
    border-radius: 10px;
    height       : 80px;
    border       : 2px solid rgb(193 194 199);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(9 14 33 / 60%);
}


/* Preloader
-------------------------------------------------------------- */
#loading {
    width              : 100%;
    height             : 100vh;
    position           : fixed;
    background         : url(../images/loader.gif);
    background-repeat  : no-repeat;
    background-position: center;
    background-color   : #fff;
    z-index            : 9999;
}


/* Global Colors, Fonts and Animations
-------------------------------------------------------------- */

:root {


    /* Primary Colors & variants */
    --primary-color: #0ac873;

    /* Secondary Colors & variants */
    --secondary-color: hsl(245 57% 5%);

    /* Gray Colors & variants */
    --gray-text  : rgba(0, 0, 0, 0.45);
    --shape-color: rgba(0, 0, 0, 0.25);

    /* Basic Colors */
    --white: #FFFFFF;
    --black: #000000;


    /*---- Global Font Sizes ----*/

    /* Font Sizes for Desktop */
    --primary-desktop-heading  : 48px;
    --secondary-desktop-heading: 48px;

    /* Font Sizes for Mobo */
    --primary-mobo-heading  : 42px;
    --secondary-mobo-heading: 36px;

    /* Font Sizes for Desktop & Mobo */
    --secondary-heading-desktop-and-mobo-1: 40px;
    --secondary-heading-desktop-and-mobo-2: 24px;
    --secondary-heading-desktop-and-mobo-3: 22px;
    --secondary-heading-desktop-and-mobo-4: 20px;
    --primary-body-font                   : 16px;
    --secondary-body-font                 : 14px;


    /*---- Global Spacing ----*/

    /* Section Spacing */
    --margin-bottom-large  : 64px;
    --margin-bottom-small  : 40px;
    --section-padding-large: 120px;
    --section-padding-small: 88px;


    /*---- Global Transition ----*/

    /* Smooth Transition */
    --smooth-transition: 0.3s ease-in-out;
}


/* Header
-------------------------------------------------------------- */

.header-fix {
    position     : fixed !important;
    top          : 8px !important;
    left         : 0;
    background   : hsla(245, 55%, 5%, 0.99);
    animation    : smoothScroll 1s forwards;
    border-radius: 16px;
    margin       : 0 30px;
    box-shadow   : 0px 4px 0px 0px hsla(245, 55%, 5%, 0.25);
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.header-nav {
    position          : relative;
    top               : 0;
    z-index           : 1000;
    left              : 0;
    right             : 0;
    padding           : 4px 0 !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition   : position 10s;
    -ms-transition    : position 10s;
    -o-transition     : position 10s;
    transition        : all 0.5s ease;
    border-bottom     : 1px solid rgb(255 255 255 / 10%);
}

#navbar ul li a.custom-btn-CTA {
    background-color: var(--white);
    border          : 2px solid var(--white);
    color           : var(--primary-color) !important;
    padding         : 16px 34px;
    display         : inline-block;
    font-size       : var(--secondary-body-font);
    font-weight     : 800;
    border-radius   : 100px;
    letter-spacing  : 0.3px;
    text-decoration : none;
    text-transform  : uppercase;
    transition      : var(--smooth-transition);
}

#navbar ul li a.custom-btn-CTA:hover {
    border          : 2px solid transparent;
    background-color: var(--white);
    color           : var(--primary-color) !important;
}

nav {
    position: relative;
}

#navbar {
    padding-top   : 18px;
    padding-bottom: 18px;
    position      : absolute;
    top           : 0px;
    left          : 0px;
    right         : 0px;
    z-index       : 1041;
}

#navbar ul>li>a {
    padding       : 0px;
    font-size     : 12px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    transition    : var(--smooth-transition);
    font-weight   : 700;
    color         : var(--white);
}

#navbar ul li {
    padding    : 11px 24px;
    display    : flex;
    align-items: center;
}

#navbar .navbar-toggler {
    color       : transparent;
    border-color: transparent;
}

#navbar ul>li:nth-last-child(1) {
    padding-right: 0px;
}

#navbar .icon-style-menu {
    color    : var(--primary-color);
    font-size: 32px;
}

#navbar .dropdown-menu {
    padding   : 0px;
    top       : 70px;
    left      : 20px;
    box-shadow: 0px 0px 10px -10px #000000;
}

.navbar-nav .nav-item .dropdown-menu {
    padding   : 0px 16px;
    margin-top: 0px;
    font-size : 14px;
}

.navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding    : 14px 16px;
    font-weight: 600;
    color      : #070c1f;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu li {
    color        : var(--primary-color);
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.dropdown-menu>li:nth-last-child(1) {
    border-bottom: 0px;
}

#navbar .dropdown-menu li a {
    color          : var(--secondary-color) !important;
    text-decoration: none;
}

#navbar .dropdown-menu li a:hover {
    color           : var(--primary-color) !important;
    background-color: transparent !important;
}

.navbar-toggler {
    padding: 0px !important;
}


/* Home
-------------------------------------------------------------- */

section {
    padding-top: var(--section-padding-large);
}

.home-bg {
    height               : 100vh;
    padding              : 0px;
    background           : url(../images/hero.jpg);
    background-repeat    : no-repeat;
    background-size      : cover;
    background-attachment: fixed;
}

.home-bg::before {
    content   : '';
    background: rgba(0, 0, 0, 0.75);
    opacity   : 0.8;
    position  : absolute;
    top       : 0;
    left      : 0;
    right     : 0;
    bottom    : 0;
    height    : 100vh;
    z-index   : 1;
}

.home-content {
    position: relative;
}

.home-content .carousel-inner .carousel-item img {
    height    : 100vh;
    object-fit: cover;
}

#carouselExampleCaptions .carousel-inner .carousel-item {
    transition: 1s cubic-bezier(0.42, 0, 0.13, 0.99);
}

#carouselExampleCaptions1 .carousel-inner .carousel-item {
    transition: 1s cubic-bezier(0.42, 0, 0.13, 0.99);
}

.home-content-inner {
    position       : absolute;
    z-index        : 2;
    top            : 0;
    left           : 0px;
    right          : 0px;
    display        : flex;
    flex-flow      : column;
    justify-content: center;
    margin         : 0 auto;
    margin-top     : 24px;
    height         : 100vh;
}

.home-content-inner span {
    color: var(--primary-color);
}

.home-content-inner h6::before {
    content         : '';
    position        : absolute;
    left            : 50%;
    top             : 40px;
    width           : 1px;
    height          : 30px;
    background-color: var(--secondary-color-100);
}

.carousel-caption {
    z-index: 999;
}

.content-top h2 {
    position: relative;
}

.home-content h1 {
    font-size  : var(--primary-desktop-heading);
    color      : var(--white);
    font-weight: 800;
    margin     : 0px;
}

.home-content p {
    color      : var(--white);
    margin     : 24px 0 32px 0;
    font-weight: 400;
}

.custom-btn-primary {
    border          : 2px solid transparent;
    color           : var(--white);
    padding         : 16px 34px;
    display         : inline-block;
    background-color: var(--primary-color);
    font-size       : var(--secondary-body-font);
    font-weight     : 800;
    border-radius   : 100px;
    letter-spacing  : 0.5px;
    text-decoration : none;
    text-transform  : uppercase;
    transition      : var(--smooth-transition);
}

.custom-btn-primary:hover {
    background-color: var(--white);
    color           : var(--primary-color);
}

.carousel-control-next,
.carousel-control-prev {
    opacity   : 1 !important;
    cursor    : none;
    transition: var(--smooth-transition);
    width     : 10% !important;
}

#carouselExampleCaptions .carousel-indicators .active {
    background-color: rgba(255, 255, 255, 0.5) !important;
    padding         : 5px;
    width           : 1px;
    height          : 1px;
    border-radius   : 100%;
}

#carouselExampleCaptions1 .carousel-indicators .active {
    background-color: var(--primary-color) !important;
    padding         : 5px;
    width           : 1px;
    height          : 1px;
    border-radius   : 100%;
}

#carouselExampleCaptions .carousel-indicators [data-bs-target] {
    padding         : 5px;
    width           : 1px;
    height          : 1px;
    border-radius   : 100%;
    background-color: transparent;
    border          : 1px solid var(--white);
}

#carouselExampleCaptions1 .carousel-indicators [data-bs-target] {
    padding         : 5px;
    width           : 1px;
    height          : 1px;
    border-radius   : 100%;
    background-color: var(--gray-text);
}

.icon-style {
    color          : var(--white);
    width          : 50px;
    height         : 50px;
    border         : 2px solid #ffffff75;
    display        : flex;
    justify-content: center;
    align-items    : center;
    font-size      : 22px;
    border-radius  : 100%;
    transition     : var(--smooth-transition);
}

.icon-style .fa-angle-right {
    position: relative;
    right   : -2px;
}

.icon-style .fa-angle-left {
    position: relative;
    right   : 2px;
}

.icon-style:hover {
    background-color: var(--primary-color);
    border-color    : var(--primary-color);
}


.nav-bullets {
    position   : fixed;
    right      : 24px;
    top        : 88px;
    bottom     : 0;
    z-index    : 1000;
    display    : flex;
    align-items: center;
}

.nav-bullets>ul {
    background-color: transparent;
}

.nav-bullets>ul>li {
    background   : transparent !important;
    margin-bottom: 24px;
}

.nav-bullets>ul>li:nth-last-child(1) {
    margin-bottom: 0px;
}

.nav-bullets>ul>li>a {
    color        : var(--gray-text);
    border       : 1px solid transparent;
    border-radius: 100px;
    padding      : 0px;
}

.nav-bullets>ul>li>a:hover {
    color : var(--primary-color);
    border: 1px solid var(--primary-color);
}

.nav-bullets>ul>li>a>i {
    font-size      : 10px;
    width          : 16px;
    height         : 16px;
    border-radius  : 50px;
    display        : flex;
    justify-content: center;
    align-items    : center;
}

.social-home-links {
    position   : absolute;
    top        : 88px;
    bottom     : 0;
    left       : 0;
    display    : flex;
    align-items: center;
    z-index    : 999;
}

.social-home-links>ul {
    margin: 0px;
}

.social-home-links>ul>li {
    margin-bottom: 24px;
}

.social-home-links>ul>li:nth-last-child(1) {
    margin-bottom: 0px;
}

.social-home-links>ul>li>a {
    text-decoration: none;
}

.social-home-links>ul>li>a>i {
    font-size      : 14px;
    width          : 40px;
    height         : 40px;
    border-radius  : 50px;
    display        : flex;
    justify-content: center;
    align-items    : center;
    color          : #ffffff75;
    border         : 1px solid #ffffff75;
    border-radius  : 100px;
    padding        : 0px;
    transition     : var(--smooth-transition);
}

.social-home-links>ul>li>a>i:hover {
    color           : var(--white);
    border          : 1px solid var(--primary-color);
    background-color: var(--primary-color);
}


/* About
-------------------------------------------------------------- */


.content-top {
    position: relative;
}

.content-top h6 {
    color        : var(--primary-color);
    margin-bottom: 16px;
    font-weight  : 700;
}

.content-top h6::before {
    content         : '';
    position        : absolute;
    top             : 28px;
    left            : 0;
    width           : 32px;
    height          : 2px;
    border-radius   : 100px;
    background-color: var(--shape-color);
}

.content-top h5 {
    color        : var(--primary-color);
    margin-bottom: 16px;
    font-size    : 16px;
    font-weight  : 700;
}

.content-top h5::before {
    content         : '';
    position        : absolute;
    top             : 28px;
    left            : 0;
    right           : 0;
    margin          : 0 auto;
    width           : 32px;
    height          : 2px;
    border-radius   : 100px;
    background-color: var(--shape-color);
}

.about-bg .content-top h2 span::after {
    right: 44%;
}

.about-bg .content-detail .content-top h2 {
    font-size    : var(--secondary-desktop-heading);
    color        : var(--secondary-color);
    font-weight  : 800;
    margin-top   : 24px;
    margin-bottom: 24px;
}

.about-image {
    position: relative;
}

.content-bottom>p {
    color: var(--gray-text) !important;
}

.content-bottom-width>p {
    color: var(--white) !important;
}

.content-bottom-about p {
    color        : var(--gray-text);
    font-weight  : 700;
    line-height  : 1.6;
    margin-bottom: 32px;
}

.content-bottom-about ul {
    list-style   : none;
    padding      : 0px;
    margin-bottom: 40px;
}

.content-bottom-about ul li {
    list-style   : none;
    padding      : 0px;
    margin-bottom: 12px;
    color        : var(--secondary-color);
}

.content-bottom-about ul :nth-last-child(1) {
    margin-bottom: 0px;
}

.content-bottom-about ul li i {
    margin-right: 8px;
    color       : var(--primary-color);
}

.about-image .about-img-thumbnail {
    max-width       : 150px;
    position        : absolute;
    top             : 20px;
    left            : 40px;
    border-radius   : 100em;
    background-color: var(--primary-color);
    box-shadow      : 10px 12px 11px -10px rgb(0 0 0 / 25%);
    animation       : animate-image 20s ease-in-out infinite;
}

@keyframes animate-image {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-image .about-img-thumbnail img {
    opacity: 0.5;
}

.about-image .about-img-thumbnail img {
    padding: 0px !important;
}

.about-image .border-img-solid {
    border       : 1px solid rgba(0, 0, 0, 0.12);
    padding      : 50px;
    border-radius: 240px 0px 240px 240px;
}

.about-image .border-dashed {
    border-radius: 100em;
    padding      : 50px;
}

.about-image img {
    border-radius: 240px 0px 240px 240px;
    padding      : 0px 0px 20px 20px;
    background   : var(--primary-color-200);
}

.custom-btn-secondary {
    border          : 2px solid transparent;
    color           : var(--white);
    padding         : 14px 28px;
    display         : inline-block;
    background-color: var(--primary-color);
    font-size       : var(--secondary-body-font);
    font-weight     : 800;
    border-radius   : 100px;
    letter-spacing  : 0.5px;
    text-decoration : none;
    text-transform  : uppercase;
    transition      : var(--smooth-transition);
}

.custom-btn-secondary:hover {
    background-color: var(--secondary-color);
    color           : var(--white);
    box-shadow      : 0px 8px 10px -12px var(--secondary-color)
}

.custom-btn-secondary-variant {
    border          : 2px solid transparent;
    color           : var(--white);
    padding         : 14px 28px;
    display         : inline-block;
    background-color: var(--secondary-color);
    font-size       : var(--secondary-body-font);
    font-weight     : 700;
    border-radius   : 100px;
    letter-spacing  : 0.3px;
    text-decoration : none;
    text-transform  : uppercase;
    transition      : var(--smooth-transition);
}

.custom-btn-secondary-variant i {
    margin-right: 8px;
}

.custom-btn-secondary-variant:hover {
    background-color: var(--white);
    color           : var(--primary-color);
    box-shadow      : 0px 14px 10px -12px var(--primary-color)
}


/* Services
-------------------------------------------------------------- */

.services-bg {
    position        : relative;
    padding-bottom  : 8px;
    margin-top      : 120px;
    background-color: rgba(0, 0, 0, 0.035);
    padding-bottom  : 120px;
}

.services-bg .content-top h2 {
    font-size    : var(--secondary-desktop-heading);
    color        : var(--secondary-color);
    font-weight  : 800;
    margin-bottom: var(--margin-bottom-large);
}

.services-bg .content-top h2 span::after {
    right: 42%;
}

.services-bg .service-block img {
    max-width    : 100%;
    border-radius: 8px 8px 0 0;
}

.service-block .service-block-inner {
    padding: 24px 16px;
}

.services-bg .service-block h3 {
    font-weight: 700;
    color      : var(--secondary-color);
    font-size  : var(--secondary-heading-desktop-and-mobo-3);
}

.services-bg .service-block p {
    color      : var(--gray-text);
    margin     : 0px;
    font-weight: 700;
}

.tertiary-btn-custom {
    text-decoration : none;
    color           : var(--primary-color);
    font-size       : 14px;
    border          : 1px solid var(--primary-color);
    padding         : 8px 16px;
    border-radius   : 4px;
    background-color: var(--white);
    display         : inline-block;
}

.tertiary-btn-custom:hover {
    color           : var(--white);
    background-color: var(--primary-color);
}

.service-block {
    background   : var(--white);
    border       : 1px solid var(--primary-color-300);
    border-radius: 8px;
    transition   : var(--smooth-transition);
    border-bottom: 4px solid hsla(138, 79%, 66%, 0.25);
    box-shadow   : 0px 2px 10px rgb(0 0 0 / 15%);
}

.service-block a i {
    transition: var(--smooth-transition);
}

.service-block:hover {
    box-shadow   : 0px 2px 24px rgb(0 0 0 / 25%);
    border-bottom: 4px solid var(--primary-color);
}

.service-block:hover a i {
    color      : rgba(255, 255, 255, 0.6);
    margin-left: 4px;
    transition : var(--smooth-transition);
}

.service-block:hover a i {
    color: rgb(255 255 255 / 60%);
}


/* Counter
-------------------------------------------------------------- */

.counter-bg {
    background-color     : var(--primary-color);
    padding              : 80px 0px;
    background-image     : linear-gradient(rgba(10, 200, 114, 0.95), rgba(10, 200, 114, 0.95)), url(../images/bg.jpg);
    background-repeat    : no-repeat;
    background-size      : cover;
    background-position  : center;
    background-attachment: fixed;
}

.counter-inner .icon-style-counter {
    display         : flex;
    justify-content : center;
    align-items     : center;
    width           : 78px;
    height          : 75px;
    margin          : 0 auto;
    font-size       : 32px;
    margin-bottom   : 16px;
    color           : var(--primary-color);
    padding         : 16px;
    border-radius   : 12px;
    background-color: var(--white);
    transition      : var(--smooth-transition);
}

.counter-inner h3 {
    font-size  : var(--secondary-desktop-heading);
    font-weight: 700;
    color      : var(--white);
    margin     : 0px;
}

.counter-inner {
    border       : 1px dashed rgb(255 255 255 / 30%);
    text-align   : center;
    padding      : 32px 0px;
    border-radius: 8px;
    margin       : 1px 0px;
}

.counter-inner p {
    font-size: var(--primary-body-font);
    color    : var(--white);
    margin   : 0px;
}


/* Why Choose Us
-------------------------------------------------------------- */

.choose-us-bg {
    position: relative;
}

.choose-us-bg .content-top h2 {
    font-size    : var(--secondary-desktop-heading);
    color        : var(--secondary-color);
    font-weight  : 800;
    margin-bottom: var(--margin-bottom-large);
}

.choose-us-bg .content-top h2 span::after {
    right: 44%;
}

.choose-us-bg .choose-us-block .block-icon .icon-style-choose-us {
    display         : flex;
    justify-content : center;
    align-items     : center;
    width           : 75px;
    height          : 75px;
    margin          : 0 auto;
    font-size       : 32px;
    margin-bottom   : 40px;
    color           : #ffffff;
    padding         : 16px;
    border-radius   : 12px;
    background-color: var(--primary-color);
    border          : 2px solid var(--shape-color);
    transition      : var(--smooth-transition);
    transform       : rotate(-45deg);
}

.choose-us-bg .choose-us-block:hover .block-icon .icon-style-choose-us {
    transform    : rotate(0deg);
    margin-bottom: 32px;
}

.choose-us-bg .choose-us-block .block-content h3 {
    color      : var(--secondary-color);
    font-size  : var(--secondary-heading-desktop-and-mobo-3);
    font-weight: 700;
}

.choose-us-bg .choose-us-block .block-content p {
    color      : var(--gray-text);
    font-weight: 700;
}

.choose-us-block {
    background   : rgba(0, 0, 0, 0.035);
    padding      : 40px 32px;
    border       : 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    transition   : var(--smooth-transition);
    border-bottom: 4px solid rgba(0, 0, 0, 0.15);
    text-align   : center;
}

.choose-us-block:hover {
    box-shadow   : 0px 2px 24px rgb(0 0 0 / 25%);
    border-bottom: 4px solid rgb(10, 200, 115);
}


/* project
-------------------------------------------------------------- */

.project-bg {
    position: relative;
    overflow: hidden;
}

.project-bg .content-top h2 {
    font-size    : var(--secondary-desktop-heading);
    color        : var(--secondary-color);
    font-weight  : 800;
    margin-bottom: var(--margin-bottom-large);
}

.project-bg .content-top h2 span::after {
    right: 42%;
}

.image-gallery {
    max-width      : 100%;
    width          : 100%;
    height         : 320px;
    object-fit     : cover;
    object-position: center;
    padding        : 10px;
    border-radius  : 18px;
}

.image-overlay {
    transition   : 0.3s ease-in-out;
    border-radius: 8px;
    padding      : 0px !important;
    margin       : 0px;
    position     : relative;
}



.project-img-overlay {
    position       : absolute;
    top            : 0;
    left           : 0;
    right          : 0;
    bottom         : 0;
    display        : flex;
    align-items    : center;
    justify-content: center;
    cursor         : pointer;
    border-radius  : 8px;
    opacity        : 0;
    transition     : var(--smooth-transition);
}

.image-overlay:hover .project-img-overlay {
    opacity         : 1;
    margin          : 32px;
    background-color: rgb(10 200 115 / 80%);
}

.project-content {
    text-align: center;
    padding   : 0 24px;
    color     : var(--white);

}

.project-content h5 {
    font-weight: 700;
}

.project-content p {
    font-weight: 400;
    font-size  : var(--primary-body-font);
}



/* Spacer
-------------------------------------------------------------- */

.spacer-bg {
    background-color     : var(--primary-color);
    padding              : 80px 0px;
    margin-top           : 120px;
    background-image     : linear-gradient(rgba(10, 200, 114, 0.90), rgba(10, 200, 114, 0.90)), url(../images/hero.jpg);
    position             : relative;
    background-attachment: fixed;
}

.spacer-bg::after {
    content            : '';
    background-size    : cover;
    background-repeat  : no-repeat;
    background-position: center;
    position           : absolute;
    left               : 0;
    right              : 0;
    bottom             : 0;
    top                : 0;
}

.spacer-inner h2 {
    font-size  : var(--secondary-desktop-heading);
    font-weight: 700;
    color      : var(--white);
    margin     : 0 0 32px 0;
}

.spacer-inner {
    border       : 1px dashed rgb(255 255 255 / 30%);
    text-align   : center;
    padding      : 40px 60px;
    border-radius: 8px;
    position     : relative;
    z-index      : 999;
}

.spacer-inner p {
    font-size: var(--primary-body-font);
    color    : var(--white);
    margin   : 32px 0px 40px 0px;
}

.custom-btn-tertiary {
    color           : var(--white);
    padding         : 12px 28px;
    display         : inline-block;
    background-color: var(--primary-color);
    font-size       : var(--secondary-body-font);
    font-weight     : 400;
    border-radius   : 100px;
    letter-spacing  : 0.3px;
    text-decoration : none;
    text-transform  : uppercase;
    transition      : var(--smooth-transition);
}

.custom-btn-tertiary:hover {
    background-color: var(--secondary-color);
    color           : var(--white);
}


/* Team
-------------------------------------------------------------- */

.team-bg {
    position: relative;
}

.team-bg .content-top h2 {
    font-size    : var(--secondary-desktop-heading);
    color        : var(--secondary-color);
    font-weight  : 800;
    margin-bottom: var(--margin-bottom-large);
}

.team-bg .content-top h2 span::after {
    right: 42%;
}

.team-member-block {
    border-radius: 8px;
    position     : relative;
    transition   : var(--smooth-transition);
    border       : 1px solid rgb(0 0 0 / 15%);
}

.team-member-block:hover {
    box-shadow: 0px 2px 24px rgb(0 0 0 / 25%);
    margin-top: -8px;
}

.team-member-block .team-member-image img {
    max-width    : 100%;
    object-fit   : cover;
    border-radius: 8px 8px 0px 0px;
}

.team-member-block .team-member-image {
    background-color: var(--secondary-color);
    border-radius   : 8px 8px 0px 0px;
    overflow        : hidden;
}

.team-member-block .team-member-image>img {
    transition: var(--smooth-transition);
    width     : 100%;
}

.team-member-block:hover .team-member-image>img {
    transform: scale(1.2);
}

.team-member-block:hover>.team-member-content {
    opacity: 1;
    top    : 60%;
}

.team-member-block .team-member-content {
    text-align      : center;
    padding         : 24px;
    border          : 1px solid var(--primary-color-300);
    border-radius   : 0px 0px 8px 8px;
    transition      : var(--smooth-transition);
    background-size : cover;
    background-color: rgba(0, 0, 0, 0.035);
}

.team-member-block .team-member-content h4 {
    font-size    : var(--secondary-heading-desktop-and-mobo-3);
    color        : var(--primary-color);
    font-weight  : 700;
    margin-bottom: 4px;
}

.team-member-block .team-member-content p {
    color        : var(--secondary-color);
    font-size    : var(--primary-body-font);
    margin-bottom: 12px;
    font-weight  : 600;
}

.team-member-block .team-member-content span a .icon-style-team-member {
    color        : var(--primary-color);
    font-size    : var(--primary-body-font);
    border       : 1px solid var(--primary-color);
    border-radius: 100%;
    width        : 44px;
    height       : 44px;
    padding      : 14px 0;
    margin-right : 8px;
    transition   : var(--smooth-transition);
}

.team-member-block .team-member-content span .icon-style-team-member:hover {
    background-color: var(--primary-color);
    color           : var(--white);
}


/* Testimonials
-------------------------------------------------------------- */

.testimonials-bg .carousel-indicators .active {
    background-color: var(--primary-color) !important;
}

.testimonials-bg .content-top h2 {
    font-size    : var(--secondary-desktop-heading);
    color        : var(--secondary-color);
    font-weight  : 800;
    margin-bottom: var(--margin-bottom-large);
}

.testimonials-bg .content-top h2 span::after {
    right: 42%;
}

.testimonials-bg .testimonial {
    padding: 0px 0px 0px 0px;
}

.testimonial-name+p {
    letter-spacing: 0.5px;
}

.testimonial-content {
    font-size            : 14px;
    font-weight          : 300;
    padding              : 26px 0px 57px 0;
    background-color     : rgba(0, 0, 0, 0.05);
    border-radius        : 8px;
    background-image     : linear-gradient(rgba(10, 200, 114, 0.95), rgba(10, 200, 114, 0.95)), url(../images/bg.jpg);
    background-size      : cover;
    background-position  : bottom;
    background-attachment: fixed;
}

.testimonial-content::before {
    content            : '';
    background-size    : cover;
    background-repeat  : no-repeat;
    background-position: center;
    position           : absolute;
    left               : 0;
    right              : 0;
    bottom             : 0;
    top                : 0;
}

.testimonial-content>p {
    padding       : 0px 0px 45px 0px;
    letter-spacing: 0.3px;
    line-height   : 24px;
    font-size     : 16px;
    color         : var(--white);
    font-weight   : 500;
}

.testimonial-content i {
    color        : rgba(255, 255, 255, 0.5);
    font-size    : 24px;
    margin-bottom: 22px;
}

.testimonial-profile {
    display        : flex;
    justify-content: center;
    align-items    : center;
}

.testimonial-profile .profile img {
    padding      : 2px;
    border       : 1px dashed #e1e1e1;
    border-radius: 8px;
}

.profile-text {
    margin-left: 12px;
}

.profile-text h4 {
    font-size  : 16px;
    font-weight: 700;
    color      : var(--secondary-color);
}

.profile-text p {
    color        : var(--secondary-color-200);
    font-weight  : 700;
    margin-top   : 2px;
    margin-bottom: 0;
    font-size    : 14px;
}

.carousel-style-testimonials {
    width        : 10px !important;
    height       : 6px !important;
    margin-bottom: 56px !important;
}


/* Contact
-------------------------------------------------------------- */

.contact-bg {
    position           : relative;
    background-image   : url(../images/contact-map-bg.png);
    background-repeat  : no-repeat;
    background-position: 8% bottom;
    left               : 0px;
}

.contact-bg .content-top h2 {
    font-size    : var(--secondary-desktop-heading);
    color        : var(--secondary-color);
    font-weight  : 800;
    margin-bottom: var(--margin-bottom-large);
}

.contact-bg .content-top h2 span::after {
    right: 41%;
}

.contact-form .form-row .input-main .input-style {
    padding      : 12px 24px;
    height       : 56px;
    border-radius: 28px;
    margin-bottom: 32px;
    color        : var(--secondary-color);
}

.contact-form .form-row .input-main .input-style-select {
    padding         : 12px 16px;
    height          : 56px;
    border          : none;
    border-radius   : 0px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom   : 32px;
    color           : #777777;
}

.contact-form .form-row .input-main .input-style:focus {
    box-shadow: 0 0 0 0.06rem var(--primary-color);
    border    : 1px solid var(--white);
}

.contact-form .form-row .input-main .input-style-select:focus {
    box-shadow: 0 0 0 0.06rem var(--primary-color);
}

.contact-form .form-row .input-main textarea {
    height: auto !important;
}

.contact-form button i {
    margin-left: 4px;
}

.contact-info {
    padding      : 0px 16px;
    border-radius: 8px;
}

.contact-info .contact-info-inner {
    display      : flex;
    align-items  : start;
    margin-bottom: 48px;
    padding      : 0px 14px;
}

.contact-info .contact-info-inner i {
    font-size   : 32px;
    color       : var(--primary-color);
    margin-right: 16px;
}

.contact-info .contact-info-inner .info-inner h4 {
    font-size    : var(--primary-body-font);
    font-weight  : 600;
    color        : var(--secondary-color);
    margin-bottom: 8px;
}

.contact-info .contact-info-inner .info-inner p {
    font-size    : var(--primary-body-font);
    font-weight  : 400;
    color        : var(--gray-text);
    margin-bottom: 0px;
}

h2.popup-message {
    color      : #0ac873;
    font-weight: 700;
}

.modal-body p {
    margin     : 8px 0px 0px 0px;
    font-weight: 600;
}


/* CTA
-------------------------------------------------------------- */

section#cta-area {
    padding-top: var(--section-padding-small);
}

.cta-area-bg {
    padding-top: var(--section-padding-large);
}

.cta-area-inner-bg {
    background-image     : linear-gradient(rgba(10, 200, 114, 0.90), rgba(10, 200, 114, 0.90)), url(../images/want-project-bg.jpg);
    background-color     : var(--primary-color);
    border-radius        : 4px;
    color                : var(--white);
    background-attachment: fixed;
    background-size      : cover;
}

.cta-area-inner-bg .custom-btn-secondary-variant {
    margin-right: 12px;
}

.cta-area-inner-bg .custom-btn-secondary-variant:nth-last-child(1) {
    margin-right: 0px;
}

.cta-area-inner-bg .content-top h2 {
    font-size  : var(--secondary-heading-desktop-and-mobo-1);
    font-weight: 700;
}

.cta-area-inner-bg .content-bottom p {
    font-size: var(--primary-body-font);
}

.outline-btn i {
    margin-right  : 8px;
    font-size     : 18px;
    vertical-align: text-bottom;
}

.cta-area-inner-bg .content-bottom-width p {
    max-width: 650px;
    width    : 100%;
    margin   : 0 auto 48px;
}


/* Footer
-------------------------------------------------------------- */

.footer-bg {
    padding-top        : var(--section-padding-large);
    margin-top         : 120px;
    background-color   : hsla(245, 55%, 5%, 0.99);
    padding-bottom     : var(--section-padding-large);
    /* background-image   : linear-gradient(hsla(244, 54%, 5%, 0.95), hsla(244, 54%, 5%, 0.95)), url(../images/testimonial-bg.jpg); */
    background-repeat  : no-repeat;
    background-size    : cover;
    background-position: center;

}

/* a{
    text-decoration: none !important;
    color: white !important;
} */
.footer-description {
    line-height: 24px;
}

.footer-heading {
    font-weight  : 500;
    color        : #ffffff;
    display      : flex;
    align-items  : center;
    margin-bottom: 16px;
}

.footer-heading i {
    margin-right: -1px;
    position    : relative;
    left        : -8px;
    font-size   : 10px;
    color       : var(--primary-color);
}

.footer-text-style {
    color          : rgb(255 255 255 / 60%) !important;
    font-size      : 14px;
    text-decoration: none;
}

.link-footer a:hover {
    color: var(--primary-color) !important;
}

.link-social-icons a {
    color          : rgb(255 255 255 / 60%);
    background     : rgba(255, 255, 255, 0.08);
    width          : 35px;
    height         : 35px;
    border-radius  : 50px;
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.link-social-icons a i {
    font-size: 14px;
}

.footer-bottom {
    border-top      : 1px solid #a6a6a640;
    background-color: hsla(245, 55%, 5%, 0.99);
}

.footer-last {
    max-width      : 100%;
    width          : 100%;
    display        : flex;
    justify-content: space-between;
}

.footer-link:hover {
    color          : rgba(166, 166, 166, 0.5) !important;
    text-decoration: none;
}

.footer-bg .logo img {
    max-width: 120px;
}


/* Media Queries */

@media (max-width: 580px) {
    .home-btns .custom-btn-primary:nth-last-child(1) {
        margin-top : 24px;
        margin-left: 0px;
    }

    .post-share-option {
        display: block;
    }

    .post-share-option h3 {
        margin-bottom: 8px;
    }
}

@media (max-width: 992px) {
    section {
        padding-top: var(--section-padding-small);
    }

    /* --------Home-------- */
    .home-content-inner {
        width: 90%;
    }

    .home-content h1 {
        font-size: var(--primary-mobo-heading);
    }

    .icon-style {
        visibility: hidden;
    }

    .social-home-links,
    .nav-bullets {
        display: none;
    }

    /* --------About-------- */
    .about-bg .about-image {
        display: none !important;
    }

    .content-top h2 span::after {
        display: none;
    }

    .about-bg .content-detail .content-top h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    /* --------Services-------- */
    .services-bg .content-top h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    /* --------Counter-------- */
    .counter-bg {
        margin-top: 88px;
    }

    .counter-bg .content-top h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    .counter-inner {
        padding: 40px 0px;
    }

    /* --------Why Choose Us-------- */
    .choose-us-bg .content-top h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    /* project */
    .project-bg .content-top h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    /* --------Spacer-------- */
    .spacer-bg {
        margin-top: 88px;
    }

    .spacer-inner {
        border    : none;
        text-align: center;
        padding   : 0px 0px;
    }

    .spacer-inner h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    /* --------Our Team-------- */
    .team-bg .content-top h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    .team-member-block .team-member-image {
        border-radius: 8px 8px 0px 0px;
    }

    .team-member-block .team-member-image img {
        border-radius: 8px 8px 0px 0px;
    }

    /* --------Testimonials-------- */
    .testimonials-bg .content-top h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    /* --------CTA-------- */
    .cta-area-inner-bg .custom-btn-secondary-variant {
        margin-right : 0px;
        margin-bottom: 8px;
    }

    /* --------Contact-------- */
    .contact-bg {
        background-position: left 33%;
    }

    .contact-info {
        padding: 0px 0px;
    }

    .contact-info .contact-info-inner {
        padding: 0px 0px;
    }

    .contact-bg .content-top h2 {
        font-size    : var(--secondary-mobo-heading);
        margin-bottom: var(--margin-bottom-small);
    }

    /* --------Footer-------- */
    .footer-bg {
        padding: 88px 0px 80px 0px;
    }

    .footer-bg {
        margin-top: 88px;
    }

    .footer-social-links {
        margin-bottom: 32px !important;
    }

    .footer-last {
        align-items: center;
        flex-flow  : column;
    }
}

@media (max-width: 1200px) {

    /* --------Navbar-------- */
    .header-nav {
        padding: 12px 12px !important;
    }

    .header-fix {
        margin: 0px 12px;
    }

    .navbar-nav {
        background-color: var(--white);
    }

    #navbar ul {
        margin-top   : 12px;
        border-radius: 8px;
        box-shadow   : 0px 20px 32px rgb(0 0 0 / 50%);
    }

    #navbar ul:first-child {
        height    : 340px;
        overflow-y: scroll;
    }

    #navbar ul li {
        padding      : 16px;
        border-bottom: 1px solid rgba(30, 30, 30, 0.1);
        margin       : 0px;
        display      : block;
    }

    #navbar ul li:first-child {
        border-radius: 8px 8px 0px 0px;
    }

    #navbar ul>li:nth-last-child(1) {
        border       : none;
        border-radius: 0px 0px 8px 8px;
    }

    #navbar ul li a.custom-btn-CTA:hover {
        background-color: var(--primary-color);
        color           : var(--white) !important;
    }

    #navbar .navbar-nav .nav-item:hover {
        background-color: var(--primary-color);
    }

    #navbar .navbar-nav .nav-item:hover .custom-btn-CTA {
        background-color: rgba(0, 0, 0, 0.25);
    }

    #navbar .navbar-nav .nav-item .custom-btn-CTA:hover {
        background-color: rgba(0, 0, 0, 0.35);
    }

    #navbar .navbar-nav .nav-item:hover .nav-link {
        color: var(--white) !important;
    }

    .custom-btn-primary {
        color: var(--white) !important;
    }

    .custom-btn-primary:hover {
        color: var(--primary-color) !important;
    }

    #navbar ul li a {
        color: var(--secondary-color);
    }

    #navbar ul li .custom-btn-CTA {
        color: var(--white);
    }

    #navbar ul li .custom-btn-CTA:hover {
        color: var(--primary-color);
    }
}