/*
Theme Name: Bespoke theme for Absolute Solar by SEO CoPilot Ltd
*/
@font-face {
    font-family: 'Montserrat-Bold';
    src: url('https://absolutesolar.co.uk/wp-content/themes/absolute-solar/fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('https://absolutesolar.co.uk/wp-content/themes/absolute-solar/fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('https://absolutesolar.co.uk/wp-content/themes/absolute-solar/fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --base-size:            18px;

    --font-regular:         400;
    --font-medium:          500;
    --font-bold:            700;
    
    --white:                #ffffff;
    --grey:                 #444444; 
    //--light-grey:           #878787;
    --light-grey:           #737373;
    --dark-grey:            #717171;
    //--red:                  #E63429;
    --red:                  #AF1B13;
    --neon-blue:            #3EEBE1;
    
   --section-padding:       4rem;
   
}


/* Main CSS
-------------------------------------------------------------- */
body { 
    font-family: 'Montserrat-Medium';
    font-weight: 500;
    font-size: var(--base-size);
    color: var(--light-grey);
    background-color: #ffffff;
}
   

/* typography */

h1,h2,h3,h4,h5,h6 {
    color: var(--grey); 
    font-family: 'Montserrat-Bold';
    font-weight: 700;
}

    h1.display {
        font-size:32px;
        color:#ffffff;
    }

        @media only screen and (min-width: 576px) { 
            h1.display {
                font-size:40px;
            }            
        }

        @media only screen and (min-width: 992px) { 
            h1.display {
                font-size:46px;
            }
        }
  
    h1.display.grey {
        color: var(--grey); 
    }
    
    h2.display {
        font-family: 'Montserrat-Medium';
        font-weight: 500;   
        font-size:24px;
        color: var(--grey);
        margin-bottom:0; 
        margin-top: 0;
    }
    
        @media only screen and (min-width : 768px) { 
            h2.display {
                font-size:30px;
            }
        }

        @media only screen and (min-width : 992px) { 
            h2.display {
                font-size:36px;
            }
        }
                
    h2 {
        font-family: 'Montserrat-Medium';
        font-weight: 500;   
        font-size:24px;
        color: var(--grey); 
        //margin-top: 24px;
        line-height: 38px;
    }
    
        @media only screen and (min-width : 768px) { 
            h2 {
                font-size:30px;
                line-height: 44px;
            }
        }
       
        @media only screen and (min-width : 992px) { 
            h2 {
                font-size:32px;
                line-height: 46px;
            }
        }
    
        h2.red-underline::after {
            content: "";
            width: 100%;
            max-width: 220px;
            height: 2px;
            background-color: var(--red);
            display: inline-block;
            position: absolute;
            bottom: -6px;
            left: 0;
        }
        
            h2.red-underline.full::after {
                max-width:100%;
            }
        
        .home h2.red-underline::after,
		#home-summary.contact h2.red-underline::after {
            content: "";
            width: 100%;
            max-width: 100%;
            height: 2px;
            background-color: var(--red);
            display: inline-block;
            position: absolute;
            bottom: -6px;
            left: 0;
        }
        
        
    h3 {
        font-size:20px;
    }

.subheading {
    font-family: 'Montserrat-Medium';
    font-weight: 500;    
    font-size:18px;
}

.text-red {
    color: var(--red);
}

.text-grey {
    color: var(--grey);
}

.text-lightgrey {
    color: var(--light-grey);
}

.text-neonblue {
    color: var(--neon-blue);
}

.text-bold {
    font-family: 'Montserrat-Bold';
    font-weight: 700;
}

.text-medium {
    font-family: 'Montserrat-Medium';
    font-weight: 500;    
}

.text-regular {
    font-family: 'Montserrat-Regular';
    font-weight: 400;
}

.uppercase {
   text-transform: uppercase; 
}
 
a {
    color: var(--red); 
    text-decoration:none;
}

    a:hover, a:focus {
        color: var(--red); 
        text-decoration:underline;
    }

  
p {
    font-size: var(--base-size);
}

