
/**
   Helpers & Global
 **/
.line-clamp-3{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}
body {
    margin: 0;
    font-family:roboto;
    position:relative;
}
h1, h2, h3, h4, h5, h6 {
    font-family:roboto;
}
h1{font-size:26px;}
h2{font-size:22px;}
img{
    max-width:100%;
}

.error {
    border: red solid;
}
#form-error {
    display: flex;
    flex-direction: row;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background: red;
    color: white;
    margin-top: 30px;
}
#form-error span {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.background-flat-grey {
    /* background-color:#1b1a1a; */
    background-color:#373435;
}

.background-flat-grey-light {
    background-color:#cccacf;
}

.background-green-gradient {
    /* background: linear-gradient(#C3D964, #6E9239); */
    background:linear-gradient(#7BC242, #5A9B26);
}

.background-blue-gradient {
    background: radial-gradient(#1a92cb, #182750);
}


.green-text {
    /* color: #4CAF50; */
    color: #7BC242;
}

.blue-text {
    color: #182750;
}

.box-shadow-1 {
    /* box-shadow: 0px 0px 8px 0 black; */
    box-shadow: 0px 25px 18px -8px rgba(0,0,0,.15);
}

@media only screen and (max-width:470px){
    .gl-hide-on-mobile{
	display:none!important;
    }
}

@media only screen and (min-width:471px){
    .gl-hide-on-desktop{
	display:none!important;
    }
}

/*container css*/
.container{
    margin:auto;
}
@media only screen and (min-width:1300px){
    .container{
	max-width:1200px;
    }
}
@media only screen and (min-width:471px) and (max-width:1299px){
    .container{
	padding:0 60px;
    }
}
@media only screen and (max-width:470px){
    .container{
	padding:0 30px;
    }
}

/*scroll bar*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #d3d3d3; 
}
::-webkit-scrollbar-thumb {
    background: #eee; 
    border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
    
    background: #ff8201; 
} 

/* slick slider fixes */
/* the slides */
.slick-slide {
    margin: 0 27px;
    height:auto;
}
/* the parent */
.slick-list {
    margin: 0 -27px;
}

/*buttons*/
.btn-1 {
    position: relative;
    padding: 14px 43px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ff8201;
    border: 2px solid #ff8201;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    background: none;
    display: block;
    width: fit-content;
    height: fit-content;
    cursor:pointer;
}

.btn-2{
    position: relative;
    padding: 14px 43px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #ff8201;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    background:  #ff8201;
    display: block;
    width: fit-content;
    height: fit-content;
    cursor:pointer;
}

.btn-3 {
    color: #ff4e00;
    font-weight: 900;
    font-size: 16px;
}

@media only screen and (max-width:470px){
    .btn-1, .btn-2, .btn-3 {
	width: -webkit-fill-available;
	text-align: center;
    }
}


/**
   Header
 **/
#gl-header-top {
    padding: 20px 0;
}
#gl-header-top * {
    color: white;
}
#glht-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
#glht-socials {
    display: flex;
    gap: 10px;
}

#glht-ci {
    display: flex;
    gap: 20px;
}
.glht-ci-item > a {
    display: flex;
    gap: 10px;
}

#gl-header-bottom {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index:999;
}
#glhb-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
#glhb-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
}
.glhb-nav-item span {
    font-size: 20px;
}
.glhb-nav-item {
    position: relative;
}
.dropdown-menu-main-nav {
    display:none;
    position: absolute;
    padding-top: 30px;
    background: #eeeeee;
    padding: 0;
    min-width: 170px;
    gap: 20px;
    flex-direction: column;
    left: -20px;
}
.drop-down-icon {
    display: inline-block;
    /* transform: rotate(90deg); */
    padding-left: 0px;
    margin-left: 8px;
}
.glhb-nav-item span {
    font-size: 20px;
    cursor: pointer;
}

/* div[class*="glhb-nav-item"][class*="active"] > .dropdown-menu-main-nav {
   display:flex;
   } */

.glhb-nav-item:hover > .dropdown-menu-main-nav {
    display:flex;
    padding: 50px 20px 20px 20px;
}

#header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dropdown-menu-main-nav-mobile {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.glhb-nav-item-mobile {
    padding: 5px 10px;
}
.dropdown-menu-main-nav-mobile {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
@media only screen and (max-width:470px){
    #glht-ci, #glht-grid {
	flex-direction: column;
	gap: 10px;
    }
}

/***
   Footer
 ***/
#gl-footer {
    padding: 20px 0;
}
#gl-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
#glf-contact {
    display: grid;
}
.glfc-item {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

#gl-footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
#glfb-nav {
    display: flex;
    gap: 20px;
}

/**
   Footer v2
 **/
#gl-footer-grid-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
#glf2-1 {
    display: flex;
    gap: 30px;
}
#glf2-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    color: white;
}
#glf2-copyright span {
    color: white;
}
@media only screen and (max-width:470px){
    #gl-footer-grid-2 {
	flex-direction: column;
	gap: 20px;
	/* align-items: flex-end; */
	text-align: center;
    }
    #glf2-nav, #glf2-1 {
	flex-direction: column;
    }
}


/**
   Home
 **/
/*slider*/
#home-top-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
#home-top-slider a{
    aspect-ratio: 1920/1080;
}
#hts-prev, #hts-next {
    position: absolute;
    top: calc(50% - 50px);
    background: black;
    width: 50px;
    height: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}
#hts-prev {
    left:50px;
}
#hts-next {
    right:50px;
}

/*about*/
#ha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#ha-1 {
    position: relative;
}
.secton-vertical-text {
    position: absolute;
    top: 3%;
    left: -40px;
    transform: rotate(90deg);
    transform-origin: left;
    text-transform: uppercase;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
span.vt-line {
    border: 2px solid;
    width: 30px;
    margin-left: 10px;
}

/*services*/
#home-services {
    padding: 60px 0;
}
#home-services h2 {

}
.hsi-grid {
    display: grid;
}
.hsi-grid h3::after {
    content: "";
    display: block;
    border-bottom: 2px solid #000;
    max-width: 30px;
    margin: 20px auto;
}
#hs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}
.hsi-grid img {
    margin: auto;
}
#hs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    grid-row-gap: 60px;
}

/*cta 1*/
#home-cta-1 {
    padding: 60px 0;
}
#hcta1-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    grid-gap: 30px;
}
#hcta1-item-1 {
    /* display: grid; */
    gap: 20px;
}

