@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Space+Grotesk:wght@700&display=swap');
/* FONTAWESOME */

:root {
	--primary-font:'Poppins', sans-serif;
	--secondary-font:'Space Grotesk', sans-serif;
	--font-light:300;
	--font-normal:400;
	--font-medium:500;
	--font-semibold:600;
	--font-bold:700;
	--primary-color:#48eb32;
	--secondary-color:#EC8319;
	--tertiary-color:#F0F8F9;
	--forth-color:#181A1D;
    --light-grey-color:#9b9b9b;
    --grey-color:#5E5E5E;
    --dark-grey-color:#363636;
    --dark-color:#262626;
    --black-color:#000000;
    --white-color:#FFFFFF;
    --primary-transition:all ease-in-out 0.35s;
    --duration: .7s;  
}

* {
  scrollbar-color: #3F51B5 var(--light-grey-color);
  scrollbar-width: thin;
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--light-grey-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

body {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: var(--font-normal);
    color: var(--grey-color);
    background: var(--white-color);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color)
}

a, a:hover {
    text-decoration: none;
}

ul li, ol li {
    list-style: none;
}
.general-content ol li {
    list-style: decimal;
}
.general-content ul li {
    list-style: disc;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.nowrap {
    white-space: nowrap;
}
.overflow-hidden {
    overflow: hidden;
}
.primary-radius {
    border-radius: 10px;
}
.letter-spacing-2 {
    letter-spacing: 2px;
}
.letter-spacing-3 {
    letter-spacing: 3px;
}
.letter-spacing-4 {
    letter-spacing: 4px;
}
.letter-spacing-5 {
    letter-spacing: 5px;
}
.w-auto {
    width: auto!important;
}
h1,h2,h3,h4,h5 {
    font-family: var(--secondary-font);
    line-height: 1.5;
}
h1 {    
    font-size: 3.5rem;
}

h2,
h1.section-title,
h2.section-title {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
.section-title {
    margin-bottom: 30px;
}
.font24 {
    font-size: 1.5rem;
}

.section-ptb {
    padding-top: 85px;
    padding-bottom: 85px;
}

/* SLICK SLIDER BUTTONS */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white-color);
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}
.slick-prev:before,
.slick-next:before {
    color: var(--dark-color);
    font-size: 0.75rem;
}
.slick-prev {
    left: -55px;
}
.slick-next {
    right: -55px;
}
.slick-prev:before,
.slick-next:before {
    width: 6px;
    height: 10px;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}
.slick-prev:before {
    content: '';
    background: url(../images/arrow-prev.svg) no-repeat center center;
}
.slick-next:before {
    content: '';
    background: url(../images/arrow-next.svg) no-repeat center center;
}
.slick-dots {
    padding-top: 20px;
}
.slick-dots li {
    margin: 0;
}
.slick-dots li button:before {
    content: '';
    font-size: 0;
    width: 8px;
    height: 8px;
    background-color: #D8E2E3;
    border-radius: 50%;
    display: block;
    opacity: 1;
}
.slick-dots li button:before {
    color: #1f2b54;
}
.slick-dots li.slick-active button:before {
    background-color: #1f2b54;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: var(--white-color);
    background: var(--secondary-color);
}

main {
    overflow: hidden;
}

/* ===================== START FONT WEIGHT ELEMENT ======================== */
.font-light
{
    font-weight: var(--font-light);
}
.font-normal
{
    font-weight: var(--font-normal);
}
.font-medium{
    font-weight: var(--font-medium);
}
b, strong {
    font-weight: var(--font-bold);
}
/* ===================== END FONT WEIGHT ELEMENT ======================== */

/* ===================== START COLORS ELEMENT ======================== */
/* PRIMARY COLORS ELEMENT */
/* TEXT COLOR */
.primary-color 
{
    color: var(--primary-color);
}
/* SECONDARY COLORS ELEMENT */
.secondary-color 
{
    color: var(--secondary-color);
}
/* TERTIARY COLORS ELEMENT */
.tertiary-color 
{
    color: var(--tertiary-color);
}
/* FORTH COLORS ELEMENT */
.forth-color 
{
    color: var(--forth-color);
}
/* DARK COLORS ELEMENT */
.light-grey-color 
{
    color: var(--light-grey-color);
}
/* DARK GREY COLORS ELEMENT */
.dark-grey-color 
{
    color: var(--dark-grey-color);
}
/* GREY COLORS ELEMENT */
.grey-color 
{
    color: var(--grey-color);
}
/* DARK COLORS ELEMENT */
.dark-color{
    color: var(--dark-color);
}
/* WHITE COLORS ELEMENT */
.white-color,
.primary-btn
{
    color: var(--white-color);
}

/* BACKGROUND COLOR*/
.primary-bg,
.primary-btn
{
    background-color: #6CCBE1;
}
/* SECONDARY COLORS ELEMENT */
.secondary-bg,
.secondary-btn 
{
    background-color: #6082A5;
}
/* TERTIARY COLORS ELEMENT */
.tertiary-bg
{
    background-color: var(--tertiary-color);
}
/* DARK COLORS ELEMENT */
.dark-bg 
{
    background-color: #000837;
}
/* DARK COLORS ELEMENT */
.light-grey-bg 
{
    background-color: var(--light-grey-color);
}
/* DARK COLORS ELEMENT */
.grey-bg 
{
    background-color: var(--grey-color);
}
/* WHITE COLORS ELEMENT */
.white-bg 
{
    background-color: var(--white-color);
}
.black-bg 
{
    background-color: var(--black-color);
}
/* ===================== END COLORS ELEMENT ======================== */