.red-line::before {
    content: "";
    width: 100%;
    max-width: 220px;
    height: 2px;
    background-color: var(--red);
    display: inline-block;
    position: absolute;
    top: -15px;
    left: 15px;
}

    .red-line.left0::before {
        left:0;
    }

/* attributes */
.relative {
    position:relative;
}

.absolute {
    position:absolute;
}

.no-overflow {
    overflow:hidden;
}

.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center center;
}

.visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

    .visual.left {
        left: 0;
        right: auto;
    }
  

/* buttons */
.btn {
    border-radius: 10px;
    font-family: 'Montserrat-Bold';
    font-weight: 700;
    font-size: 18px;
    padding: 10px 30px;
}

    .btn:hover, .btn:focus {
        border-radius: 10px;
        box-shadow:none;
        outline:0;
        text-decoration: none;
    }

.btn-white {   
    border: 2px solid #ffffff;
    background: #ffffff;
    color: var(--grey);
}

    .btn-white:hover, .btn-white:focus {
        border: 2px solid var(--red);
        background: var(--red);
        color: #ffffff;
    }

.btn-white-outline {   
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;   
}

    .btn-white-outline:hover, .btn-white-outline:focus {
        border: 2px solid #ffffff;
        background: #fff;
        color: var(--grey);
    }
    
.btn-red-outline {   
    border: 2px solid var(--red);
    background: transparent;
    color: var(--red);   
}

    .btn-red-outline:hover, .btn-red-outline:focus {
        border: 2px solid var(--red);
        background: var(--red);
        color: #ffffff;
    }

.btn-red {
    border: 2px solid var(--red);
    background: var(--red);
    color: #ffffff;
}

    .btn-red:hover, .btn-red:focus {
        border: 2px solid #BF0000;
        background: #BF0000;
        color: #ffffff;
    }

.border-top {
    border-top:1px solid #E7E7E7 !important;
}

.border-bottom {
    border-bottom:1px solid #E7E7E7 !important;
}


.videoInsert {
    position: absolute; 
    right: 0; 
    bottom: 0;
    top:0;
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto; 
    z-index: -100;
    background-size: cover;
    overflow: hidden;
}
  

/* navbar styling */
.lock-scroll {
    overflow: hidden;
}

.navbar-nav li .dropdown-menu {
    display: block;
}

    @media only screen and (min-width : 1200px) {
        .navbar-nav li .dropdown-menu {
            display: none;
        }

        .navbar-nav li:hover .dropdown-menu {
            display: block;
        }
    }

.navbar {
    //height: 50px;
    height: 70px;
}

    @media only screen and (min-width :1200px) {
        .navbar {
            height: 100%;
        }
    }

.menu-navbar-container {
    width:100%;
}

.navbar ul {}

    @media only screen and (min-width : 1200px) {
        .navbar ul {
            margin-top:0;
        }
    }
    
    a.nav-link {
        font-family: 'Montserrat-Medium';
        font-weight: 500;
        font-size: 16px;
        color: var(--grey);
    }

        a.nav-link.active, a.nav-link:hover  {
            color: var(--red);
            text-decoration: none;
        }

ul.dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    border:none;
}

    @media only screen and (min-width :1200px) {
        ul.dropdown-menu {
            background-color: #FFFFFF;
            border-radius: 0.5rem;
            border: 1px solid rgba(0,0,0,.15);
        }
    }

        ul.dropdown-menu a:hover {
            background-color: transparent;
            color: var(--red);
            text-decoration: none;
        }

    .dropdown-item {
        color: #444444;
    }
    
        @media only screen and (min-width : 1200px) {
            .dropdown-item {
                text-align: left;
                font-weight: 500;
                padding: 8px 10px;
            }
        }

        .dropdown-item.active, .dropdown-item:active {
            color: var(--red);
            text-decoration: none;
            background-color: transparent;
            text-decoration: none;
        }

.current-menu-parent a.nav-link {
    color: var(--red);
}

.navbar-header {
    height:50px;
}

.navbar-toggler {
    z-index: 10;
    position: relative;
    top: 14px;
    padding:0!important;
}

    .navbar-toggler:focus, .navbar-toggler:active {
        outline: 0!important;
        box-shadow:none!important;
    }