/*testimonials*/
#home-testimonials {
    background-position: top;
    background-attachment: fixed;
    /* height: 500px; */
}
#ht-slides-wrapper {
    margin-top: 3%;
}
#ht-slides {
    max-width: 700px;
    margin: auto;
}
#home-testimonials > .container {
    display: flex;
    flex-direction: column;
}
.ht-i-inner-grid-1 {
    margin-top: 30px;
    display: grid;
    gap: 10px;
    grid-template-columns: 80px 1fr;
}
.htiig-title, .htiig-subtitle {
    display: block;
}
.htiig-title{
    font-weight:900;
    font-size:18px;
}
#home-testimonials h2, #home-testimonials p, #home-testimonials span, #home-testimonials div{
    color:#fff;
}

/*latest news*/
.hln-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
#hlni-content {
    position: relative;
    padding: 20px 60px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.hlni-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.hlni-title * {
    font-size: 20px;
    font-weight: 900;
}
.hlni-more {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
#home-latest-news {
    padding: 0 0 60px 0;
}
.hlni-image img {
    height: auto!important;
}
@media only screen and (max-width:470px){
    #ha-grid, #hs-grid, #hcta1-grid, .hln-item {
	display: grid!important;
	grid-template-columns: 100%!important;
    }
    .hlni-image img {
	height: auto!important;
    }
    div#hlni-content {
	padding: 0 0 60px 0!important;
    }
    #hts-prev {
	left: 10px;
    }
    #hts-next {
	right: 10px;
    }
}

/**
   Blog
 **/
#top-image-wrapper {
    margin-bottom: 60px;
}
#page-top-image {
    position: relative;
}
#top-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% - 50px);
}
#top-breadcrumb {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.4);
    display: flex;
    gap: 10px;
}
#top-text *, #top-breadcrumb *  {
    color: #fff;
}
#blv-outer-grid {

}

.bli-image-wrapper img {
    /* min-width: -webkit-fill-available; */
}

.bli-meta-wrapper {
    display: flex;
    gap: 10px;
}
.bli-title-wrapper * {
    font-size: 22px;
}
.bli-btn-wrapper {
    padding: 20px;
    position: absolute;
    right: 10px;
    border: 2px solid;
}
#blv-paginate {
    padding: 20px 20px 60px;
}
#blv-paginate .pagination {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}
.pagination .page_current {
    color: #e24d00;
    font-weight: 900;
    border-color: #e24d00;
}
.pagination * {
    border: 1px solid #000;
    padding: 7px;
}

.blvs-form-group input[type="search"] {
    padding: 14px;
    width: calc(100% - 52px);
}
.blvs-form-group button {
    width: 48px;
    height: 48px;
    background: #e85a00;
    border: unset;
}
#blvsb-categories-wrapper {

}
#blvsb-categories-wrapper h2 {
    font-size: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}
.blv-category-item {
    margin-top: 15px;
}
.blv-category-item a {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
}

@media only screen and (max-width:470px){
    .bli-image-wrapper img {
	height: auto!important;
    }
}

/**
   Blog - page view
 **/
#blog-page-view .bli-title-wrapper {
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
#blog-page-view .bli-content-wrapper {
    border: unset!important;
    padding: 20px!important;
}

/**
   Services (List View)
 **/
#video-with-text-wrapper {
    padding: 60px 0;
}
#vwt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
#vwt-video {
    border-radius: 15px;
    overflow: hidden;
}
.cta-1-btn-grid {
    display: flex;
    gap: 30px;
}
div#faqs {
    padding: 60px 0;
}
div#faqs h2 {
    padding: 0 0 30px 0;
}
.faq-question {
    padding: 20px;
    border: 1px solid #000;
    cursor: pointer;
}
.faq-answer {
    padding: 20px;
}
#service-faq-wrapper {
    padding-bottom: 60px;
}

form#ssform {
    padding: 20px;
    background: #fafafa;
}
#sf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:30px;
}

#service-form-wrapper {
    padding: 60px 0;
}
form#ssform input, form#ssform select {
    padding: 20px;
}
#ssf-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
#ssf-grid-1 > .fg1 {
    display: grid;
    gap: 10px;
}
#pf-btn-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

#hcta1-item-2 {
    /* padding-top: 77px; */
}

@media only screen and (max-width:470px){
    #vwt-grid {
	grid-template-columns: 100%!important;
    }
    div#top-breadcrumb {
	display: none!important;
    }
    .container .container {
	padding: unset!important;
    }
    #services-page-view #service-form-wrapper {
	padding-top: unset!important;
	margin-top: -30px;
    }
    #services-page-view #service-faq-wrapper {
	margin-top: 60px;
	padding-bottom: 30px!important;
    }
    div#ssf-grid-1 {
	grid-template-columns: 100%!important;
    }
}


/**
   Cars (list view)
 **/
/*general styles*/
.cic-title h2 {
    font-size: 20px;
}
span.cicm1 {
    color: #7b7b7b;
}
.cic-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
span.cic-price1 {
    font-size: 24px;
    color: #e85800;
}

#items-sort-bar {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}
select#isb-select-elem {
    padding: 10px;
}
#isb-grid-list-group {
    display: flex;
    gap: 10px;
}
.isbglg-item {
    padding: 10px;
    border: 1px solid;
    cursor: pointer;
}

/*list layout styles*/
.list-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}
.list-layout .cars-item-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 30px;
}
.list-layout .ci-content {
    position: relative;
}
.list-layout .cic-title {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 8px;
}
.list-layout .cicm-group2 {
    position: absolute;
    right: 10px;
    top: 50%;
}

/*grid layout styles*/

/*side bar items*/
#cars-list-view #blvsb-categories-wrapper {
    margin-top: 30px;
}
#cars-refine-search {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
#cars-refine-search select {
    width: 100%;
    padding: 20px 10px;
}
#crf-price-range-group {
    display: flex;
    gap: 10px;
}
#crfp-min, #crfp-max {
    width: 40px;
    height: 40px;
    border: 1px solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
}
input#price {
    width: 100%;
}
#crfp-min::before, #crfp-max::before {
    content: "R";
}

@media only screen and (max-width:470px){
    #blv-outer-grid, .list-layout .cars-item-wrapper {
	grid-template-columns: 100%!important;
    }
    #blv-outer-grid #side-bar-wrapper {
	grid-row: 1/2;
    }
    #cars-refine-search select {
	border: unset!important;
    }
    span#isbni-text {
	font-size: 12px;
    }
}


/**
   Cars page view
 **/
