/*
Theme Name: LIGHT
Theme URI:  https://example.com/minimal-elementor-plus
Author:      SUSANTA PAUL
Author URI:  https://example.com
Description: A minimal Elementor-ready theme with WooCommerce and widget support.
Version:     1.1
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimal-elementor-plus
Tags: minimal, blank, elementor, woocommerce, starter, widgets
*/

:root  {
--color-default:#000000;
--color-primary:#ff0830;
--color-secondary:#ff7e00;
--color-white:#ffffff;
--color-light:#eeeef9;
--color-gray:#ebebeb;
--color-dark:#0e0e0e;
--color-black:#000000;
--color-blue:#0d0e45;
}
a{
    color: var(--color-primary);
    text-decoration: none;
    transition: 300ms;
}
.fw-100{ font-weight: 100;}
.fw-200{ font-weight: 200;}
.fw-300{ font-weight: 300;}
.fw-400{ font-weight: 400;}
.fw-500{ font-weight: 500;}
.fw-600{ font-weight: 600;}
.fw-700{ font-weight: 700;}
.fw-800{ font-weight: 800;}
.fw-900{ font-weight: 900;}

.lnht-1{
    line-height: 1;
}
.lnht-1-1{
    line-height: 1.1;
}
strong,b{
    font-weight: 600;
}
.text-primary{
    color: var(--color-primary)!important;
}
.text-blue{
    color:var(--color-blue);
}
body{
    font-size: 18px;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
    color: var(--color-blue)
}
h1{
    line-height: 1.1;
}
h2{
    line-height: 1.2!important;
}
/************/
/*** MENU ***/
/************/
/* Desktop */
@media screen and (min-width: 992px)  {
    /* Top-level menu */
    ul.desktop-menu {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    ul.desktop-menu > li {
        display: inline-block;
        margin: 0;
        padding: 0;
        position: relative;
        text-align: left;
    }

    /* Top-level links */
    ul.desktop-menu > li > a {
        color: var(--color-blue);
        font-weight: 500;
        padding: 10px 22px;
        border-radius: 25px;
        line-height: 1.2;
        display: block;
        background-color: transparent;
        position: relative; /* Needed for ::before */
        transition: 0.3s ease;
    }

    /* Top-level underline */
    /*ul.desktop-menu > li > a::before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 20px;
        width: 0;
        height: 2px;
        background-color: var(--color-primary);
        transition: width 0.4s ease;
        border-radius: 2px;
    }

    ul.desktop-menu > li > a:hover::before,
    ul.desktop-menu > li.current-menu-item > a::before {
        width: calc(100% - 40px);
    }*/

    /* Hover color */
    ul.desktop-menu > li > a:hover,
    ul.desktop-menu > li.current-menu-item > a {
        color:#fff;
        background-color: var(--color-primary);
    }

    /* Dropdown container */
    ul.desktop-menu ul {
        margin: 0;
        padding: 12px 22px;
        list-style: none;
        position: absolute;
        top: -9999em;
        left: 0;
        width: 230px;
        background: #fff;
        border: 1px solid var(--color-light);
        opacity: 0;
        z-index: 999;
        transform: scale(0.9);
        transform-origin: center top;
        transition: transform 0.3s ease, opacity 0.3s ease, top 0s 0.3s;
    }

    /* Show dropdown on hover */
    ul.desktop-menu li:hover > ul {
        top: 100%;
        opacity: 1;
        transform: scale(1);
        transition-delay: 0s;
        z-index: 1000;
    }

    /* Nested dropdowns */
    ul.desktop-menu ul li:hover > ul,
    ul.desktop-menu ul ul {
        top: -10px;
        left: calc(100% + 22px);
    }

    /* Dropdown list items */
    ul.desktop-menu ul li {
        display: block;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #d8d8d8;
        position: relative;
    }

    /* Dropdown links */
    ul.desktop-menu ul li a {
        color: var(--color-default);
        font-weight: 400;
        padding: 12px 0;
        line-height: 1.2;
        display: block;
        position: relative; /* For underline */
        background-color: transparent;
        left: -3px;
        transition: color 0.3s ease, left 0.3s ease;
    }

    /* Dropdown underline */
    ul.desktop-menu ul li a::before {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        height: 1px;
        width: 0;
        background-color: var(--color-primary);
        transition: width 0.4s ease;
    }

    ul.desktop-menu ul li a:hover::before {
        width: 100%;
    }

    ul.desktop-menu ul li a:hover,
    ul.desktop-menu ul li.current-menu-item a {
        color: var(--color-primary);
        left: 0;
    }

    .hamburgerholder{
        display: none;
    }
    #mobilemenubg{
        display: none;
    }
}