.navbar-collapse {
    transition: all 0.3s ease;
    display: block;
    position: fixed;
    top: 0px;
    bottom: 0;
    padding: 2rem 20px;
    left: -120%;
    width: 100%;
    margin-top:70px;
}

    .logged-in .navbar-collapse {
        margin-top:115px;
    }

        @media only screen and (min-width: 783px) {
            .logged-in .navbar-collapse {
                 margin-top:100px;
            }
        }
    
    .navbar-collapse.show {
        left: 0;
        z-index: 5;
        background: #ffffff;
        overflow:scroll;
    }

    @media only screen and (min-width: 1200px) {
        .navbar-collapse {
            position:static;
            padding: 0;
            margin-top:0;
        }

        .logged-in .navbar-collapse {
            margin-top:0;
        }
    }

.navbar-toggler span {
   display: block;
   background-color: #444444;
   height: 2px;
   width: 25px;
   margin-top: 0;
   margin-bottom: 6px;
   -webkit-transform: rotate(0deg);
   -moz-transform: rotate(0deg);
   -o-transform: rotate(0deg);
   transform: rotate(0deg);
   position: relative;
   left: 0;
   opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
   -webkit-transition: transform .35s ease-in-out;
   -moz-transition: transform .35s ease-in-out;
   -o-transition: transform .35s ease-in-out;
   transition: transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    left: 0;
    top: 6px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    left: 0;
    top: 6px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}



/*Header */
header {
    background-color: #ffffff;
    width: 100%; 
    height: 70px;
    position:fixed;
    z-index:10;
}

    @media only screen and (min-width: 1200px) { 
        header {
	       position:relative;
           height: 120px;
        }    
    }


/* Front Page */
.jumbotron {
	//height: auto;
    height: 450px;
	position: relative;
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
    padding-top:70px;
}

    @media only screen and (min-width: 576px) { 
        .jumbotron {
	       height: 500px;
        }    
    }
    
    @media only screen and (min-width:992px) { 
        .jumbotron {
	       height: 600px;
        }    
    }
   
    @media only screen and (min-width: 1200px) { 
        .jumbotron {
	       height: 70vh;
           padding-top: 0px;
        }    
    }

    .jumbotron h1.banner-heading {
        font-size:32px;
        color:#ffffff;
        font-family: 'Montserrat-Bold';
        font-weight: 700;
    }
    
        @media only screen and (min-width: 768px) { 
            .jumbotron h1.banner-heading {
                font-size:40px;
            }
        }

        @media only screen and (min-width: 992px) { 
            .jumbotron h1.banner-heading {
                font-size:48px;
            }
        }

        @media only screen and (min-width: 1200px) { 
            .jumbotron h1.banner-heading {
                font-size:64px;
            }
        }
    
    .jumbotron .banner-subheading {
        font-size:15px;
        color:#ffffff;
        font-family: 'Montserrat-Bold';
        font-weight: 700;
    }

        @media only screen and (min-width: 576px) {        
            .jumbotron .banner-subheading {
                font-size:18px;
            }  
        }

        @media only screen and (min-width: 768px) { 
            .jumbotron .banner-subheading {
                font-size:20px;
            }  
        }

#home-acc-logos {
    background-color:#ffffff;
}

#home-acc {
    background-color: #ffffff;
}