#cars-page-view #blv-outer-grid {
    grid-template-columns: 800px 1fr;
}
#cg-main-slider {
    position: relative;
}

#cgms-prev, #cgms-next {
    position: absolute;
    top: 50%;
    border: 1px solid;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    cursor:pointer;
}
#cgms-prev{
    left:-20px;
}
#cgms-next{
    right:-20px;
}

#cg-second-slider {
    padding: 30px 0;
}

#ct-tabs {
    display: flex;
    gap: 30px;
    margin-bottom:30px;
    margin-top:30px;
    
}

#ct-tab-content {
    margin-bottom: 60px;
}
.car-tab-content h2, #enquire-form-cars h2 {
    font-size: 22px;
}

#enquire-form-cars {
    margin-top: 30px;
    /* padding-top: 30px; */
}
#efc-form input, #efc-form textarea {
    padding: 20px 10px;
    width: 100%;
}
form#efc-form {
    display: grid;
    gap: 30px;
}
#efcf-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
div#efcf-grid-2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

#car-single-sidebar-meta {
    border: 1px solid #eee;
    padding: 20px;
}
#car-single-sidebar-meta h2 {
    font-size: 22px;
}
.cssm-group1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}
.cssm-group2 {
    border: 1px solid #eee;
    margin: 0 -20px -20px;
    padding: 20px;
}
.cssm-group2 {
    border: 1px solid #eee;
    margin: 0 -20px -20px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.cssmg1-2, .cssmg3-2 {
    color: #ff8201;
}
a#car-sidebar-book-now {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}
a#car-sidebar-book-now {
    margin-top: 30px;
    width: -webkit-fill-available;
    text-align: center;
}
.car-tab:not(.active) {
    border-color: grey;
    color: grey;
}
#cg-second-slider img {
    height: auto!important;
}

@media only screen and (max-width:470px){
    div#ct-tabs {
	flex-direction: column;
	align-items: center;
    }
    #cg-main-slider img {
	height: auto!important;
    }
    #top-text {
	top: calc(50% - 45px)!important;
    }
    #top-text * {
	width: 90vw;
	margin: auto;
	text-align: center;
	font-size: 24px;
    }
    #glht-ci, #glht-grid {
	align-items: center;
    }
}

/**
   About us
 **/
#about-page-view #service-form {
    margin: 60px 0;
}
#service-form h2 {
    font-size: 24px;
}
#sf-1 {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

#scb-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#scbtb-group1 {
    display: flex;
    gap: 10px;
}
#scbtb-group1 .btn-1:not(.active) {
    border-color: grey;
    color: grey;
}
#select-car-by-wrapper {
    margin: 60px 0;
}

#testimonials-and-news-row #home-testimonials h2,
#testimonials-and-news-row #home-testimonials p,
#testimonials-and-news-row #home-testimonials span,
#testimonials-and-news-row #home-testimonials div {
    color: unset;
}

#testimonials-and-news-row {
    display: grid;
    grid-template-columns: 550px 550px;
    grid-gap: 30px;
}
#testimonials-and-news-row #hlni-content {
    padding: unset;
}
#testimonials-and-news-row .hlni-inner-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#testimonials-and-news-row .hlni-more {
    position: unset;
    margin-top: 10px;
}
#testimonials-and-news-row #home-testimonials {
    height: auto;
}
#logo-carousel {
    padding: 60px;
    background: #fafafa;
}

@media only screen and (max-width:470px){
    #page-top-image img {
	height: auto!important;
	min-height: 175px;
    }
    #sf-grid, #testimonials-and-news-row {
	grid-template-columns: 100%!important;
    }
    div#scb-top-bar {
	flex-direction: column;
    }
    form#ssform input, form#ssform select {
	padding: 20px;
	border: unset!important;
    }
    div#pf-btn-group {
	flex-direction: column;
    }
}

/**
   Contact us page
 **/
#contact-page-content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 30px;
    margin: 60px 0;
}
#cpcg1 h2 {
    font-size: 24px;
}
#contact-page-view #enquire-form-cars {
    margin-top: 0;
}
#cpcg1-more {
    margin-top: 20px;
}
#cpcg1-contact {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    flex-direction: column;
    flex-wrap: nowrap;
}
.cpcg1c-group1 a {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}
.cpcg1c-group1 a {
    display: grid;
    grid-template-columns: 50px 1fr;
}


@media only screen and (max-width:470px){
    div#contact-page-content-grid, #efcf-grid-1 {
	grid-template-columns: 100%!important;
    }
    #efc-form input, #efc-form textarea{
	width:auto!important;
    }
}

/**
   Products list page
 **/
/*searh*/
div#ps-search-bar-wrapper {
    padding: 60px 0;
}
div#ps-search-bar-grid {
    max-width: 600px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 75px;
    padding: 4px;
}
div#ps-search-bar-grid {
    max-width: 600px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 75px;
}
input#ps-search-input {
    padding: 20px;
}

/*filter*/
.filter-container {
    padding: 10px;
    background:#fff;
}
#product-filter select {
    padding: 10px;
    width: 100%;
}

/*products*/
div#product-wrapper-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 30px;
}
div#product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-bottom: 60px;
}
.product-card {
    min-height: 460px;
    background: #fff;
}
.pc-content {
    padding: 20px;
}

/*pagination*/
div#gl-paginate {
    margin: auto;
    text-align: center;
}
#gl-paginate .pagination {
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
}
#gl-paginate .pagination * {
    font-size: 18px;
    text-transform: capitalize;
}
#gl-paginate span.page_current {
    color: #b9d15b;
}
@media only screen and (max-width:470px){
    div#product-grid{
	grid-template-columns:100%!important;
    }
    div#product-wrapper-grid {
	grid-template-columns: 100%!important;
    }
}


/**
   product page (page view)
 */
div#ppwg-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 30px;
    margin: 60px 0;
}
div#ppwg-image-wrapper {
    max-width: 500px;
}
div#ppwg-btn-grid {
    display: grid;
    grid-template-columns: 175px 175px;
    grid-gap: 20px;
}
#ppwg-whatsapp a, #ppwg-call a {

    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    color:#fff;
}
div#ppwg-content-wrapper {
    position: relative;
}
div#ppwg-btn-grid {
    display: grid;
    grid-template-columns: 175px 175px;
    grid-gap: 20px;
    position: absolute;
    bottom: 0;
}
section#contact-form-seciton {
    margin-top: 60px;
}
@media only screen and (max-width:470px){
    #ppwg-grid {
	grid-template-columns: 100%!important;
    }
    div#ppwg-btn-grid {
	position: relative;
	margin-top: 30px;
    }
    div#ppwg-btn-grid {
	position: relative;
	margin-top: 30px;
	grid-template-columns: 100%!important;
    }
    #cform-grid-1, #cform-grid-2 {
	grid-template-columns: 100%!important;
    }
    a#cform-submit {
	height: 70px;
    }
}