/*  MOBILE */
@media screen and (max-width: 991px)  {
    .hamburgerholder {
        width:  45px;
        height:  45px;
        line-height:  45px;
        background-color: var(--color-primary);
        text-align:  center;
        display:  block;
        border-radius:  50%;
        /*position: absolute;
        top: 28px;
        right: 15px;*/
    }
    .hamburger {
        font-size: 17px;
        padding: 0;
        border-radius: 0;
        width: 24px;
        height: 24px;
        position: relative;
        right:  0;
        top: 0;
        z-index:  5;
        cursor:  pointer;
        transition:  all 600ms linear;
        display:  inline-block;
        vertical-align:  middle;
    }
    .hamburger .menu-icon {
        height: 1px;
        width: 24px;
        display: block;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 45%;
    }
    .hamburger .menu-icon:after,  .hamburger .menu-icon:before {
        position: absolute;
        -webkit-transition:  all 600ms linear;
        transition:  all 300ms linear;
    }
    .hamburger .menu-icon:after {
        content: '';
        width: 24px;
        height: 1px;
        display: block;
        background-color: #fff;
        bottom: 8px;
    }
    .hamburger .menu-icon:before {
        content: '';
        width: 24px;
        height: 1px;
        display: block;
        background-color: #fff;
        top: 8px;
    }
    .hamburger.on .menu-icon  {
        background-color:  transparent;
    }
    .hamburger.on .menu-icon:before  {
        top:  0;
        transform:  rotate(45deg);
    }
    .hamburger.on .menu-icon:after  {
        top:  0;
        transform:  rotate(-45deg);
    }

    #mobilemenubg {
        display:  block;
        position: fixed;
        top: 0;
        left: -310px;
        width:  250px;
        height: 100%;
        padding: 0 15px;
        z-index: 98;
        overflow: hidden;
        background-color: #fff;
        transition:  all 300ms linear;
    }
    #mobilemenubg.open {
        overflow-y: auto;
        left: 0;
    }
    div.mobilemenulogo {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    div.mobilemenulogo img {
        width:  auto;
        max-width:  150px;
        max-height:  62px;
    }
    /*******************/
    /* Mobile menu css */
    /*******************/
    ul.mobile-menu {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    ul.mobile-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    } 
    ul.mobile-menu li {
        margin: 0;
        padding: 0;
        position: relative;
    }       
    ul.mobile-menu button.submenu-toggle {
        background: none;
        border: 1px solid #ccc;
        background-color: #fff;
        font-size: 17px;
        font-weight: 500;
        cursor: pointer;
        color: #333;
        line-height: 1;
        display: block;
        position: absolute;
        right: 0;
        top: 4px;
        width: 24px;
        height: 24px;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    ul.mobile-menu button.submenu-toggle:focus,
    ul.mobile-menu button.submenu-toggle:hover {
        color: #000;
        outline: none;
    }
    ul.mobile-menu .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease;
    }
    ul.mobile-menu .menu-item-has-children.open > .sub-menu {
        max-height: 400px;
    }    
    /**/
    ul.mobile-menu{
        border-bottom: 1px solid #eeeeee;
    }
    ul.mobile-menu li a{
        border-top: 1px solid #eeeeee;
        display: block;
        padding: 3px 0;
        color:#000;
    }
    ul.mobile-menu li li a{
        padding-left: 10px;
    }
    ul.mobile-menu li li li a{
        padding-left: 20px;
    }
    ul.mobile-menu li li li li a{
        padding-left: 30px;
    }
    ul.mobile-menu li a:hover,
    ul.mobile-menu li a:focus,
    ul.mobile-menu li.current-menu-item a{
        color:var(--color-primary);
    }
    ul.mobile-menu li.menu-item-has-children a{
        padding-right: 24px;
    }
}
/****************/
/*** END MENU ***/
/****************/