#home-services {
    overflow:hidden;
}

    #home-services .services-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    #home-services svg:not(:root) {
        width:200%;
        height: auto;
    }
    
        @media only screen and (min-width: 992px) { 
            #home-services svg:not(:root) {
                width:140%;
            }    
        }

        @media only screen and (min-width: 1200px) { 
            #home-services svg:not(:root) {
                width:100%;
            }    
        }

    #home-services .card {
        border-radius:10px;
        //background-color:rgba(9,71,136,0.9);
        background: transparent;
        font-family: 'Montserrat-Medium';
        font-weight: 500;
        color:#ffffff;
        font-size:16px;
        box-shadow: 0px 4px 20px rgba(0,0,0,.1);
    }
    
        @media only screen and (min-width: 1400px) { 
             #home-services .card  {
                font-size:18px;
            }    
        }
        
        #home-services a:hover {
                text-decoration: none;
            }
        
        #home-services .card-body {
            background-color: rgba(9,71,136,0.9);
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }
    
        #home-services .card img {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

    #home-services .card .card-title {
        font-family: 'Montserrat-Bold';
        font-weight: 700;
        color:#ffffff;
        font-size:18px;
    }
    
        @media only screen and (min-width: 1400px) { 
             #home-services .card .card-title {
                font-size:22px;
            }    
        }
    
    #home-services .card .link {
        font-family: 'Montserrat-Bold';
        font-weight: 700;
        color:var(--neon-blue);
        font-size:16px;
        text-decoration:underline;
    }
    
        @media only screen and (min-width: 1400px) { 
             #home-services .card .link {
                font-size:18px;
            }    
        }
    
#home-build {}

    #home-build .acc-heading {
        color: var(--red);
        font-family: 'Montserrat-Bold';
        font-weight: 700;
        font-size:18px;
    }
    
#home-summary {
    background-color:#094788;
    color:#FFFFFF;
}


/* inner page general styles */
.inner-page strong,
.inner-page a {
    color: var(--red);
    font-weight: 500;
    font-family: 'Montserrat-Medium';
}

    .inner-page a:hover {
        color: var(--red);
        font-weight: 500;
        font-family: 'Montserrat-Medium';
        text-decoration:underline;
    }


.jumbotron.inner {
	height: auto;
    //height: 550px;
    min-height: 300px;
	position: relative;
	background: none;
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
    overflow:hidden;
    display: flex;
    align-items: center;
}

    @media only screen and (min-width: 992px) {
        .jumbotron.inner {
            min-height: 400px;
        }
    }

    @media only screen and (min-width: 1200px) {
        .jumbotron.inner {
            height: 480px;
        }
        
        .jumbotron.inner.basic {
            height: auto;
        }
    }
    
    .jumbotron.inner.small {
        height: 70px;
        min-height: auto;
    }
    
        @media only screen and (min-width: 1200px) {       
            .jumbotron.inner.small {
                height: 400px;
                
            }
        }
        
    .jumbotron.inner.simple {
        height: 300px;
    }
    
        @media only screen and (min-width: 1200px) {       
            .jumbotron.inner.simple {
                height: 540px;
            }
        }
        
    .jumbotron.inner.clear {
        height: auto;
    }
    
        @media only screen and (min-width: 1200px) {       
            .jumbotron.inner.clear {
                height: auto;
                min-height: auto;
            }
        }
    

    .jumbotron.inner .subheading {
        font-family: 'Montserrat-Bold';
        font-weight: 700;    
        font-size:20px;
        color:#ffffff;
    }
    
        .jumbotron.inner .subheading.grey {
            color: #878787; 
            font-family: 'Montserrat-Medium';
            font-weight: 500;    
        }
    
    .jumbotron-overlay {
        background: linear-gradient(90deg, rgba(68, 68, 68, 0.5),rgba(68, 68, 68, 0));
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    


#sustainability {}

    #sustainability .card {
        border:none;
        background-color:#F4F4F4;
        color:#4B4B4B;
    }
    
        #sustainability .card .heading {
            color: var(--red);
            font-weight: 500;
            font-family: 'Montserrat-Medium';
            font-size:20px;
        }


#accreditations {}

    #accreditations .heading {
        color: #444444;
        font-weight: 500;
        font-family: 'Montserrat-Medium';
        font-size:22px;
    }
       
    @media only screen and (min-width: 992px) {
        #accreditations .img-outer {
            width:300px;
        }
    }
    
    
#team {}

    #team .card {
        border:none;
        background-color:#F4F4F4;
        color:#4B4B4B;
    }
    
        #team .card .heading {
            color: var(--red);
            font-weight: 700;
            font-family: 'Montserrat-Bold';
            font-size:24px;
        }
        
        #team .card .job-role {
            color: #7b7b7b;
            font-weight: 500;
            font-family: 'Montserrat-Medium';
            font-size:15px;
        }
        