/*general important overrides...*/
.secton-vertical-text {
    display: none;
}

/***
   Multi IT code
 ***/

/**
   Helpers & Global
 **/
body {
    background: url(../image/back.svg), linear-gradient(rgb(177 177 177 / 76%), rgba(255, 255, 255, 0.9));
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    font-family: roboto;
    position: relative;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family:roboto;
    text-transform:uppercase;
}
/*h1{font-size:24px!important;}
   h2{font-size:22px!important;}*/
h1, h2, h3, h4, h5, h6{font-size:22px!important;}
img{
    max-width:100%;
}

.error {
    border: red solid;
}
#form-error {
    display: flex;
    flex-direction: row;
    padding: 20px;
    justify-content: center;
    align-items: center;
    background: red;
    color: white;
    margin-top: 30px;
}
#form-error span {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.background-flat-grey {
    /* background-color:#1b1a1a; */
    background-color:#373435;
}

.background-flat-grey-light {
    background-color:#cccacf;
}

.background-green-gradient {
    /* background: linear-gradient(#C3D964, #6E9239); */
    background:linear-gradient(#7BC242, #5A9B26);
}

.background-blue-gradient {
    background: radial-gradient(#1a92cb, #182750);
}


.green-text {
    /* color: #4CAF50; */
    color: #7BC242;
}

.blue-text {
    color: #182750;
}

.box-shadow-1 {
    box-shadow: 0px 0px 16px 0px #8080805e;
}

.cut-hexagon-polygon-1 {
    width: 45px;
    height: 45px;
    clip-path: polygon(
	50% 0%,
	100% 25%,
	100% 75%,
	50% 100%,
	0% 75%,
	0% 25%
    );
}

.multi-it-blue-background{
    background: #2c2e73;
}
.multi-it-red-background{
    background: #a33034;
}
.multi-it-turquoise-background{
    background: #81b6b9;
}
.multi-it-dark-grey-background{
    background: #515252;
}
.multi-it-light-grey-background{
    background: #dddddd;
}

.multi-it-blue-red-gradient-background {
    background: linear-gradient(180deg,#2c2e73,#a33034);
}

.multi-it-red-blue-gradient-background {
    background: linear-gradient(180deg,#a33034,#2c2e73);
}

.multi-it-blue-text{
    color: #2c2e73!important;
}
.multi-it-red-text{
    color: #a33034!important;
}
.multi-it-turquoise-text{
    color: #81b6b9!important;
}
.multi-it-dark-grey-text{
    color: #515252!important;
}
.multi-it-light-grey-text{
    color: #dddddd!important;
}

.drop-down-icon .fa-caret-down {
    /* color: #2c2e73; */
}

.center-text{
    text-align:center;
    margin:auto;
}

.white-text{
    color:#fff!important;
}
.red-text{color:#a33034!important;}

@media only screen and (max-width:470px){
    .gl-hide-on-mobile{
	display:none!important;
    }
}

@media only screen and (min-width:471px){
    .gl-hide-on-desktop{
	display:none!important;
    }
}

/*container css*/
.container{
    margin:auto;
}
@media only screen and (min-width:1300px){
    .container{
	max-width:1200px;
    }
}
@media only screen and (min-width:471px) and (max-width:1299px){
    .container{
	padding:0 60px;
    }
}
@media only screen and (max-width:470px){
    .container{
	padding:0 30px;
    }
}

/*scroll bar*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #d3d3d3; 
}
::-webkit-scrollbar-thumb {
    background: #eee; 
    border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
    
    background: #ff8201; 
} 

/* slick slider fixes */
/* the slides */
.slick-slide {
    margin: 0 27px;
    height:auto;
}
/* the parent */
.slick-list {
    margin: 0 -27px;
}

/*buttons*/
.btn-1 {
    position: relative;
    padding: 14px 43px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ff8201;
    border: 2px solid #ff8201;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    background: none;
    display: block;
    width: fit-content;
    height: fit-content;
    cursor:pointer;
}

.btn-2{
    position: relative;
    padding: 14px 43px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid #ff8201;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    background:  #ff8201;
    display: block;
    width: fit-content;
    height: fit-content;
    cursor:pointer;
}

.btn-3 {
    color: #ff4e00;
    font-weight: 900;
    font-size: 16px;
}

.btn-white {
    border-radius: 15px;
    background: white!important;
    padding: 5px 20px;
    color:#000!important;
    text-align:center;
}
.btn-white span {
    color:#000!important;
    text-align:center;
}

.btn-red {
    border-radius: 15px;
    background: #a33034!important;
    padding: 5px 20px;
    color: #fff!important;
    text-align: center;
    border: unset;
    display: block;
    width: fit-content;
    height:unset!important;
    cursor:pointer;
}
.btn-red span {
    color:#fff!important;
    text-align:center;
}

.btn-purple {
    border-radius: 15px;
    background: #994d93!important;
    padding: 5px 20px;
    color: #fff!important;
    text-align: center;
    border: unset;
    display: block;
    width: fit-content;
    height:unset!important;
    cursor: pointer;
}
.btn-purple span {
    color:#fff!important;
    text-align:center;
}

.multi-btn-1 {
    border-radius: 15px;
    color: #a23035;
    cursor: pointer;
}

@media only screen and (max-width:470px){
    .btn-1, .btn-2, .btn-3 {
	width: -webkit-fill-available;
	text-align: center;
    }
}


/**
   Header
 **/
#gl-header-top * {
    color: white;
}
#gl-header-top i {
    color: #000;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
}
#glht-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
#glht-socials {
    display: flex;
    gap: 10px;
}
div#glht-cta-btns {
    display: flex;
    gap: 30px;
}
.glht-social-item {
    max-width: 33px;
}



#glht-ci {
    display: flex;
    gap: 20px;
}
.glht-ci-item > a {
    display: flex;
    gap: 10px;
}

#gl-header-bottom {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index:999;
}
#glhb-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
#glhb-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
}

.drop-down-icon {
    display: inline-block;
    /* transform: rotate(90deg); */
    padding-left: 0px;
    margin-left: 8px;
}