/* BUTTON */
.btn {
    position: relative;
    border-radius: 0;
    font-size: 0.875rem;
    padding: 11px 20px;
    min-width: 124px;
    transition: var(--primary-transition);
}
.btn::after,
.btn::after {
    content: '';
    background: url(../images/btn-arrow.svg) no-repeat;
    width: 17px;
    height: 12px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: var(--primary-transition);
}
.btn:hover {
    padding: 11px 30px 11px 10px;
}
.btn:hover::after,
.btn:hover::after {
    right: 8px;
    opacity: 1;
    visibility: visible;
}
.btn-border {
    border: 1px solid;
}
.primary-btncolor {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.primary-btncolor:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}
.secondary-btncolor {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.secondary-btncolor:hover {
    color: var(--white-color);
    background-color: var(--secondary-color);
}
.btn-primarybg {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.btn-primarybg:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.btn-secondarybg {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.btn-secondarybg:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

/* SOCIAL */
.social-list li {
    margin-right: 20px;
}
.social-list a {
    background-color: #2A67B8;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.875rem;
}
/* FORM */
.form-control {
    font-size: 0.75rem;
    color: var(--dark-color);
    border: 0;
    border-radius: 0;
    padding: 16px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px #20373A15;
    background-color: var(--white-color);
}
.form-control:focus {
    border-color: transparent;
    box-shadow: 0 2px 6px #20373A40;
}
input[type="submit"] {
    border: none;
    color: var(--white-color);
    padding: 15px 32px 15px 15px;
    cursor: pointer;
    font-size: 0.875rem;
    min-width: 145px;
    border-radius: 0;
    text-align: center;
    background-image: url(../images/long-arrow.svg);
    background-position: right 15px top 50%;
    background-repeat: no-repeat;
    transition: var(--primary-transition);
}
input[type="submit"].primary-bg {
    background-color: var(--primary-color);
}
input[type="submit"].primary-bg:hover {
    background-color: var(--secondary-color);
}
input[type="submit"].secondary-bg {
    background-color: var(--secondary-color);
}
input[type="submit"].secondary-bg:hover {
    background-color: var(--primary-color);
}

.fancybox-content {
    padding: 24px;
}

.polygon {
    position: absolute;
    width: 622px;
    height: 597px;
    display: block;
    background: url(../images/polygon-img.webp) no-repeat;
    background-size: contain!important;
    opacity: 0.2;
    z-index: -1;
}

.hover {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
}
.overlay-link {
    position: relative;
    overflow: hidden;
}

/* RIGHT FLOATING ELEMENTS */
.floating-btn-right-sec {
    position: fixed;
    z-index: 9;
}
.floating-btn-right-sec a {
    position: relative;
    display: flex;
    align-items: center;
    transition: var(--primary-transition);
}
.floating-btn-right-sec a .icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-bg {
    background-color: #57CA65;
}
.floating-btn-right-sec a span {
    white-space: nowrap;
}

/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    /* background-color: #3F51B5; */
    z-index: 9;
    background: #f7f9ff;
}
.main-header .logo img {
    max-height: 64px;
}
.main-navigation ul {
    margin: 0;
    padding: 0;
}
.main-navigation > .menu {
    display: flex;
}
.main-navigation > .menu > li {
    margin-right: 25px;
}
.main-navigation li a {
    font-size: 0.875rem;
    color: #1b1919;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}
.main-navigation>ul>li>a {
    padding: 32px 0;
}
.main-navigation>ul>li>a::before, .main-navigation>ul>li>a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    top: 100%;
    left: 0;
    pointer-events: none;
}
.main-navigation>ul>li>a::before {
    height: 2px;
    top: calc(100% - 2px);
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.main-navigation>ul>li>a::after {
    content: attr(data-text);
    color: var(--secondary-color);
    height: 100%;
    top: 0;
    background: none;
    transform-origin: 100% 50%;
    transform: translate3d(150%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
    padding: 32px 0;
}
.main-navigation li a span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.main-navigation li:hover a::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
.main-navigation li:hover  a span {
    transform: translate3d(-150%, 0, 0);
}
.main-navigation li:hover a::after {
    transform: translate3d(0, 0, 0);
}
.top-contact {
    font-weight: var(--font-semibold);
}
.top-contact i {
    background-color: #2A67B8;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.875rem;
    line-height: 28px;
    text-align: center;
}
.top-contact small {
    font-size: 0.75rem;
    font-weight: var(--font-normal);
}


/* Hero section */
.main-banner,.home-banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home-banner {
    height: calc(100vh - 84px);
}
.video-banner video {
    object-fit: cover;
}
.home-banner .banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.main-banner .slider-widget {
    width: 100%;
}
.swiper-slide { 
    position: relative;
    overflow: hidden;
}
.swiper-slide img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    height: 100%;
}
.swiper-slide-inner {
    position: relative;
    height: 100%;
}
.swiper-slide-inner::after,
.inner-banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: rgb(0,0,0); */
    /* background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); */
    top: 0;
    left: 0;
    opacity: 0.6;
}
.banner-slider .paging-wrap {
    position: absolute;    
    padding: 0 12px;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0 auto;
    text-align: left;
    z-index: 1;
    color: var(--white-color);
    font-size: 0.875rem;
    font-weight: var(--font-bold);
}
.banner-slider .swiper-pagination {
    position: relative;
    margin: 0 8px;
    max-width: 120px;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color,var(--white-color));
}

.hero-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: left;
    z-index: 1;
}