/**************/
/*** HEADER ***/
/**************/
.header{
    background-color: var(--color-light);
}
.header-flex{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
@media screen and (max-width: 991px)  {
    .header_mid{
        display: none;
    }
}
.header_start{
    width: 150px;
}
.header_end{
    display: flex;
}
/******************/
/*** END HEADER ***/
/******************/


/**********************/
/*** FEATURED IMAGE ***/
/**********************/
.main-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.main-banner picture,
.main-banner picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area */
  object-position: center;
}
.main-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.main-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.main-banner .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.main-banner .page-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-subtitle {
  color: #ffffff;
  margin-top: 0.5rem;
  font-size: 25px;
}
.main-banner h1,
.main-banner h2,
.main-banner h3,
.main-banner h4,
.main-banner h5,
.main-banner h6{
    color: #fff;
}

@media (max-width: 991px) {
   .main-banner .page-title {
    font-size: 1.6rem;
    } 
}
/**************************/
/*** END FEATURED IMAGE ***/
/**************************/

/*****************************/
/*** INDEX PAGE BLOG STYLE ***/
/*****************************/
.entry-meta{
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.entry-title a{
    color:var(--color-blue);
}
.entry-title a:hover{
    color:var(--color-primary);
}
.post-thumbnail img{
    border-radius: 10px;
}
/*********************************/
/*** END INDEX PAGE BLOG STYLE ***/
/*********************************/

/*********************************/
/*** SINGULAR BLOG STYLE ***/
/*********************************/
.post_title{
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--color-blue);
}
.sidebar .widget {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
h4.widget-title{
    margin-bottom: 25px;
    color: var(--color-blue);
}
.widget.widget_archive ul, .widget.widget_categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget.widget_archive ul li, .widget.widget_categories ul li {
    margin: 0;
    padding: 7px 0;
    border-top: 1px solid #ccc;
}
.widget.widget_archive ul li a, .widget.widget_categories ul li a {
    color:  var(--color-blue);
}
.widget.widget_archive ul li a:hover, .widget.widget_categories ul li a:hover {
    color: var(--color-primary);
}
/*********************************/
/*** END SINGULAR BLOG STYLE ***/
/*********************************/

/*********************************/
/*** BLOG PAGINATION ***/
/*********************************/
ul.page-numbers {
    margin: 0 0 25px 0;
    padding: 15px 0;
    list-style: none;
    text-align: center;
    font-size:  16px;
    border-bottom:  1px solid #ccc;
    border-top:  1px solid #ccc;
}
ul.page-numbers li {
    margin: 5px 2px!important;
    padding: 0;
    display: inline-block;
}
ul.page-numbers li a.page-numbers  {
    padding:  5px 10px;
    background-color:var(--color-primary);
    color: #fff;
    display: block;
    border-radius: 3px;
}
ul.page-numbers li span.page-numbers.current  {
    padding:  5px 10px;
    background-color:#ccc;
    color: #666;
    display: block;
    border-radius: 3px;
    font-weight: bold;
}
/*********************************/
/*** END BLOG PAGINATION ***/
/*********************************/

/*********************************/
/*** FORM ***/
/*********************************/
input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="url"],
input[type="number"],
input[type="password"],
select,
textarea{
	width: 100%;
	outline: none;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	transition: all 0.30s ease-in-out;
	padding: 10px;
	margin: 0;
	font-family: var(--font-default);
	color: var(--color-default);
	border:0;
	border: 1px solid #dee2e6;
	background-color: white!important;
    border-radius: 4px;
}
input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus{
	outline: none;
}
input[type=search]:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="url"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
select:hover,
textarea:hover{
	outline: none;
}
textarea{
	max-height: 100px;
}
label{
	margin: 0;
	padding: 0;
}
.wpcf7-spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('assets/images/arrow-down.svg') no-repeat right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem; /* space for custom arrow */
  border: 1px solid #dee2e6;
  border-radius: 4px;
}
/*********************************/
/*** END FORM ***/
/*********************************/