.glhb-nav-item span {
    font-size: 20px;
}
.glhb-nav-item {
    position: relative;
}
.dropdown-menu-main-nav {
    display:none;
    position: absolute;
    padding-top: 30px;
    background: #eeeeee;
    padding: 0;
    min-width: 170px;
    gap: 20px;
    flex-direction: column;
    left: -20px;
}

/* div[class*="glhb-nav-item"][class*="active"] > .dropdown-menu-main-nav {
   display:flex;
   } */

.glhb-nav-item:hover > .dropdown-menu-main-nav {
    display:flex;
    padding: 50px 20px 20px 20px;
}

#header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dropdown-menu-main-nav-mobile {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.glhb-nav-item-mobile {
    padding: 5px 10px;
}
.dropdown-menu-main-nav-mobile {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
@media only screen and (max-width:470px){
    #glht-ci, #glht-grid {
	flex-direction: column;
	gap: 10px;
    }
    div#glht-cta-btns {
	display:none;
	flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
        gap: 10px;
    }
}

/***
   Footer
 ***/
#gl-footer {
    padding: 20px 0;
}
#gl-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
#glf-contact {
    display: grid;
}
.glfc-item {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

#gl-footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
#glfb-nav {
    display: flex;
    gap: 20px;
}

/**
   Footer v2
 **/
#gl-footer-grid-2 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
}
#glf2-1 {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}
#glf2-nav {
    display: flex;
    gap: 0px;
    align-items: center;
    color: white;
    flex-direction:column;
}
#glf2-copyright span {
    color: white;
}
div#glf2-nav-inner {
    display: flex;
}
div#glf-logo-wrapper {
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
div#glf2-nav-inner {
    display: flex;
    gap: 30px;
}
.glfb-nav-item, .glf2-get-in-touch .cpcg1c-group1 {
    margin-bottom: 10px;
}
div#glf-logo-wrapper * {
    color: #fff;
}
#glf-logo-wrapper i {
    font-size: 40px;
}
#glf-logo-wrapper .glht-social-item {
    max-width: unset;
}
#glf-logo-wrapper div#glht-socials {
    gap: 30px;
}
#gl-footer h2 {
    font-size: 42px;
}

#glf-logo-wrapper i, .cpcg1c-group1 i{
    font-size:30px;
}

@media only screen and (max-width:470px){
    #gl-footer-grid-2 {
	flex-direction: column;
	gap: 20px;
	/* align-items: flex-end; */
	text-align: center;
    }
    #glf2-nav, #glf2-1 {
	flex-direction: column;
    }
    div#glf-logo-wrapper {
	text-align: center;
	margin: 30px auto 0;
    }
    .glf2-get-in-touch {
	text-align: center;
	margin: auto;
    }
}

/**
   V2
 **/
div#glfv2-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
}
.glfv2-g-col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
}
span.glfv2-title {
    font-size: 20px;
}
div#gl-footer-v2 {
    padding: 60px 0;
    background: white;
}
div#glfv2-g-col-inner-1 {
    display: grid;
    grid-template-columns: 40px 40px 40px 40px 40px;
    grid-gap: 5px;
}
.glf2-get-in-touch {
    max-width: 400px;
}

@media only screen and (max-width:470px){
    #glfv2-grid-1{
	grid-template-columns:100%!important;	
    }
    .cpcg1c-group1 a {
	grid-template-columns: 100%!important;
    }
}


/**
   Home
 **/
/*slider*/
#home-top-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    aspect-ratio: 1920/500;
}
#home-top-slider a{
    aspect-ratio: 1920/1080;
}
#home-top-slider img {
    min-width: 100%;
}
#hts-prev, #hts-next {
    position: absolute;
    top: calc(50% - 50px);
    background: black;
    width: 50px;
    height: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}
#hts-prev {
    left:50px;
}
#hts-next {
    right:50px;
}

/*about*/
#ha-grid {
    display: grid;
    /* grid-template-columns: 1fr 500px; */
    grid-template-columns: 500px 1fr;
    grid-gap: 30px;
}
#ha-1 {
    position: relative;
}
div#ha-2 {

}
.secton-vertical-text {
    position: absolute;
    top: 3%;
    left: -40px;
    transform: rotate(90deg);
    transform-origin: left;
    text-transform: uppercase;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
span.vt-line {
    border: 2px solid;
    width: 30px;
    margin-left: 10px;
}


/*services*/
#home-services {
    padding: 60px 0;
}
#home-services h2 {

}
.hsi-grid {
    display: grid;
}
.hsi-grid h3::after {
    content: "";
    display: block;
    border-bottom: 2px solid #000;
    max-width: 30px;
    margin: 20px auto;
}
#hs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}
.hsi-grid img {
    margin: auto;
}
#hs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    grid-gap: 60px;
}

#hs-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 30px;
}
.hsi-grid-v2 {
    display: grid;
    grid-template-columns: 85px 1fr;
    grid-gap: 20px;
    align-items:center;
}
.hsi-grid-v2 img {
    /* filter: brightness(0) invert(1); */
    max-width:85px;
}
.hsi-grid-v2-inner-1 {
    text-align: left;
}
.hsi-grid-v2-inner-1 > div {

}
.hsi-grid-v2-inner-1 > h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 400;
}

/*cta 1*/
#home-cta-1 {
    padding: 60px 0;
}
#hcta1-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    grid-gap: 30px;
}
#hcta1-item-1 {
    /* display: grid; */
    gap: 20px;
}

/*testimonials*/
#home-testimonials {
    background-position: top;
    background-attachment: fixed;
    padding-bottom:60px;
    padding-top:60px;
}
#home-testimonials h2 {
    /* margin-top: 60px; */
}
#ht-slides-wrapper {
    margin-top: 3%;
}
#ht-slides {
    max-width: 700px;
    margin: auto;
}
.ht-slides-v2{
    max-width:unset!important;
}
#home-testimonials > .container {
    display: flex;
    flex-direction: column;
}
.ht-i-inner-grid-1 {
    margin-top: 30px;
    display: grid;
    gap: 10px;
    grid-template-columns: 80px 1fr;
}
.htiig-title, .htiig-subtitle {
    display: block;
}
.htiig-title{
    font-weight:900;
    font-size:18px;
}
#home-testimonials h2, #home-testimonials p, #home-testimonials span, #home-testimonials div{
    color:#fff;
}

.ht-item-v2 {
    position: relative;
}
div#ht-slides-wrapper {
    max-width: 700px;
    margin: 30px auto 0;
}