.hero-text .banner-title {
    font-family: var(--secondary-font);
    font-size: 3.5rem;
    font-weight: var(--font-bold);
    color: var(--white-color);
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 15px;
}
.home-banner.video .hero-text .banner-title {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-text .btn {
    font-size: 1rem;
    padding: 13px 28px;
}
.hero-text .btn:hover {
    font-size: 1rem;
    padding: 13px 36px 13px 20px;
}

/* Why Roofsol Section */
.why-roofsol {
    position: relative;
    background: var(--tertiary-color) url(../images/polygon-primary.webp) no-repeat left -479px top -320px;
    overflow: hidden;
}
.why-roofsol .polygon {
    right: -200px;
    bottom: -80px;
    background: url(../images/polygon-primary.webp) no-repeat;
    opacity: 0.8;
}
.feature-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.feature-box {
    position: relative;
    padding: 50px;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #d9ebf7;
}
.feature-box h3 {
    font-family: var(--primary-font);
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    margin: 15px 0 0 0;
    color: #181717;
}
.feature-items .feature-box:hover::after {
  height: 100%;   
  
}
.feature-items .feature-box:hover h3 {
   color: #fff; 
}
.feature-items .feature-box::after {
   content: '';
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0; 
    border-radius: 10px;
   background: #0c6dbb; 
   transition: var(--primary-transition);
   display: block;
    transition: var(--primary-transition);
    z-index: -1;
}
.why-roofsol h4 {
    font-family: var(--primary-font);
}

/* Our Services Section */
.our-services {
    background: url(../images/service-bg.webp) no-repeat center bottom;
    background-size: cover;
    clip-path: polygon(100% 0, 100% calc(100% - 90px), 50% 100%, 0 calc(100% - 90px), 0 0);
    padding-top: 85px;
    padding-bottom: 150px;
    margin-bottom: -90px;
}
.service-items .slick-list {
    margin: 0 -15px;
}
.our-services .slick-dots{
    display: none!important;
}
.service-box {
    box-shadow: 0 10px 12px rgba(0,0,0,0.12);
    margin: 5px 0px 25px;
    min-height: 510px;
    background-color: var(--white-color);
    overflow: hidden;
}
.service-box img {
    height: 270px;
    object-fit: cover;
    transition: all ease-in-out 1s;
}
.service-box:hover img {
    transform: scale(1.2);
}
.service-box img + div {
    position: relative;
    z-index: 1;
    background-color: var(--white-color);
}
.service-box a {
    font-size: 1rem;
    font-family: var(--primary-font);
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    transition: var(--primary-transition);
}
.service-box a:hover {
    color: var(--secondary-color);
}
.service-items .service-box .info {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

/* Projects Section */
.projects {
    position: relative;
    background: var(--forth-color) url(../images/project-bg.webp) center bottom no-repeat;
    background-size: 100% 50%;
    clip-path: polygon(50% 90px, 100% 0, 100% 100%, 0 100%, 0 0);
    padding-top: 150px;
    padding-bottom: 85px;
}
.projects .polygon {
    left: -200px;
    top: -80px;
}
.projects .section-title,
.projects p {
    position: relative;
    z-index: 1;
}
.projects:before {
    content: '';
    position: absolute;
    background: var(--forth-color);
    width: 100%;
    height: 100%;
    opacity: 0.8;
    left: 0;
    bottom: 0;
}
.projects::after,
.enquire-section::after {
    content: '';
    position: absolute;
    background-color: #03A9F4;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 50%);
    width: 30%;
    height: 90px;
    right: 0;
    top: 0;
}
.project-items .project-box {
    margin: 0 20px;
    background-color: var(--dark-color);
    overflow: hidden;
}
.project-items .project-box img {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    opacity: 1;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}
.project-items .project-box:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
}
.project-box {
    position: relative;
    display: block;
}
.project-box .content {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.6138830532212884) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.project-box .content h3 {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    font-weight: var(--font-medium);
}
.project-box .content .address span {
    margin-right: 10px;
}
.project-box .content h3,
.project-box .content .address {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    max-width: calc(100% - 58px);
}
.project-box .content .address {
    transition-delay: 0.1s;
}
.project-box:hover .content h3 {
    -webkit-transform: translate3d(0, 7px, 0);
    transform: translate3d(0, 7px, 0);
    color: var(--secondary-color);
}
.project-box:hover .content .address {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}
.project-box .content::after {
    content: '';
    width: 0px;
    height: 52px;
    background: var(--primary-color) url(../images/long-arrow.svg) no-repeat center center;
    display: block;
    position: absolute;
    right: 48px;
    bottom: 48px;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
    opacity: 0;

}
.project-box:hover .content::after {
    width: 52px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}


/* Testimonials Section */
.testimonials {
    position: relative;
    background: url(../images/testimonial-bg.webp) no-repeat center bottom;
    background-size: cover;
    clip-path: polygon(100% 0, 100% calc(100% - 90px), 50% 100%, 0 calc(100% - 90px), 0 0);
    padding-top: 85px;
    padding-bottom: 150px;
    margin-bottom: -90px;
}
.testimonials::before {
    content: '';
    position: absolute;
    background: #000a47;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.88;
}
.testimonials .container {
    z-index: 1;
}
.testimonials .quote-icon {
    position: absolute;
    width: 246px;
    height: 219px;
    display: block;
    left: 0;
    top: 0;
}
.testimonials .slider-nav .slick-slide:not(.slick-active) {
    opacity: 0;
    visibility: hidden;
}
.testimonials .slider-nav .slick-slide:not(.slick-current) img {
    transform: scale(0.5);
    opacity: 0.7;
}
.testimonials .slider-nav .slick-slide:not(.slick-current) .author-dtls {
    display: none;
}
.testimonials .slider-nav .slick-slide img {
    margin: 0 auto;
}
.testimonials .slider-nav .slick-slide .author-dtls {
    margin-top: 13px;
}
.testimonials .slider-single .testi-cont {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: var(--font-light);
    max-width: 850px;
    margin: 0 auto 30px;
}
/* .testimonials .slider-nav .slick-slide.slick-active:not(.slick-current) img {
    float: right;
    margin-right: -37%;
}
.testimonials .slider-nav .slick-current + .slick-active:not(.slick-current) img {
    float: left;
    margin-left: -37%;
} */

.clients {
    position: relative;
    background: var(--tertiary-color);
    background-size: 100% 50%;
    /* clip-path: polygon(50% 90px, 100% 0, 100% 100%, 0 100%, 0 0); */
    padding-top: 88px;
    padding-bottom: 85px;
}
.clients::after,
.domestic-section::after {
    content: '';
    position: absolute;
    /* background-color: var(--secondary-color); */
    /* clip-path: polygon(0 0, 100% 0%, 100% 50%, 0 100%); */
    width: 30%;
    height: 90px;
    left: 0;
    top: 0;
}
.technology-partners {
    position: relative;
    background: var(--white-color);
    /* clip-path: polygon(100% 0, 100% calc(100% - 90px), 50% 100%, 0 calc(100% - 90px), 0 0); */
    padding-top: 85px;
    padding-bottom: 67px;
    margin-bottom: -90px;
}
.awards {
    position: relative;
    background: url(../images/awards-bg.webp) no-repeat center bottom;
    background-size: cover;
    clip-path: polygon(50% 90px, 100% 0, 100% 100%, 0 100%, 0 0);
    padding-top: 83px;
    padding-bottom: 85px;
}
.awards::after {
    content: '';
    position: absolute;
    /* background-color: var(--secondary-color); */
    /* clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 50%); */
    width: 30%;
    height: 90px;
    right: 0;
    top: 0;
}
.client-items .slick-slide,
.tech-partners .slick-slide {
    margin: 15px;
}
.client-items,
.tech-partners {
    margin: 0 -15px;
}
.clientbox {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}
.clientbox img,
.certificate-box img {
    transition: all ease-in-out 1s;
}
.clientbox:hover img,
.certificate-box:hover img {
    transform: scale(1.2);
}
.certificates {
    margin: 0 -15px;
}
.certificates .slick-slide {
    padding: 0 15px 20px;
}
.certificates .slick-slide img {
    width: 100%;
}
.certificate-box {
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    overflow: hidden;
}
.bottom-common-section {
    position: relative;
    z-index: 1;
    background: #00BCD4;
    background: linear-gradient(90deg, #6CCBE1 64%, #6082A5 64%);
}
.bottom-common-section .container::before {
    content: '';
    position: absolute;
    background-color: var(--white-color);
    clip-path: polygon(40px 0, 87px 50%, 40px 100%, 0 100%, 54px 50%, 0 0);
    width: 87px;
    height: 100%;
    left: 55.6%;
    top: 0;
    display: block;
}
.bottom-common-section .left-col,
.bottom-common-section .right-col  {
    padding-top: 50px;
    padding-bottom: 50px;
}
.bottom-common-section .right-col  {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 51px 50%);
}
.bottom-common-section .phone {
    padding-left: 75px;
    position: relative;
    z-index: 1;
}
.bottom-common-section .phone a  {
    font-family: var(--secondary-font);
    font-size: 2rem;
    font-weight: var(--font-medium);
}
.bottom-common-section .phone a:hover  {
    color: var(--white-color);
}
.bottom-common-section .phone::before {
    content: '';
    width: 56px;
    height: 56px;
    background: var(--white-color) url(../images/phone-icon.svg) no-repeat center center;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid #f4b576;
}
.bottom-common-section .right-col::before,
.bottom-common-section .right-col::after {
    content: '';
    width: 50%;
    height: 100%;
    background-color: #000;
    position: absolute;
    display: block;
    top: 0;
    background: rgb(236,131,25);
    background: linear-gradient(90deg, #6082A5 0%, #6082A5 100%);
    clip-path: polygon(0% 0%, 70% 0%, 100% 50%, 70% 100%, 0% 100%);
}
.bottom-common-section .right-col::before {
    left: 0;
}
.bottom-common-section .right-col::after {
    left: 50%;
}
.main-footer,
.main-footer a:not(.primary-color),
.main-footer p {
    color: #f4f4f4;
    font-size: 0.875rem;
    font-weight: var(--font-light);
}
.main-footer a {
    transition: all ease-in-out 0.35s;
}
.main-footer a:hover {
    color: var(--secondary-color);
}
.main-footer .footer-top {
    padding: 75px 0 40px;
    overflow: hidden;
}
.main-footer .footer-top .polygon {
    position: absolute;
    width: 492px;
    left: -200px;
    bottom: -370px;
}
.main-footer .footer-top ul li {
    margin-bottom: 6px;
}
.footer-title {
    font-family: var(--secondary-font);
    font-weight: var(--primary-font);
}
.footer-menu {
    column-count: 1;
}
.ft-contact {
    display: grid;
    grid-template-columns: 30px calc(100% - 30px);
}
.footer-top .logo {
    max-width: 185px;
}
ul.socials {
    position: relative;
    z-index: 2;
}
.socials li {
    margin-right: 15px;
}
.socials a {
    background-color: var(--grey-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom {
    background-color: #020a3c;
}
.footer-bottom ul li:not(:last-child)::after {
    content: '|';
    margin: 0 8px;
}
.impact-roofsol:not(.to-bottom) {
    z-index: 1;
    padding: 110px 0 80px;
}
.impact-roofsol.to-bottom {
    z-index: 1;
    padding: 80px 0 160px;
    background-color: var(--tertiary-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 80px), 0 100%);
}
.impact-roofsol.to-bottom::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
    width: 28%;
    height: 90px;
    right: 0;
    bottom: 0;
}
.impact-roofsol:not(.to-bottom)::before {
    content: '';
    position: absolute;
    background-color: var(--tertiary-color);
    width: 100%;
    height: 100%;
    display: block;
    clip-path: polygon(0 80px, 50% 0, 100% 80px, 100% 100%, 0% 100%);
    z-index: -1;
    left: 0;
    top:0;    
}
.impact-roofsol:not(.to-bottom)::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 100% calc(100% - 45px), 100% calc(100% - 45px), 0 calc(100% - 10px));
    width: 22%;
    height: 90px;
    left: 0;
    top: 0;
}
.impact-roofsol.to-right::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    clip-path: polygon(0 42%, 100% 100%, 100% 0);
    width: 30%;
    height: 78px;
    right: 0;
    top: 0;
    left: auto;
}
.impact-element {
    position: relative;
    display: grid;
    grid-template-columns: 100px calc(100% - 100px);
}
.impact-element svg {
    position: absolute;
    left: 5px;
    top: -8px;
}
.impact-element .icon {
    background-color: var(--primary-color);
    width: 78px;
    height: 69px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.impact-element .cont h3 {
    font-size: 1.25rem;
}
.mission-vision .mv-element .inner-content {
    max-width: calc(100% - 30%);
    /* padding-right: 100px; */
}
.mission-vision .right-img {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 600px;
    max-width: 600px;
    height: 100%;
    object-fit: cover;
}
.journey-element .year {
    position: relative;
    background: rgb(51, 176, 184);
    background: linear-gradient(59deg, rgba(51, 176, 184, 1) 50%, rgba(236, 131, 25, 1) 50%);
    width: 130px;
    height: 110px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    margin: 0 auto 30px;
    display: table;
}
.journey-element .year::before {
    content: '';
    position: absolute;
    background: var(--white-color);
    width: 112px;
    height: 92px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    left: 9px;
    top: 9px;
    display: block;
}
.journey-element .year span {
    content: '';
    position: absolute;
    background: var(--primary-color);
    width: 94px;
    height: 78px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    left: 18px;
    top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-family: var(--secondary-font);
    font-size: 1.25rem;
}
.journey-element::before {
    content: '';
    width: 100%;
    height: 0;
    border-bottom: 1px dotted var(--dark-color);
    position: absolute;
    top: 54px;
}
.journey-element .info ul {
    list-style: none;
    padding: 15px;
    margin: 0;
    counter-reset: my-sec-counter;
}
.journey-element .info ul li::before {
    counter-increment: my-sec-counter;
    content: counter(my-sec-counter) ".";
    /* background-color: var(--primary-color); */
    color: var(--primary-color);
    width: 16px;
    height: 16px;
    font-size: 0.875rem;
    font-weight: var(--font-medium);
    position: absolute;
    left: 0;
    top: 2px;
}
.journey-element .info ul li {
    position: relative;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 10px;
}
.journey .slick-prev,
.journey .slick-next {
    top: 52px;
    box-shadow: none;
    border: 1px solid var(--dark-color);
}
.journey .slick-prev {
    left: -40px;
}
.journey .slick-next {
    right: -40px;
}
.philosophy-section {
    position: relative;
    /* background: var(--forth-color) url(../images/about-our-philosophy-bg.webp) left top no-repeat; */
    background-size: 100% 50%;
    clip-path: polygon(50% 90px, 100% 0, 100% 100%, 0 100%, 0 0);
    padding-top: 150px;
    padding-bottom: 85px;
}
.philosophy-section .polygon {
    right: -200px;
    bottom: -80px;
}
.philosophy-section:before {
    content: '';
    position: absolute;
    /* background: var(--forth-color); */
    width: 100%;
    height: 100%;
    opacity: 0.8;
    left: 0;
    bottom: 0;
}
.philosophy-section::after {
    content: '';
    position: absolute;
    /* background-color: var(--secondary-color); */
    /* clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 50%); */
    width: 30%;
    height: 90px;
    right: 0;
    top: 0;
}
.philosophy-section .container {
    position: relative;
    z-index: 1;
}
.left-icon-element li {
    position: relative;
    display: grid;
    grid-template-columns: 75px calc(100% - 75px);
}
.left-icon-element li:not(:last-child) {
    margin-bottom: 20px;
}
.team-section {
    overflow: hidden;
}
.team-section .polygon {
    left: -259px;
    top: -125px;
    background: url(../images/polygon-primary.webp) no-repeat;
    opacity: 0.8;
}
.team-box {
    box-shadow: 0 10px 12px rgba(0,0,0,.12);
    background-color: var(--white-color);
}
.team-box .top-element {
    position: relative;
}
.team-box .top-element .social-link {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white-color);
    box-shadow: 0 9px 15px rgba(0,0,0,.09);
    top: 15px;
    right: 15px;
}
.team-box .bot-element {
    min-height: 120px;
    padding: 15px 10px;
}
.team-box .bot-element .member-name {
    font-size: 1.5rem;
    font-family: var(--secondary-font);
}
/* Project List */
.projects-roofsol{
    padding: 20px 0 80px;   
}
.project-box  {
    box-shadow: 0 7px 8px #20373A10;
}
.project-box .top-part {
    position: relative;
    background-color: var(--dark-color);
    overflow: hidden;
}
.project-box .top-part img {
    transition: var(--primary-transition);
}
.project-box .top-part:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}
.project-box .top-part .location,
.project-box .top-part .watt{
    position: absolute;
    font-size: 0.875rem;
    padding: 6px 9px;
}
.project-box .top-part .location {
    top: 0;
    right: 0;
}
.project-box .top-part .watt {
    bottom: 0;
    left: 0;
}
.project-box .top-part .watt {
    bottom: 0;
    left: 0;
}
.project-box .botom-part {
    padding: 25px 10px;
}
.project-box .title {
    transition: var(--primary-transition);
}
.project-box:hover .title {
    color: var(--secondary-color);
}
.custom-tab-nav button {
    background-color: transparent;
    transition: var(--primary-transition);
    border:1px solid #C1CECF;
    color: var(--dark-color);
}
.custom-tab-nav button:not(:first-child) {
    border-left: 0;
}
.custom-tab-nav button:not(:last-child) {
    border-right: 0;
}
.custom-tab-nav button:hover {
    color: var(--secondary-color);
}
.custom-tab-nav button.active {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}
.select-state select {
    width: 280px;
    border:1px solid #C1CECF;
    padding: 12px 30px 12px 16px;
    font-size: 1rem;
    font-weight: var(--font-medium);
    background: url(../images/select-down-arrow.svg) no-repeat right 15px top 50%;
    border-radius: 0;
}
.play-btn {
    width: 86px;
    height: 86px;
    background-color: var(--white-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
}
.gallery-carousel .slick-list {
    margin: 0 -15px;
}
.gallery-carousel .slick-slide {
    padding: 0 15px;
}
.gallery-carousel .slick-dots {
    position: relative;
    bottom: 0;
}
.sec-project-gallery .polygon {
    left: -235px;
    bottom: -300px;
    background: url(../images/polygon-primary.webp) no-repeat;
    opacity: 0.8;
}
.t3dimg-l,
.t3dimg-r {
    position: relative;
}
.t3dimg-l,
.service-list .service-element:nth-child(even) .img-element {
    position: relative;
    clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 calc(100% - 90px));
}
.t3dimg-l::after,
.service-list .service-element:nth-child(even) .img-element::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 calc(100% - 25px));
    width: 170px;
    height: 38px;
    right: 0;
    top: 0;
}
.t3dimg-r,
.service-list .service-element:nth-child(odd) .img-element {
    clip-path: polygon(0 0, 100% 90px, 100% calc(100% - 90px), 0% 100%);
}
.t3dimg-r::after,
.service-list .service-element:nth-child(odd) .img-element::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 14px), 0 100%);
    width: 170px;
    height: 38px;
    left: 0;
    top: 0;
}
.t3dimg-r img,
.service-list .service-element:nth-child(odd) .img-element img {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    -webkit-transition: filter 0.25s, opacity 0.35s, -webkit-transform 0.35s;
    transition: filter 0.25s, opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}