/*********************************/
/*** WIDGET SEARCH FORM ***/
/*********************************/
form.search-form{
    display: flex;
}
form.search-form label{
    width:calc(100% - 100px);
    margin: 0;
    padding: 0;
    display: block;
}
form.search-form input[type="text"]{
    width:calc(100% - 100px);
}
form.search-form input[type="submit"]{
    width:100px;
    padding: 10px 0;
}
/*********************************/
/*** END WIDGET SEARCH FORM ***/
/*********************************/

/*********************************/
/*** FOOTER ***/
/*********************************/
footer.fdifooter{
    background-color: var(--color-blue);
    padding-top: 200px;
    padding-bottom: 50px;
    color:#fff;
    overflow: hidden;
}
.fdifooter a{
    color: #fff;
    transition: 300ms;
}
.fdifooter a:hover{
    color: var(--color-secondary);
}
.fdifooter ul.menu{
    margin: 0;
    padding: 0;
    list-style: none;
}
.fdifooter ul.menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}
.fdifooter ul.menu li{
    margin-bottom: 15px;
}
.fdifooter ul.menu li a{
    color: #fff;
    transition: 300ms;
}
.fdifooter ul.menu li a:hover{
    color: var(--color-secondary);
}
.fdifooter ul.contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-icon {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
    flex-shrink: 0;
}

.footer-icon-text {
    margin-left: 10px;
    display: inline-block;
}

@media (max-width: 991px) {
    .fdifooter ul.menu,
    .fdifooter ul.menu li{
        text-align: center;
    }
  .fdifooter ul.contact {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the whole block */
    width: auto;
    margin: 0 auto;
  }

  .fdifooter ul.contact li {
    width: 100%;          /* Let it take full width of its content */
    text-align: left;     /* Align content inside li to the left */
    max-width: 300px;     /* Optional: set a max width if needed */
  }

  .fdifooter ul.contact a {
    flex-direction: row;
    justify-content: flex-start; /* Align icon + text to the left */
    
  }

  .footer-icon-text {
    margin-left: 10px;
  }
}

::placeholder {
  color: #000; 
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #000;
  opacity: 1;
}

.cf7form label{
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
    display: none;
}
.wpcf7 p {
    margin: 0px !important;
}
.newsletter{
    padding: 75px 20px;
    background-color: var(--color-light);
    border-radius: 24px;
    margin-bottom: -150px;
    position: relative;
    z-index: 1;
    text-align: center;
}
@media screen and (max-width: 767px){
    .newsletter{
        padding: 25px;
    }
}
/*********************************/
/*** END FOOTER ***/
/*********************************/

/* START */
.btn1{
    background-color: var(--color-primary);
    color:#fff;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 50px;
    transition: 300ms;
    line-height: 1;
    border: none;
    outline: none;
}
.btn1:hover{
    background-color: var(--color-blue);
    color:#fff;
}
.btn1.phone-mobile{
    padding: 0;
    width: 45px;
    height: 45px;
    text-align: center;
}
.btn1.phone-mobile svg{
    position: relative;
    top: 10px;
}
.btn1.small{
    padding: 7px 15px;
    font-size: 14px;
}
.btn2{
    background-color: var(--color-blue);
    color:#fff;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 50px;
    transition: 300ms;
    line-height: 1;
}
/* Newsletter */
.nl{
    position: relative;
}
.nl-inp input[type="email"] {
    border-radius: 50px;
    border: 1px solid #ceceec;
    background-color: #fff;
    padding: 15px 130px 15px 20px;
}
.nl-sub input[type="submit"] {
    position: absolute;
    top: 6px;
    right: 6px;
    border-radius: 50px;
    border: none;
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 25px!important;
    font-weight: 600;
    display: inline-block;
    width: 120px;
}
.gradient {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary)); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.service-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* horizontal and vertical spacing */
}