#new-build {}

    #new-build p strong {
        color:var(--red);
        font-weight: 500;
        font-family: 'Montserrat-Medium';        
    }

    #new-build.work {
        background-color: #094788;
        color: #FFFFFF;
    }
    
        #new-build.work ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            columns: 1;
            -webkit-columns: 1;
            -moz-columns: 1;
        }
        
            @media only screen and (min-width: 576px) {
                #new-build.work ul {
                    columns: 2;
                    -webkit-columns: 2;
                    -moz-columns: 2;
                }
            }
        
         #new-build.work li {
            background-image: url(images/icons/star-red-circle.svg);
            background-repeat: no-repeat;
            padding-left: 60px;
            background-size: 50px 50px;
            line-height: 50px;
            margin-bottom: 10px;
        }
        
            @media only screen and (min-width: 1200px) {
                #new-build.work li {
                    margin-bottom: 30px;
                }
            }
        
        #new-build.commercial .card {
            border-radius: 10px;
            background-color: #094788;
            font-family: 'Montserrat-Medium';
            font-weight: 500;
            color: #ffffff;
            font-size: 16px; 
        }

            @media only screen and (min-width: 1400px) {
                #new-build.commercial .card {
                    font-size: 18px;
                }
            }
            
            #new-build.commercial a:hover {
                text-decoration: none;
            }
            
        #new-build.commercial .card img {
          border-top-left-radius: 10px;
          border-top-right-radius: 10px;
          object-fit: cover;
          height:300px;
        }    
        
            @media only screen and (min-width: 768px) {
                #new-build.commercial .card img {
                    border-top-left-radius: 10px;
                    border-bottom-left-radius: 10px;
                    border-top-right-radius: 0;
                    object-fit: cover;
                    height:100%;
                }    
            }

        #new-build.commercial .card .card-title {
            font-family: 'Montserrat-Bold';
            font-weight: 700;
            color: #ffffff;
            font-size: 18px;
        }
        
            @media only screen and (min-width: 1400px) {
                #new-build.commercial .card .card-title {
                    font-size: 22px;
                }
            }
            
        #new-build.commercial .card .link {
            font-family: 'Montserrat-Bold';
            font-weight: 700;
            color: var(--neon-blue);
            font-size: 16px;
            text-decoration: underline;     
        }

            @media only screen and (min-width: 1400px) {
                #new-build.commercial .card .link{
                    font-size: 18px;
                }
            }
            
    #new-build.team .card {
        border:none;
        background-color:#F4F4F4;
        color:#4B4B4B;
    }
    
        #new-build.team .card .heading {
            color: var(--red);
            font-weight: 700;
            font-family: 'Montserrat-Bold';
            font-size:24px;
        }
        
        #new-build.team .card .job-role {
            color: #7b7b7b;
            font-weight: 500;
            font-family: 'Montserrat-Medium';
            font-size:15px;
        }
        
        #new-build.team .card a {
            color:var(--red);
        }
        
            #new-build.team .card a:hover {
                color:var(--red);
                text-decoration:underline;
            }
        
    #new-build.linkedin {
        background-color: #094788;
        color: #FFFFFF;
    }
    
    #new-build.accreditations h2.heading {
        color: #444444;
        font-weight: 500;
        font-family: 'Montserrat-Medium';
        font-size:28px;
        line-height:46px;
    }
    
    #new-build.blog {
        background-color: #094788;
        color: #FFFFFF;
    }
    
    #new-build.core-points .heading {
        color: #444444;
        font-weight: 500;
        font-family: 'Montserrat-Medium';
        font-size:24px;
    }
    
    @media only screen and (min-width: 992px) {
        #new-build.accreditations .img-outer {
            width:300px;
        }
    }
    