.t3dimg-r:hover img,
.service-list .service-element:nth-child(odd):hover .img-element img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.t3dimg-l img,
.service-list .service-element:nth-child(even) .img-element img {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    -webkit-transition: filter 0.25s, opacity 0.35s, -webkit-transform 0.35s;
    transition: filter 0.25s, opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}
.t3dimg-l:hover img,
.service-list .service-element:nth-child(even):hover .img-element img {
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}
.t3dimg-l::before,
.t3dimg-r::before,
.service-list .service-element .img-element::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: '';
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    z-index: 1;
}
.t3dimg-l::before,
.service-list .service-element:nth-child(even) .img-element::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
.t3dimg-l:hover::before,
.service-list .service-element:nth-child(even):hover .img-element::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
.t3dimg-r::before,
.service-list .service-element:nth-child(odd) .img-element::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}
.t3dimg-r:hover::before,
.service-list .service-element:nth-child(odd):hover .img-element::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
.services-roofsol {
    position: relative;
    overflow: hidden;
}
.services-roofsol .polygon {
    left: -350px;
    top: 45%;
    background: url(../images/polygon-primary.webp) no-repeat;
    opacity: 0.9;
}
.service-element {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.service-element .left-widget {
    width: 600px;
}
.service-element .left-widget img {
    min-width: 100%;
}
.service-element .right-widget {
    flex: 1;
}
.service-list .service-element .img-element {
    position: relative;
    overflow: hidden;
}
.service-list .service-element:nth-child(even) {
    flex-direction: row-reverse;
}
.service-list .service-element:nth-child(even) .right-widget {
    padding-right: 88px;
}
.service-list .service-element:nth-child(odd) .right-widget {
    padding-left: 88px;
}
.service-list .service-element:not(:last-child) {
    margin-bottom: 62px;
}
.service-list.media .service-element::before {
    content: '';
    position: absolute;
    background-color: var(--tertiary-color);
    width: 75%;
    height: 100%;
    display: block;    
}
.service-list.media .service-element:nth-child(odd)::before {
    right: 0;
    clip-path: polygon(150px 0, 100% 0, 100% 100%, 150px 100%, 0 calc(100% - 90px), 0 90px);
}
.service-list.media .service-element:nth-child(even)::before {
    left: 0;
    clip-path: polygon(calc(100% - 150px) 0, 100% 90px, 100% calc(100% - 90px), calc(100% - 150px) 100%, 0 100%, 0 0);
}
.service-list.media .service-element .right-widget {
    padding: 0 88px;
}
.event-box {
    box-shadow: 0 7px 8px #20373A10;
    background-color: var(--white-color);
}
.event-box figure {
    margin-bottom: 0;
}
.event-box .img-element {
    position: relative;
    overflow: hidden;
    height: 210px;
}
.event-box .img-element img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
    height: -webkit-calc(210px + 50px);
    height: calc(210px + 50px);
    width: 100%;
    object-fit: cover;
}
.event-box:hover .img-element img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.event-box figcaption {
    text-align: center;
    padding: 15px;
}
.event-box figcaption a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--forth-color);
    display: block;
    margin-bottom: 6px;
    transition: var(--primary-transition);
}
.event-box figcaption a:hover {
    color: var(--primary-color);
}
.event-box figcaption p {
    font-size: 0.875rem;
    margin-bottom: 0;
}
.contact-top-roofsol .polygon {
    top: -250px;
    left: -300px;
    background: url(../images/polygon-primary.webp) no-repeat;
    opacity: 0.8;
}
.contact-top-roofsol iframe {
    max-width: 100%;
}
.contact-details .contact-element {
    display: grid;
    grid-template-columns: 36px calc(100% - 36px);
    margin-bottom: 15px;
}
.contact-details .contact-element .ph a {
    color: var(--grey-color);
}
.contact-details .contact-element .ph a:not(:last-child)::after {
    content: '/';
    color: var(--grey-color);
    margin: 0 8px;
    font-size: 0.875rem;
}
/* .philosophy-section {
    position: relative;
    background: var(--forth-color) url(../images/philosophy-bg.jpg) left top no-repeat;
    background-size: 100% 50%;
    clip-path: polygon(50% 90px, 100% 0, 100% 100%, 0 100%, 0 0);
    padding-top: 150px;
    padding-bottom: 85px;
}
.philosophy-section .polygon {
    right: -200px;
    bottom: -80px;
}
.philosophy-section:before {
    content: '';
    position: absolute;
    background: var(--forth-color);
    width: 100%;
    height: 100%;
    opacity: 0.8;
    left: 0;
    bottom: 0;
}
.philosophy-section::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 50%);
    width: 30%;
    height: 90px;
    right: 0;
    top: 0;
}
.philosophy-section .container {
    position: relative;
    z-index: 1;
} */