.htiig-v2-inner-container-1 {
    /* margin-top: -60px; */
    background: white;
    border-radius: 15px;
    min-height: 160px;
    padding: 20px 20px 20px;
    position:relative;
}
.htiig-image-v2 {
    text-align: center;
    margin: auto;
    z-index: 999;
    position: relative;
}
.htiig-image-v2 img {
    display:unset;
}
.htiig-image-v2-wrapper {
    max-width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #ddd;
    overflow: hidden;
    margin: auto;
    border: 2px solid #ddd;
}
.htiig-v2-inner-container-1 .ht-i-inner-grid-1 {
    grid-template-columns: 100%!important;
    position: absolute;
    bottom: 20px;
}
span.htiig-title {
    margin-bottom: 10px;
}


/*latest news*/
.hln-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
#hlni-content {
    position: relative;
    padding: 20px 60px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.hlni-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.hlni-title * {
    font-size: 20px;
    font-weight: 900;
}
.hlni-more {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
#home-latest-news {
    padding: 0 0 60px 0;
}
.hlni-image img {
    height: auto!important;
}

div#hln-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

div#hlni-content-v2 {
    position:relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding-bottom:30px;
}
#home-page-view div#hlni-content-v2 {
    align-items: flex-start;
}
#home-page-view .hln-item-wrapper-v2 {
    background: #fff;
    padding: 10px;
}
#home-page-view .hlni-image {
    text-align: center;
}
#home-page-view .hln-item-v2 {
    padding-bottom: 40px;
}
#home-page-view .hlni-more {
    bottom: -25px;
}

#about-page-view div#hlni-content-v2 {
    align-items: flex-start;
}
#about-page-view .hln-item-wrapper-v2 {
    background: #fff;
    padding: 10px;
}
#about-page-view .hlni-image {
    text-align: center;
}
#about-page-view .hln-item-v2 {
    padding-bottom: 40px;
}
#about-page-view .hlni-more {
    bottom: -25px;
}

.hlni-inner-content-v2 {

}
.hlni-more {
    position: absolute;
    bottom: 10px;
    right: calc(50% - (95px / 2));
}
.hlni-image img {
    aspect-ratio: 1/1;
    border-radius: 15px;
}

/*certification and partners*/
div#certification-and-partners {
    padding: 60px 0;
}
#certification-and-partners h3 {
    font-size: 34px;
    margin-bottom: 30px;
}
#caa-slides img {
    aspect-ratio: 1/1;
    border-radius: 15px;
}

div#ls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.ls-g-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

/*packages carousel*/
div#packages-carousel {
    max-width: 100vw;
    overflow: hidden;
}

/*serving SA...*/
#locations-served h2 {
    margin-bottom: 30px;
}

@media only screen and (max-width:470px){
    #ha-grid, #hs-grid, #hcta1-grid, .hln-item, #ls-grid {
	display: grid!important;
	grid-template-columns: 100%!important;
    }
    .hlni-image img {
	height: auto!important;
    }
    div#hlni-content {
	padding: 0 0 60px 0!important;
    }
    #hts-prev {
	left: 10px;
    }
    #hts-next {
	right: 10px;
    }

    div#hs-grid-v2 {
	grid-template-columns: 100%!important;
    }

    div#hln-grid {
	grid-template-columns: 100%!important;
    }

    div#ls-grid {
	grid-row-gap: 30px;
    }

    #ht-slides-wrapper {
	max-width: 100%!important;
    }

    .htiig-v2-inner-container-1 {
	min-height: 375px;
    }
    
}

/**
   Blog
 **/
#top-image-wrapper {
    margin-bottom: 60px;
}
#page-top-image {
    position: relative;
}
#page-top-image img {
    min-width: 100%;
}
#top-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% - 50px);
}
#top-breadcrumb {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.4);
    display: flex;
    gap: 10px;
}
#top-text *, #top-breadcrumb *  {
    color: #fff;
}
#blv-outer-grid {

}
.blog-list-item {
    padding: 20px 20px 45px 20px;
    background: #eee;
    border-radius: 15px;
}
.bli-image-wrapper img {
    min-width: -webkit-fill-available;
}
.bli-content-wrapper {
    position: relative;
}
.bli-meta-wrapper {
    display: flex;
    gap: 10px;
}
.bli-title-wrapper * {
    font-size: 22px;
}
.bli-btn-wrapper {
    position: absolute;
    right: 10px;
    border: 2px solid;
}
#blv-paginate {
    padding: 20px 20px 60px;
}
#blv-paginate .pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.pagination .page_current {
    color: #a13238;
    font-weight: 900;
    border-color: #a13238;
}
.pagination * {
    border: 1px solid #000;
    padding: 7px;
}

.blvs-form-group input[type="search"] {
    padding: 14px;
    width: calc(100% - 52px);
}
.blvs-form-group button {
    width: 48px;
    height: 48px;
    background: #a13238;
    border: unset;
}
#blvsb-categories-wrapper {

}
#blvsb-categories-wrapper h2 {
    font-size: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}
.blv-category-item {
    margin-top: 15px;
}
.blv-category-item a {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
}

div#list-view-article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

@media only screen and (max-width:470px){
    .bli-image-wrapper img {
	height: auto!important;
    }
    #list-view-article-grid{
	grid-template-columns:100%!important;
    }
}

/**
   Blog - page view
 **/
#blog-page-view .bli-title-wrapper {
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
#blog-page-view .bli-content-wrapper {
    border: unset!important;
    padding: 20px!important;
}

/**
   Services (List View)
 **/
#video-with-text-wrapper {
    padding: 60px 0;
}
#vwt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
#vwt-video {
    border-radius: 15px;
    overflow: hidden;
}
.cta-1-btn-grid {
    display: flex;
    gap: 30px;
}
.faq-item {
    margin-bottom: 20px;
}
/* .faq-question {
   padding: 20px;
   border: 1px solid #000;
   cursor: pointer;
   } */

.faq-question {
    padding: 20px;
    /* border: 1px solid #000; */
    cursor: pointer;
    background: #eee;
    color: #000;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 12px;
    border:unset!important;
}
.faq-question.active {
    background: #a23136;
}
.faq-item span {
    color: #000;
}
.faq-question > span {
    color: #a13238;
}
.faq-question.active span {
    color: #fff;
}

span.drop-icon {
    transition: all 0.4s;
}
.faq-question.active span.drop-icon {
    transform: rotate(-89deg);
    transition: all 0.4s;
}