#services {}

    #services.benefits {
        background-color: #094788;
        color: #FFFFFF;
    }
    
        #services.benefits .card-title {
            color: #3EEBE1;
            font-weight: 500;
            font-family: 'Montserrat-Medium';
            font-size:22px;
            position:relative;
        }
        
            @media only screen and (min-width: 768px) {
                #services.benefits .card-title:after {
                    content: "";
                    width: 50%;
                    //max-width: 220px;
                    height: 2px;
                    background-color: #3EEBE1;
                    display: inline-block;
                    position: absolute;
                    bottom: -10px;
                    left: 0;
                }
            }
            
            @media only screen and (min-width: 1400px) {
                #services.benefits .card-title:after {
                    content: "";
                    width: 50%;
                    //max-width: 220px;
                    height: 2px;
                    background-color: #3EEBE1;
                    display: inline-block;
                    position: absolute;
                    bottom: -35px;
                    left: 0;
                }
            }
            
    #services.core-points.bullets {
        background-color: #094788;
        color: #FFFFFF;
    }
    
    #services.products .extra-products .card {
        //box-shadow: 0px 4px 20px rgba(0,0,0,.1);
    }
    
        #services.products .extra-products .card-title {
            color: #444;
            font-size: 22px;
        }
        
    #services.customer {
        background-color:#f5f5f5;
        background-image: url(images/services-watermark.png);
        background-position: bottom left;
        background-size:50%;
        background-repeat:no-repeat;
    }
    
        #services.customer .card {
            border-radius:30px;
            box-shadow: 0px 4px 20px rgba(0,0,0,.1);
        }
        
    @media only screen and (min-width: 992px) {
        #services.accreditations .img-outer {
            width:300px;
        }
    }
    
#viridian {}

    #viridian.benefits {
        background-color: #094788;
        color: #FFFFFF;
    }

    #viridian.benefits li {
            margin-bottom:10px;
        }
        
        #viridian.benefits li strong {
            color: var(--red);
        }
    }
    
#eco {}

    #eco.core-points {
        color: #444444;
        font-family: 'Montserrat-Regular';
        font-weight: 400;
        font-size:20px;
    }

    #eco .card {
        border:none;
        background-color:#F4F4F4;
        color:#4B4B4B;
    }
    
        #eco .card .heading {
            color: var(--red);
            font-weight: 700;
            font-family: 'Montserrat-Bold';
            font-size:20px;
        }
        
        #eco .card .subheading {
            color: #7b7b7b;
            font-weight: 500;
            font-family: 'Montserrat-Medium';
            font-size:18px;
        }
        
        #eco.content li,
        #ev.content li {
            margin-bottom:5px;
        }
        
            #eco.content li strong,
            #ev.content li strong {
                color: #444;
            }
        
        #eco.content strong,
        #ev.content strong {
            color: var(--red);
    }
    
    #eco.table .box {
        background-color:#EFEFEF;
        color:#878787;
        padding:15px 10px;
        font-size:16px;
    }
    
        @media only screen and (min-width: 576px) { 
            #eco.table .box {
                padding:16px 15px;
            }
        }
        
#ev {}

    #ev.charger .card {
        color: #878787;
        font-size: 18px;
    }
    
        #ev.charger .card strong {
            font-weight: 700;
            font-family: 'Montserrat-Bold';
            color: #444;
            font-size: 18px;
        }

    #ev.charger .card .heading {
        color: #444;
        font-size: 28px;
    }
    
    #ev.charger .card .subheading {
        color: #878787;
        font-size: 18px;
    }
            
/* Post */
#blog {}

    #blog .blog-posts a {
        color:#878787;
        text-decoration: none;
    }
    
    #blog .blog-posts h2.heading {
        color:#444444;
    }
    
        #blog .blog-posts article:hover h2.heading {
            color:var(--red);
        } 
        
        #blog .blog-posts .post-category a:hover {
            color:var(--red);
        } 

    
#single {}

    #single h2,
    #single h3 {
        margin-bottom: 20px;
    }
    



/* Contact Form */
.wpcf7 p {
    margin-bottom:0;
    font-size: 16px;
}