.domestic-section {
    position: relative;
    background: var(--forth-color) url(../images/location-bg.webp) left top no-repeat;
    background-size: cover;
    clip-path: polygon(50% 90px, 100% 0, 100% 100%, 0 100%, 0 0);
    padding-top: 150px;
    padding-bottom: 85px;
}
.left-border-box {
    border-left-width: 4px;
    border-left-style: solid;
    padding: 20px;
}
.left-border-box.secondary-border-color {
    border-color: var(--secondary-color);
}
.left-border-box span {
    font-size: 1.5rem;
    font-weight: var(--font-medium);
}
.left-border-box .location-name {
    display: grid;
    align-items: center;
    grid-template-columns: 30px calc(100% - 30px);
}
.left-border-box.mheight {
    min-height: 211px;
}
.enquire-section {
    clip-path: polygon(50% 90px, 100% 0, 100% 100%, 0 100%, 0 0);
    padding-top: 150px;
    padding-bottom: 85px;
}
.enquire-section .container{
    position: relative;
    z-index: 1;
}
.enquire-section .bg-img {
    width: 50%;
    height: 100%;
    position: absolute;
    background-size: cover;
    display: block;
    left: 0;
    top: 0;
}
.enquire-section .polygon {
    right: -201px;
    bottom: -288px;
    background: url(../images/polygon-primary.webp) no-repeat;
    opacity: 0.8;
}
.open-position {
    position: relative;
    box-shadow:0 8px 18px #20373A10;
    padding: 30px 30px 105px 30px;
    border-bottom: 3px solid var(--secondary-color);
    background-color: var(--white-color);
}
.open-position h3 {
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
    font-family: var(--primary-font);
    color: var(--forth-color);
}
.open-position .open-item:not(:last-child) {
    margin-bottom: 27px;
}
.open-position .open-item strong {
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    display: inline-block;
    margin-right: 12px;
}
.open-position .open-item strong svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    min-width: 24px;
}
.open-position .btn {
    position: absolute;
    left: 30px;
    bottom: 30px;
}
.multiple-btn .btn-item:not(:last-child) {
    border-right: 1px solid var(--light-grey-color);
    margin-right: 25px;
    padding-right: 25px;
}
.btn svg {
    margin-right: 6px;
}
.security-list { 
    display: flex;
    flex-wrap: wrap;
}
.security-list li { 
    font-weight: var(--font-semibold);
    /* display: grid;
    grid-template-columns: 25px calc(100% - 25px); */
    width: 50%;
    margin-bottom: 18px;
}
.security-list li { 
    background: url(../images/security-icon-white.svg) no-repeat 0 2px;
    padding-left: 30px;
}
.security-list.dark-color li { 
    background: url(../images/security-icon-green.svg) no-repeat 0 2px;
    padding-left: 30px;
}
.safety-carousel article {
    padding: 0 15px;
}
.safety-carousel article figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}
.safety-carousel article figure figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 60px 20px 20px 20px;
    text-align: center;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.804359243697479) 0%, rgba(0,0,0,0) 100%);
}
.safety-carousel article figure strong {
    font-weight: var(--font-medium);
    color: var(--white-color);
}
.safety-carousel .slick-dots {
    position: relative;
    bottom: 0;
}
.safety-section div[class^="col"] {
    position: relative;
}
.safety-section div[class^="col"]::before {
    content: '';
    position: absolute;
    left: 0;
    width: 320px;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(80deg, rgba(0,0,0,0) 0%, rgba(255,255,255,0.1) 100%);
    clip-path: polygon(76% 0, 100% 50%, 76% 100%, 0 100%, 0 0);
}
/* ARTICLE BOX */
.article-list article figure {
    box-shadow: 0 7px 8px rgba(32,55,58,0.10);
}
.article-list article figure .top-element .date {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 0.875rem;
    color: var(--white-color);
    padding: 5px 18px;
}
.article-list article figure figcaption {
    padding: 15px;
    font-size: 0.875rem;
    color: var(--grey-color);
}
.article-list article figure figcaption .title {
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    color: var(--forth-color);
}
.article-list article figure figcaption .description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.maplayout ul li {
    position: absolute;
}
.statelist li span {
    display: none;
}
.maplayout ul li:hover::before,
.statelist li:hover span {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    background: #fff;
    border-radius: 3px;
    color: #2a2a2a;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    font-size: 0.875rem;
    padding: 3px 14px;
    position: absolute;
    white-space: nowrap;
    z-index: 9;
    border-radius: 50px;
    box-shadow: 4px 4px 8px 2px rgba(0,0,0,0.3);
}
.maplayout ul li:hover::before {
    content: attr(data-title);
}
.maplayout ul li:hover::after,
.statelist li:hover::after {
    content: '';
    color: #2a2a2a;
    left: 50%;
    top: -3px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 9;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}