.service-row * {
    transition: 300ms;
}

a.service-link {
    width: calc(50% - 12.5px); /* Two per row with gap */
    display: flex;
    justify-content: space-between;
    border: 1px solid #d3d3ed;
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    color: #222;
    text-decoration: none;
}

a.service-link:hover {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

a.service-link:hover h5 {
    color: #fff;
}

.service-row-col-in-first {
    width: 100px;
}

.service-row-col-in-second {
    width: calc(100% - 100px);
}

.service-row-col-in-first span {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: var(--color-light);
    display: block;
    padding-top: 14px;
    margin-top: 5px;
}

.service-row-col-in-first span img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
}

/* Responsive: stack vertically on small screens */
@media screen and (max-width: 767px) {
    a.service-link {
        width: 100%;
    }

    .service-row-col-in-first {
        width: 70px;
    }

    .service-row-col-in-second {
        width: calc(100% - 70px);
    }

    .service-row-col-in-first span {
        width: 60px;
        height: 60px;
        padding-top: 10px;
    }

    .service-row-col-in-first span img {
        width: 40px;
        height: 40px;
    }
}

ul.tick{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.tick li{
    margin: 0 0 10px 0;
    padding: 0 0 0 30px;
    position: relative;
}
ul.tick li::before{
    content: "";
    background: url(assets/images/tick.png) no-repeat;
    background-size: 23px;
    width: 23px;
    height: 23px;
    display: block;
    position: absolute;
    left: 0;
    top:2px;
}
.two-col{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 30px;
}
@media screen and (max-width: 767px){
    .two-col{
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
        column-gap: 0;
    }
}
.step-row{
    width: 100%;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;    
    margin-top: 50px;
    margin-bottom: 20px;
}
.step-row .steps{
    width:23%;
}
.step-icon{
    width:150px;
    height:150px;
    margin: 0 auto 15px auto;
    display: block;
    border-radius: 50%;
    border: 2px dashed var(--color-primary);
    position: relative;
    background-color: #fff;
}
.step-icon span{
    position: absolute;
    top: -25px;
    right: -15px;
    width: 55px;
    height: 55px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}
.step-row .steps.step1 .step-icon{
    background: url(assets/images/icon1.png) no-repeat #fff;
    background-size: 100%;
}
.step-row .steps.step2 .step-icon{
    background: url(assets/images/icon2.png) no-repeat #fff;
    background-size: 100%;
}
.step-row .steps.step3 .step-icon{
    background: url(assets/images/icon3.png) no-repeat #fff;
    background-size: 100%;
}
.step-row .steps.step4 .step-icon{
    background: url(assets/images/icon4.png) no-repeat #fff;
    background-size: 100%;
}

.step-row .steps.step1 .step-icon span{
    background-color: var(--color-secondary);
}
.step-row .steps.step4 .step-icon span{
    background-color: var(--color-secondary);
}

.step-row .steps.step1 .step-icon{
    border: 2px dashed var(--color-secondary);
}

.step-row .steps.step4 .step-icon{
    border: 2px dashed var(--color-secondary);
}
@media screen and (max-width: 1024px){
    .step-row .steps{
        width:48%;
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 767px){
    .step-row .steps{
        width:100%;
    }
}
@media screen and (min-width: 1025px){
    .step-row {
        background: url(assets/images/dots.png) no-repeat center 30px;
        background-size: 70%;
    }
}
.chip1 {
    width: 104px;
    height: 70px;
    background: url(assets/images/chip1.png) no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    top: 30px;
    right: 20%;
    z-index: 5;
    animation: swing 6s linear infinite;
    transform-origin: center center;
}
@keyframes swing {
    0%   { transform: rotate(-85deg); }
    50%  { transform: rotate(85deg); }
    100% { transform: rotate(-85deg); }
}
.chip2 {
    width: 104px;
    height: 70px;
    background: url(assets/images/chip1.png) no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    bottom: 30px;
    right: 5%;
    z-index: 6;
    transform-origin: center center;
    animation: chip2swing 6s linear infinite;
}
@keyframes chip2swing {
    0%   { transform: rotate(25deg); }
    50%  { transform: rotate(85deg); }
    100% { transform: rotate(25deg); }
}
.chip3 {
    width: 104px;
    height: 70px;
    background: url(assets/images/chip1.png) no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    bottom: 20px;
    left: 5%;
    z-index: 6;
    transform-origin: center center;
    animation: chip3swing 6s linear infinite;
}
@keyframes chip3swing {
    0%   { transform: rotate(-45deg); }
    50%  { transform: rotate(5deg); }
    100% { transform: rotate(-45deg); }
}
.stats{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.stat{
    width:48%;
    display: flex;
    flex-wrap:nowrap;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}
.stat-first{
    width:75px;
}
.stat-second{
    width:calc(100% - 95px);
}
.stat-icon1{
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 50%;
    display: block;
    background: url(assets/images/stat1.png) no-repeat center center var(--color-primary);
    background-size: 60%;
}
.stat-icon2{
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 50%;
    display: block;
    background: url(assets/images/calendar.png) no-repeat center center var(--color-primary);
    background-size: 60%;
}
.stat-icon3{
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 50%;
    display: block;
    background: url(assets/images/trustworthiness.png) no-repeat center center var(--color-primary);
    background-size: 60%;
}
.stat-icon4{
    width: 75px;
    height: 75px;
    line-height: 75px;
    border-radius: 50%;
    display: block;
    background: url(assets/images/ideas.png) no-repeat center center var(--color-primary);
    background-size: 60%;
}
@media screen and (max-width: 600px) {
    .stat {
        width: 100%;
        margin: 0 auto 20px auto;
    }
}
.rotatingbg{
    position: relative;
    padding: 150px 150px 0 150px;
}
.rotatingbg::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background:url(assets/images/rotatingbg.png) no-repeat center center;
    background-size: 100% 100%;
    z-index: 0;
    animation: rotateBg 60s linear infinite;
    transform-origin: center;
}
.rotatingbg > *{
    position: relative;
    z-index: 1;
}
@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


blockquote, .blockquote {
padding: 0 0 0 20px;
margin: 0 0 25px 0;
border-left: 5px solid var(--color-blue);
font-size:15px;
font-weight:500;
font-style:italic;
}

.small, small{
    font-size: 14px;
}
ul li,  ol li {
text-align:  left;
}
ul.default  {
list-style-type:  disc;
list-style-position:  outside;
margin:  0 0 15px 0;
padding:  0;
}
ul.default li {
margin:  0 0 0 20px;
padding:  0;
}
ul.default li::marker  {
color:  var(--color-primary);
}
ol.default {
  list-style-type: decimal;
  list-style-position: outside;
  margin: 0 0 15px 0;
  padding: 0;
}

ol.default li {
  margin: 0 0 0 20px;
  padding: 0;
}

ol.default li::marker {
  color: var(--color-primary);
  font-weight: bold;
}
b, strong {
font-weight:  600!important;
}
.fs-0{
    font-size: 0px !important;
}

ul#address-list2 {
    margin: 0;
    padding: 0;
    list-style: none;    
    max-height: 200px;
    overflow: auto;
    color: #fff;
}
ul#address-list2 li {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    line-height: normal;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.popmake-content .wpcf7-not-valid-tip{
    text-align: center;
    color: yellow;
}
ul.partner {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.partner li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 1 200px;
    max-width: 25%;
    box-sizing: border-box;
    text-align: center;
}
.partner li img {
    max-height: 60px;
}
@media (min-width: 992px) {
.fdifooter .container .row .col-lg-3:nth-child(1){
	width:30%;
}
.fdifooter .container .row .col-lg-3:nth-child(2){
	width:17%;
}
.fdifooter .container .row .col-lg-3:nth-child(3){
	width:17%;
}
.fdifooter .container .row .col-lg-3:nth-child(4){
	width:35%;
	}
}
.fdibanner{
	position:relative;
}
body{
	position:relative;
}
.download-brochure {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 39px;
	height: 318px;
	display: block;
	z-index: 3;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	display:none;
}
@media screen and (max-width: 767px) {
	.download-brochure {
	display: none;
   }
}
@media screen and (min-width: 992px) {
   ul.desktop-menu > li.dblink {
	display: none!important;
   }
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes zoomInOut {
	0%, 100% {
		transform: scale(.8); 
	}
	50% {
		transform: scale(1);
	}
}
.privacy{
	position:relative;
}
.privacy::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/a.png) no-repeat;
	display:block;
	z-index:3;
	animation: spin 4s linear infinite; 
}
.terms{
	position:relative;
}
.terms::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/b.png) no-repeat;
	display:block;
	z-index:3;
	animation: zoomInOut 2s ease-in-out infinite;
}
.brochure{
	position:relative;
}
.brochure::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/c.png) no-repeat;
	display:block;
	z-index:3;
	animation: spin 4s linear infinite; 
}
.contacta{
	position:relative;
}
.contacta::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/d.png) no-repeat;
	display:block;
	z-index:3;
	animation: zoomInOut 2s ease-in-out infinite;
}
.servicea{
	position:relative;
}
.servicea::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/e.png) no-repeat;
	display:block;
	z-index:3;
	animation: zoomInOut 2s ease-in-out infinite;
}
.abouta{
	position:relative;
}
.abouta::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/setting.png) no-repeat;
	display:block;
	z-index:3;
	animation: spin 4s linear infinite; 
}
.electric{
	position:relative;
}
.electric::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/a.png) no-repeat;
	display:block;
	z-index:3;
	animation: spin 4s linear infinite; 
}
.gasa{
	position:relative;
}
.gasa::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/e.png) no-repeat;
	display:block;
	z-index:3;
	animation: zoomInOut 2s ease-in-out infinite;
}
.broad{
	position:relative;
}
.broad::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/b.png) no-repeat;
	display:block;
	z-index:3;
	animation: zoomInOut 2s ease-in-out infinite;
}
.solara{
	position:relative;
}
.solara::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/d.png) no-repeat;
	display:block;
	z-index:3;
	animation: zoomInOut 2s ease-in-out infinite;
}
.insuranca{
	position:relative;
}
.insuranca::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/c.png) no-repeat;
	display:block;
	z-index:3;
	animation: spin 4s linear infinite; 
}
.blga{
	position:relative;
}
.blga::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/c.png) no-repeat;
	display:block;
	z-index:3;
	animation: spin 4s linear infinite; 
}
.n404{
	position:relative;
}
.n404::after{
	content:'';
	position:absolute;
	left:42%;
	top:50px;
	width:60px;
	height:60px;
	background:url(assets/images/404i.png) no-repeat;
	display:block;
	z-index:3;
	animation: spin 4s linear infinite; 
}
@media screen and (max-width: 767px) {
	.privacy::after{
		left:80%;
		top:10px;
	}
	.terms::after{
		left:80%;
		top:10px;
	}
	.brochure::after{
		left:80%;
		top:10px;
	}
	.contacta::after{
		left:80%;
		top:10px;
	}
	.servicea::after{
		left:15%;
		top:1px;
	}
	.abouta::after{
		left:15%;
		top:1px;
	}
	.electric::after{
		left:80%;
		top:10px;
	}
	.gasa::after{
		left:80%;
		top:10px;
	}
	.broad::after{
		left:80%;
		top:10px;
	}
	.solara::after{
		left:15%;
		top:50px;
	}
	.insuranca::after{
		left:80%;
		top:10px;
	}
	.blga::after{
		left:47%;
		top:10px;
	}
	.n404::after{
		left:80%;
		top:10px;
	}
}
h2 a{
	color:var(--color-blue);
}
h2 a:hover{
	color:var(--color-primary);
}