.details-outer {
    background-color:#f4f4f4;
    padding:20px;
    border-radius:50px;
    font-family: 'Montserrat-Medium';
    font-weight: 500;
    font-size:16px;
    color:#4B4B4B;
}
    @media only screen and (min-width: 992px) { 
        .details-outer {
            padding:40px;
        }    
    }
    
    @media only screen and (min-width: 1400px) { 
        .details-outer {
            padding:40px 80px;
        }
    }


    .details-outer .heading {
        font-family: 'Montserrat-Bold';
        font-weight: 700;
        font-size:18px;
    }

.contact-outer {
    background-color:#094788;
    padding:20px;
    border-radius:50px;
}

    @media only screen and (min-width: 992px) { 
        .contact-outer {
            padding:40px;
        }    
    }

.contact input[type="text"], .contact input[type="email"], .contact input[type="tel"], .contact textarea {
    width: 100%;
    padding: 18px 16px;
    font-family: 'Montserrat-Medium';
    font-weight: 500;
    border: none;
    border-radius:20px;
    background-color: #ffffff;
    color:#767676;
    font-size:16px;
}

    .contact input[type="text"]:focus, .contact input[type="email"]:focus, .contact input[type="tel"]:focus, .contact textarea:focus, .contact select:focus {
        outline:none;
    }

    .contact select {
        width: 100%;
        padding: 18px 16px;
        font-family: "Montserrat-Medium", sans-serif;
        font-weight: 500;
        border: none;
        border-radius:20px;
        -webkit-border-radius: 20px;
        -moz-border-radius:20px;
        background-color: #ffffff;
        color:#767676;
        font-size:16px;
        line-height: 60px;
        height: 60px;
    }

.contact textarea {
    height: 100px;
}

.contact .wpcf7-submit {
    float:right;
} 

.contact .selectbox p {
    line-height: 60px;
    height: 60px;
}

    .contact .selectbox p span {
        line-height: 60px;
        height: 60px;
    }
    

.captcha .quiz-box {
    width: 100%;
    background-color: #ffffff;
    padding: 18px 15px;
    border-radius:20px;
}

    .captcha label {
        display: inline !important;
    }

    .captcha .wpcf7-quiz-label {
        margin-right: 10px;
    }

    .contact .captcha input[type="text"] {
        width: 35%;
        background-color: transparent;
        border: none;
        border-left: 1px solid var(--grey);
        border-radius: 0;
        padding: 0;
        padding-left: 15px;
    }

        @media only screen and (min-width: 576px) { 
            .contact .captcha input[type="text"] {
                width: 50%;
            }    
        }

        @media only screen and (min-width: 768px) { 
            .contact .captcha input[type="text"] {
                width: 60%;
            }    
        }
            
        @media only screen and (min-width: 992px) { 
            .contact .captcha input[type="text"] {
                width: 70%;
            }    
        }

        @media only screen and (min-width: 1200px) { 
            .contact .captcha input[type="text"] {
                width: 60%;
            }    
        }
    
.contact input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    width: 28px;
    height: 28px;
    left: 0;
}    
    
    .contact .wpcf7-list-item-label {
        margin-left: 30px;
        display: inline-block;
        color: #FFFFFF;
        position: relative;
    }
    
        .contact .wpcf7-list-item-label a {
            color: #FFFFFF;
            text-decoration:underline;
        }
    
    .contact input[type="checkbox"] + span::before {
        display: block;
        position: absolute;
        content: '';
        border-radius: 0;
        height: 28px;
        width: 28px;
        top: 8px;
        left: -40px;
        border: none;
        background-color: #fff;
    }    

        @media only screen and (min-width: 768px) {
            .contact input[type="checkbox"] + span::before {
                //top: -20px;
            }
        }
           
        
    .contact input[type="checkbox"] + span::after {
        display: block;
        position: absolute;
        content: url(images/icons/cf-tick.png);
        height: 28px;
        width: 28px;
        top: 2px;
        left: -40px;
        visibility: hidden;
        font-size: 24px;
        text-align: center;
    }
        
        .contact input[type="checkbox"]:checked + span::after {
            visibility: visible;
        }
    

::-webkit-input-placeholder { /* WebKit browsers */
  opacity: 1;
  color:#767676;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  opacity: 1;
  color:#767676;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
  opacity: 1;
  color:#767676;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
  opacity: 1;
  color:#767676;
}