.testimonial-item {
    background: #ebebeb;
    padding: 30px;
}
.testimonial-item:not(:last-child) {
    margin-bottom: 30px;
}
.statelist li {
    left: 39%;
    top: 71%;
}

/* ACCORDIAN STYLE */

.accordian .accordian-card {
    border-radius: 0;
    border-width: 1px;
    border-style: solid;
    margin-bottom: 12px;
}

.accordian .accordian-card .accordian-header, .accordian .accordian-card .accordian-content {
    position: relative;
    padding: 14px 21px;
}

.accordian .accordian-card .accordian-header {
    font-size: 1rem;
    font-weight: var(--font-medium);
    color: var(--forth-color);
    padding-right: 50px;
    border-radius: 5px;
    cursor: pointer;
}

.accordian .accordian-card .accordian-header::after {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url(../images/plus-icon.svg);
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    right: 22px;
    top: 20px;
}

.accordian .accordian-card .accordian-content {
    font-size: 1rem;
    color: var(--forth-color);
    display: none;
}

.accordian.no-bg .accordian-card {
    border-color: #A7A7A7;
}

.accordian.is-bg>.accordian-card {
    border-color: #E3E3E3;
}

.accordian.is-bg>.accordian-card .accordian-header {
    background-color: #F9F9F9;
}