.faq-answer {
    padding: 20px;
}
#service-faq-wrapper {
    padding-bottom: 60px;
}

form#ssform {
    padding: 20px;
    background: #fafafa;
}
#sf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:30px;
}

#service-form-wrapper {
    padding: 60px 0;
}
form#ssform input, form#ssform select {
    padding: 20px;
}
#ssf-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
#ssf-grid-1 > .fg1 {
    display: grid;
    gap: 10px;
}
#pf-btn-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

#hcta1-item-2 {
    /* padding-top: 77px; */
}

/* .faq-item:nth-of-type(odd) {
   background: #eee;
   }
   .faq-item:nth-of-type(even) {
   background: #fff;
   } */

@media only screen and (max-width:470px){
    #vwt-grid {
	grid-template-columns: 100%!important;
    }
    div#top-breadcrumb {
	display: none!important;
    }
    .container .container {
	padding: unset!important;
    }
    #services-page-view #service-form-wrapper {
	padding-top: unset!important;
	margin-top: -30px;
    }
    #services-page-view #service-faq-wrapper {
	margin-top: 60px;
	padding-bottom: 30px!important;
    }
    div#ssf-grid-1 {
	grid-template-columns: 100%!important;
    }
}


/**
   Cars (list view)
 **/
/*general styles*/
.cic-title h2 {
    font-size: 20px;
}
span.cicm1 {
    color: #7b7b7b;
}
.cic-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
span.cic-price1 {
    font-size: 24px;
    color: #e85800;
}

#items-sort-bar {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}
select#isb-select-elem {
    padding: 10px;
}
#isb-grid-list-group {
    display: flex;
    gap: 10px;
}
.isbglg-item {
    padding: 10px;
    border: 1px solid;
    cursor: pointer;
}

/*list layout styles*/
.list-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}
.list-layout .cars-item-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 30px;
}
.list-layout .ci-content {
    position: relative;
}
.list-layout .cic-title {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 8px;
}
.list-layout .cicm-group2 {
    position: absolute;
    right: 10px;
    top: 50%;
}

/*grid layout styles*/

/*side bar items*/
#cars-list-view #blvsb-categories-wrapper {
    margin-top: 30px;
}
#cars-refine-search {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
#cars-refine-search select {
    width: 100%;
    padding: 20px 10px;
}
#crf-price-range-group {
    display: flex;
    gap: 10px;
}
#crfp-min, #crfp-max {
    width: 40px;
    height: 40px;
    border: 1px solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
}
input#price {
    width: 100%;
}
#crfp-min::before, #crfp-max::before {
    content: "R";
}

@media only screen and (max-width:470px){
    #blv-outer-grid, .list-layout .cars-item-wrapper {
	grid-template-columns: 100%!important;
    }
    #blv-outer-grid #side-bar-wrapper {
	grid-row: 1/2;
    }
    #cars-refine-search select {
	border: unset!important;
    }
    span#isbni-text {
	font-size: 12px;
    }
}


/**
   Cars page view
 **/
#cars-page-view #blv-outer-grid {
    grid-template-columns: 800px 1fr;
}
#cg-main-slider {
    position: relative;
}

#cgms-prev, #cgms-next {
    position: absolute;
    top: 50%;
    border: 1px solid;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    cursor:pointer;
}
#cgms-prev{
    left:-20px;
}
#cgms-next{
    right:-20px;
}

#cg-second-slider {
    padding: 30px 0;
}

#ct-tabs {
    display: flex;
    gap: 30px;
    margin-bottom:30px;
    margin-top:30px;
    
}

#ct-tab-content {
    margin-bottom: 60px;
}
.car-tab-content h2, #enquire-form-cars h2 {
    font-size: 22px;
}

#enquire-form-cars {
    margin-top: 30px;
    /* padding-top: 30px; */
}
#efc-form input, #efc-form textarea {
    padding: 20px 10px;
    width: calc(100% - (10px * 2));
}
form#efc-form {
    display: grid;
    gap: 30px;
}
#efcf-grid-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}
div#efcf-grid-2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 20px;
}

#car-single-sidebar-meta {
    border: 1px solid #eee;
    padding: 20px;
}
#car-single-sidebar-meta h2 {
    font-size: 22px;
}
.cssm-group1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}
.cssm-group2 {
    border: 1px solid #eee;
    margin: 0 -20px -20px;
    padding: 20px;
}
.cssm-group2 {
    border: 1px solid #eee;
    margin: 0 -20px -20px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.cssmg1-2, .cssmg3-2 {
    color: #ff8201;
}
a#car-sidebar-book-now {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}
a#car-sidebar-book-now {
    margin-top: 30px;
    width: -webkit-fill-available;
    text-align: center;
}
.car-tab:not(.active) {
    border-color: grey;
    color: grey;
}
#cg-second-slider img {
    height: auto!important;
}

@media only screen and (max-width:470px){
    div#ct-tabs {
	flex-direction: column;
	align-items: center;
    }
    #cg-main-slider img {
	height: auto!important;
    }
    #top-text {
	top: calc(50% - 45px)!important;
    }
    #top-text * {
	width: 90vw;
	margin: auto;
	text-align: center;
	font-size: 24px;
    }
    #glht-ci, #glht-grid {
	align-items: center;
    }
}

/**
   About us
 **/
#about-page-view #service-form {
    margin: 60px 0;
}
#service-form h2 {
    font-size: 24px;
}
#sf-1 {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

#scb-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#scbtb-group1 {
    display: flex;
    gap: 10px;
}
#scbtb-group1 .btn-1:not(.active) {
    border-color: grey;
    color: grey;
}
#select-car-by-wrapper {
    margin: 60px 0;
}

#testimonials-and-news-row #home-testimonials h2,
#testimonials-and-news-row #home-testimonials p,
#testimonials-and-news-row #home-testimonials span,
#testimonials-and-news-row #home-testimonials div {
    color: unset;
}

#testimonials-and-news-row {
    display: grid;
    grid-template-columns: 550px 550px;
    grid-gap: 30px;
    padding-top: 30px;
}
#testimonials-and-news-row #hlni-content {
    padding: unset;
}
#testimonials-and-news-row .hlni-inner-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#testimonials-and-news-row .hlni-more {
    position: unset;
    margin-top: 10px;
}
#testimonials-and-news-row #home-testimonials {
    height: auto;
}
#logo-carousel {
    padding: 60px;
    background: #fafafa;
}

div#select-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
.ssg-item {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    margin: auto;
}
.ssg-item img{
    max-width:100%;
}