/* Contact Form End */

/* FAQs */
.accordion-item {
    background-color: transparent;
    border: 1px solid #878787 !important;
    margin-bottom: 10px;
    border-radius: 20px !important;
}

.accordion-button {
    color: #444444;
    background-color: transparent;
    box-shadow: none;
    //border: 1px solid #878787;
    //border-radius: 20px !important;
    font-family: "Montserrat-Medium", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

    .accordion-button:not(.collapsed) {
      color: #444444;
      background-color: transparent;
      box-shadow: none;
    }

    .accordion-button:focus {
      z-index: 3;
      border-color: #878787;
      outline: 0;
      box-shadow: none;
    }

.accordion-collapse {
    //border: 1px solid #878787;
    //border-radius: 25px;
    //margin-top: 10px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23878787'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23878787'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* pagination */
.pagination {}

    .pagination .current, 
    .pagination .inactive {
        margin-right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        //border: 1px solid red;
        width: 36px;
        height: 36px;
    }
    
    .pagination .current {
        color:var(--red);
    }
    
/* sideabar */
.sidebar .widget {
    background-color: #4b4b4b;
    margin-bottom: 48px;
    border-radius: 20px;
    padding: 40px 35px;
    color: #fff;
}

    .sidebar .widget h2 {
        color:#ffffff;
        font-family: 'Montserrat-Bold';
        font-weight: 700;
        font-size:22px;
        line-height: normal;
        margin-bottom: 15px;
    }
    
    .sidebar .widget ul {
        list-style: none;
        padding-left: 0;
    }
    
        .sidebar .widget li {
            line-height: 40px;
        }
    
            .sidebar .widget li a {
                color:#3EEBE1;
                font-family: 'Montserrat-Medium';
                font-weight: 500;
                font-size:18px;
            }
    
                .sidebar .widget li a:hover {
                    color:#ffffff;
                }
    .sidebar .widget input[type="search"] {
        background-color: #fff;
        color: #A5A5A5;
        border-radius: 10px;
        border: none;
        outline: none;
        width: 100%;
        padding: 12px 20px;
    }
        
    .sidebar .widget .wp-block-search__inside-wrapper {
        flex-direction: column;
    } 
    
    .sidebar .widget button {
        width: 167px;
        margin-top: 15px;
        border: 2px solid var(--red);
        background: var(--red);
        color: #ffffff;
        border-radius: 10px;
        font-family: 'Montserrat-Bold';
        font-weight: 700;
        font-size: 18px;
        padding: 10px 30px;
        margin-left: 0;
    }
    
        .sidebar .widget button:hover {
            border-radius: 10px;
            box-shadow: none;
            outline: 0;
            border: 2px solid #BF0000;
            background: #BF0000;
            color: #ffffff;
        }

/* Footer */

footer {
    color:#4B4B4B;
    font-family: 'Montserrat-Regular';
    font-weight: 400;
    font-size:14px;
}

    footer li {
        margin-bottom: 18px;
        line-height: 18px;
    }

    footer a {
        color:#4B4B4B;
        font-family: 'Montserrat-Regular';
        font-weight: 400;
        font-size:15px;    
    }
    
        footer a:hover, footer a.active {
            color:var(--red);
            text-decoration:none;
        }

    footer .heading,
    footer .heading a {
        color:#717171;
        font-family: 'Montserrat-Bold';
        font-weight: 700;
        font-size:15px;
    }
    
    footer .footer-bottom {
        font-size:15px;    
    }

/* Footer End */


.modal.show .modal-dialog {
    z-index: 100;
    margin-top: 50px;
}

.modal-title {
    display: none;
}


/* Mobile Queries
-------------------------------------------------------------- */

/* Max Width */
@media (max-width: 495px) {}
@media (min-width: 576px) {}
@media (max-width: 768px) {}
@media (max-width: 992px) {}

/* min Width */
@media only screen and (min-width : 480px) {}
@media only screen and (min-width : 768px) {}
@media only screen and (min-width : 992px) {}
@media only screen and (min-width : 1200px) {}