.accordian.is-bg>.accordian-card.active>.accordian-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px 5px 0 0;
}

.accordian.no-bg>.accordian-card.active>.accordian-header {
    color: var(--primary-color);
}

.accordian.no-bg>.accordian-card.active>.accordian-header::after {
    background-image: url(../images/line-orrange.svg);
    background-position: center;
}

.accordian.is-bg>.accordian-card.active>.accordian-header::after {
    background-image: url(../images/line-white.svg);
    background-position: center;
}
.sidebar-leftthumb-cont {
    display: grid;
    grid-template-columns: 80px calc(100% - 92px);
    align-items: center;
}
.sidebar-leftthumb-cont .thumb {
    display: block;
    padding: 3px;
    border: 1px solid var(--light-grey-color);
}
.sidebar-leftthumb-cont .cont {
    padding-left: 12px;
}
.sidebar-body > ul > li:not(:last-child) {
    border-bottom: 1px solid var(--tertiary-color);
    padding-bottom: 12px;
    margin-bottom: 10px;
}
.btn-item .btn::before {
    content: '';
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
} 
.btn-item .btn.hr::before {
    background-image: url(../images/white-circle-mail-icon.svg);
} 
.btn-item .btn.linkedin::before {
    background-image: url(../images/white-circle-linkedin-icon.svg);
} 
.grecaptcha-badge {
    z-index: 9;
}
/*----testimonial-----*/
.image-box {position: relative;}
.image-box:before { position: absolute; left: -30px; bottom: -30px; width: 144px; height: 124px; content: "";  background-image: url('../img/icon-dots-1.png');
    background-repeat: no-repeat; background-position: center; opacity: .40; }
.overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    padding: 35px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    }
.caption-box { position: absolute; left: 0; bottom: 24px; padding: 17px 35px 15px 30px; background-color: #ffffff; -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; }
.image-box:hover .overlay-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
  border-radius: 10px;
  }
.image-box:hover .caption-box { bottom: 80%; opacity: 0; visibility: hidden; }
.overlay-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* background: rgb(255,138,1); */
    background: -moz-linear-gradient(45deg, rgba(255,138,1,1) 0%, rgba(225,19,123,1) 100%);
    /* background: -webkit-linear-gradient(45deg, rgba(255,138,1,1) 0%,rgba(225,19,123,1) 100%); */
    background: linear-gradient(45deg, #0591d1 0%, #3245ab 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8a01', endColorstr='#e1137b',GradientType=1 );
    content: "";
    opacity: 0.95;
    border-radius: 10px;
    }
.overlay-box .info-box .designation { position: relative; display: block; font-size: 13px; line-height: 16px; color: #ffffff; }
.overlay-box .info-box .name { display: block; font-size: 20px; line-height: 1em; color: #ffffff; font-weight: 700; margin-bottom: 5px !important; position: relative; }
.overlay-box .info-box .name a{ color: #fff !important; }
.social-links {position: absolute;left: 30px;bottom: 35px;/* top: 23px; */}
.social-links li { position: relative; display: inline-block; }
.social-links li a { position: relative; display: inline-block; font-size: 15px; line-height: 24px; color: #ffffff; margin-right: 15px; -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; }
.caption-box h4 {
    font-size: 17px;
}    
.image img {
    border-radius: 10px;
}
/*----testimonial-----*/
.head-button {
    background-color: #22318c;
border-radius: 10px;
}
nav.main-navigation {
    margin-left: 11px;
}
.visitor-txt {
    font-size: 20px;
    background: linear-gradient(90deg, #ff7b54, #ffcc29);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.qa-qc-section {
      padding: 60px 0;
      background-color: #f9f9f9;
    }
    .qa-qc-title {
      font-size: 28px;
      font-weight: 700;
      border-bottom: 2px solid #000;
      display: inline-block;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .qa-qc-text {
      font-size: 16px;
      line-height: 1.7;
    }
    .qa-qc-text b {
      font-weight: 700;
    }
.contact-section {
  background-color: #fff;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
}

.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info .info-item h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-info .icon {
  width: 30px;
  height: auto;
  margin-top: 3px;
}

.contact-info a {
  color: #1abc9c;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form label {
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #333;
  border-radius: 0;
  padding-left: 0;
  background: transparent;
  box-shadow: none;
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1abc9c;
  outline: none;
  box-shadow: none;
}