@media only screen and (max-width:470px){
    #page-top-image img {
	height: auto!important;
	min-height: 175px;
    }
    #sf-grid, #testimonials-and-news-row, #select-service-grid {
	grid-template-columns: 100%!important;
    }
    div#scb-top-bar {
	flex-direction: column;
    }
    form#ssform input, form#ssform select {
	padding: 20px;
	border: unset!important;
    }
    div#pf-btn-group {
	flex-direction: column;
    }
}

/**
   Contact us page
 **/
div#ef-grid-1 {
    display: grid;
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
    grid-gap: 10px;
}
div#enquire-form {
    padding: 10px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
}
#e-form input, #e-form select {
    height: 54px;
    border-radius: 15px;
    border: 1px solid black;
    padding-left: 10px;
}
#e-form textarea{
    height:200px;
    border-radius: 15px;
}
#e-form textarea {
    height: 200px;
    border-radius: 15px;
    width: calc(100% - 10px);
    margin-top: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

/* .location-entry-wrapper:nth-of-type(odd) {
   background: #eee;
   } */
.le-grid-1 {
    display: grid;
    grid-template-columns: 300px 1fr;
    padding: 30px 0;
}
.le-map-wrapper {
    width: 100%;
    height: 300px;
}
.leg-grid-1 {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 10px;
    grid-gap: 10px;
}

#loc2, #loc3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap:30px;
    margin-bottom:60px;
}
.loc2card {
    border-radius: 15px;
    padding: 20px 30px 30px 30px;
}

div#sfg1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
div#sfg2 {
    display: flex;
    gap: 10px;
}
.sfg3 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap:10px;
}
.sfg3 input {
    width: 13px!important;
}
form#efc-form {
    background: #fff;
    padding: 15px;
}

@media only screen and (max-width:470px){
    div#ef-grid-1, .le-grid-1, #loc2, #loc3 {
	grid-template-columns: 100%!important;
    }
    div#sfg1 {
	flex-direction: column;
	margin-bottom: 30px;
    }
}

/**
   Video Hub
 ***/
#video-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
select#vh-filter {
    border: 1px solid #000;
    padding: 10px 20px;
    font-size: 18px;
}
@media only screen and (max-width:470px){
    #video-hub-grid {
	grid-template-columns: 100%!important;
    }
}

/***
   Packages (list page)
 ***/
.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 10px 20px 40px;
    border-bottom-left-radius: 45px;
    background: #a23136;
}
.package-badge *{color:#fff;}
#packages-list-view .bli-image-wrapper {
    position: relative;
}
#packages-list-view .bli-btn-wrapper {
    min-width: -webkit-fill-available;
}
#packages-list-view h2, .package-kw, .package-price {
    margin: 3px 0;
}
p.package-price.red-text {
    font-size: 22px;
    font-weight: 900;
}
#packages-list-view .bli-content-wrapper {
    position: relative;
    padding-bottom: 30px;
}
#packages-list-view .bli-btn-wrapper {
    bottom: -25px;
}
#packages-list-view div#blvsb-search-wrapper {
    margin-bottom: 30px;
}
/**
   Packages - page view
 **/
#packages-page-view .bli-image-wrapper {
    max-width: 500px;
    margin: auto;
}
#packages-page-view .package-kw, #packages-page-view .package-price span {
    font-size: 20px!important;
}
/**
   Solutions -page view
 **/
div#pic-with-text-wrapper {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-gap: 30px;
}
div#text-below-pic-wrapper {
    display: grid;
    grid-template-columns: 70% 1fr;
}
div#solution-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

@media only screen and (max-width:470px){
    div#pic-with-text-wrapper {
	grid-template-columns: 100%!important;
    }
    div#text-below-pic-wrapper {
	grid-template-columns: 100%!important;
	grid-row-gap: 30px;
    }
}

/**
   News - list view
 **/
#news-list-view .bli-btn-wrapper.btn-purple {
    width: -webkit-fill-available;
    bottom: -50px;
}
#news-list-view .blog-list-item {
    padding-bottom: 60px;
}
#news-list-view .bli-content-wrapper h2 {
    margin: 5px 0 -10px 0;
}

/**
   News - page view
 **/
#news-page-view div#list-view-article-grid {
    display: flex;
    flex-direction: column;
}
#news-page-view .bli-image-wrapper {
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
}

/**
   Videos - list view
 **/
#videos-list-view .bli-btn-wrapper.btn-purple {
    width: -webkit-fill-available;
    bottom: -50px;
}
#videos-list-view .blog-list-item {
    padding-bottom: 60px;
}
#videos-list-view .bli-content-wrapper h2 {
    margin: 5px 0 -10px 0;
}

/**
   Videos - page view
 **/
#videos-page-view div#list-view-article-grid {
    display: flex;
    flex-direction: column;
}
#videos-page-view .videos-vid-wrapper {
    margin-bottom: 30px;
}

/**
   Installers
 **/
.if-grid1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-bottom: 30px;
}
form#installers-form {
    padding: 20px;
    background: #fff;
    margin-bottom: 60px;
}
p.ifg2-line-1 {
    font-weight: 900;
    font-size: 18px;
    margin: 0;
}
p.ifg2-line-2 {
    margin: 0 0 20px 0;
    font-size: 14px;
}

.installer-ref {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-gap:30px;
    margin-bottom: 15px;
}
.ref-no {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 10px;
    background: #111;
    color: #fff;
    border-radius: 50%;
}
.ref-input {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}
#installers-form h2 {
    margin-bottom: 30px;
    margin-top: 30px;
}
#installers-form input:not(input[type="file"]) {
    padding: 20px 10px;
    width: calc(100% - (10px * 2));
}
div#add-refs {
    margin-top: 30px;
}

@media only screen and (max-width:470px){
    .if-grid1, .installer-ref {
	grid-template-columns: 100%!important;
    }
    .ref-no {
	max-width: 50px;
	text-align: center;
	margin: auto;
    }
}

/**
   info pages
 **/
div#info-page-view {
    padding: 60px 0;
}


/*general important overrides...*/
.secton-vertical-text {
    display: none;
}

/***
   Important styles; keep at bottom of file!
 ***/
ul{
    list-style-type: none!important;
}
li{
    padding-left:30px;
    background-image: url('https://dev1.masterdev.co.za/inc/image/bullet.svg');
    background-repeat: no-repeat;
    background-size: 15px;
}

:root {
    color-scheme: light only;
}

/*plans*/
div#plans-btn-group {
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding-top: 30px;
}
