

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    outline: none !important;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(207, 103, 103, 0.1);
}
::-webkit-scrollbar-thumb {
    background-color: #0C4595;
    outline: 0px solid #0C4595;
}

/*PRELOADER*/

body:before {
    content: '';
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #0C4595;
    border-bottom-color: #0C4595;
    -webkit-animation: spinner .8s ease infinite;
            animation: spinner .8s ease infinite;
    z-index: 9999999999;
    -webkit-transition:all ease 0.5s;
    -o-transition:all ease 0.5s;
    transition:all ease 0.5s;
}

@-webkit-keyframes spinner {
  to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}

@keyframes spinner {
  to {-webkit-transform: rotate(360deg);transform: rotate(360deg);}
}
 
 body:after {
    content: "";
    position: fixed;
    top: 0;
    z-index: 999999;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transition:all ease 1s;
    -o-transition:all ease 1s;
    transition:all ease 1s;
}

body.loaded:before,
body.loaded:after{
    opacity:0;
}

body.loadedoff:before,
body.loadedoff:after{
    display:none;
}


/* GENERAL CSS */
body{
    font-size: 17px;
    overflow-x: hidden;
}
.feather {
    background-image: url("../images/overflow-bg.png");
    background-repeat: no-repeat;
    background-position: top 20px right -150px;
    background-attachment: fixed;
}
p,
li,
h1,
h2,
h3,
h4,
h5,
h6{
    margin-bottom: 10px;
}
a{
    color: #2A2A2A;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
a:hover,
a:visited,
a:active,
a:link,
button {
    text-decoration: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
a:hover,
a:hover span{
    color:#F04E37
}
ul{
    padding: 0;
    margin: 0px;
}
li{
    list-style: none;
}
h1{
    font-size: 50px;
    font-weight: bold;
}
h2{
    font-size: 30px ;
    font-weight: bold;
}
h3{
    font-size: 24px ;
    font-weight: bold;
}
h4{
    font-size: 22px ;
    font-weight: bold;
}
h5{
    font-size: 18px;
    font-weight: 500;
}
h6{
    font-size: 14px;
    font-weight: 600;
}
img{
    max-width: 100%;
}
input,
button.btn{
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
strong,
.sb-title{
    font-weight: 600;
}
.ex-title{
    font-weight: 800;
}
.u-line,
.u-line-center{
    position: relative;
    margin-bottom: 40px;
}
.u-line:before,
.u-line-center:before{
    content: " ";
    position:absolute;
    bottom: -15px;
    height: 3px;
    width: 45px;
    background-color: #F04E37;
}
.u-line-center:before{
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.hr-center{
    margin: 0 auto;
    max-width: 560px;
    background-color: #F04E37;
    opacity: 1;
}
.form-outline{
    max-width: calc(100% - 25px);
    width: 100%;
}
.search-bar{
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding-bottom: 10px;
    border-bottom: solid 1px #F04E37;
}
header .search-bar{
    max-width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.search-bar button{
    width: 25px;
}
.search-bar,
.search-bar input,
.search-bar button{
    background-color: transparent !important;
    color: #2A2A2A !important;
    font-size: 16px;
    text-align: center;
}
.search-bar input,
.search-bar button{
    border: 0px;
    padding: 0px;
    max-width: calc(100% - 25px);
}
.btn{
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.info-btn{
    border: 0px;
    color: #0C4595;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 0px;
    text-transform: uppercase;
    background-color: transparent !important;
}
.info-btn:hover{
    color: #F04E37;
}
.info-btn:hover .arrow{
    border-color: #F04E37;
}
.arrow {
    border: solid #0C4595;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 10px;
    margin-bottom: 1px;
}
.arrow-right {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.download-btn{
    border: 0px;
    border-radius: 50%;
    padding: 5px;
    background-color: #F04E37;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.download-btn:hover{
    background-color: #0C4595;
}
.download-btn img{
    width: 25px;
}
.round-btn{
    font-size: 14px;
    font-weight: 600;
    color:#F04E37;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 27px;
    border: 2px solid #F04E37;
    min-width: 125px;
}
.round-btn:hover{
    background-color: #0C4595;
    border-color: #0C4595;
    color: #fff;
}
.round-icon-btn{
    padding-left: 50px !important;
    padding-right: 15px !important;
    position: relative;
}
.round-icon-btn:hover span{
    background-color: #0C4595;
}
.round-icon-btn span {
    width: 44px;
    height: 44px;
    position: absolute;
    left: -1.5px;
    top: -1.5px;
    background: #F04E37;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.round-icon-btn img{
    width: 30px;
}
.bgt-btn{
    background-color: transparent !important;
}
.bgc-btn{
    color: #fff;
    background-color: #F04E37;
}
.reset-btn{
    color: #0C4595 !important;
    font-size: 13px;
    font-weight: 600;
    background-color: transparent;
    border: 0px !important;
    padding: 0px !important;
}
.reset-btn:hover{
    color: #F04E37 !important;
}
.energya-tabs{
    padding: 40px 0px;
}
.energya-tabs .nav-item .nav-link{
    background-color: transparent;
    color: #2a2a2a59;
    font-weight: bold;
    font-size: 17px;
    height:100%;
    position: relative;
    min-width: 200px;
}
.energya-tabs .nav-item .nav-link:before{
    content:"";
    position:absolute;
    width: 45px;
    height: 3px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #F04E37;
    opacity: 0;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.energya-tabs .nav-item .nav-link:hover,
.energya-tabs .nav-item .nav-link.active,
.energya-tabs .nav-item .nav-link:hover:before,
.energya-tabs .nav-item .nav-link.active:before{
    color: #2A2A2A;
    opacity: 1;
}
.energya-tabs .nav-item .nav-link.active{
    font-size: 22px;
}
/* SLIDERS */
.owl-dots{
    position: absolute;
    width: 100%;
    bottom: 20px;
}
.owl-dot span {
    border-radius: 0px !important;
    width: 20px !important;
    height: 4px !important;
    background-color: #fff !important;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.owl-dot:hover span,
.owl-dot.active span{
    background-color: #F04E37 !important;
}
.main-form{
    padding: 0 10px;
}
.main-form  .form-select:focus ,
.main-form  .form-control:focus{
    border-color: #F04E37;
    outline: 0;
    -webkit-box-shadow:none;
    box-shadow:none;
}
.main-form input,
.main-form .contact-textarea,
.main-form select{
    border: 0px;
    border-radius: 0px;
    border-bottom: solid 1px #F04E37;
    padding: 0px;
    padding-bottom: 10px;
    color: #292929bd;
    background-color: ghostwhite;  
    padding: 5px;
}
.file{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: solid 1px #F04E37;
    padding-bottom: 10px;
}
.file div{
    color: #F04E37;
    font-size: 13px;
    font-weight: 500;
}
.file span{
    color:#292929bd;
    font-size: 16px;
}
.file input[type="file"] {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 100;
    opacity: 0;
}
.text-card{
    margin-top: 50px;
    min-height: 400px;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    overflow: hidden;
}
.text-card-inner-container{
    position: absolute;
    top: calc(100% - 150px);
    padding: 20px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: transparent -o-linear-gradient(top, #08295700 0%, #082957E8 100%) 0% 0% no-repeat padding-box;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#08295700), to(#082957E8)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #08295700 0%, #082957E8 100%) 0% 0% no-repeat padding-box;
}
.card-overlay{
    position: absolute;
    top: calc(100% - 150px);
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: transparent -o-linear-gradient(top, #08295700 0%, #082957E8 100%) 0% 0% no-repeat padding-box;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#08295700), to(#082957E8)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #08295700 0%, #082957E8 100%) 0% 0% no-repeat padding-box;
}
.text-card:hover .text-card-inner-container,
.text-card:hover .card-overlay{
    top: 0;
    opacity: 1;
}
.text-card i{
    color: #F04E37;
}
.text-card h2{
    color: #fff;
}
.text-card p{
    margin-top: 10px;
    color: #fff;
    font-size: 17px;
}
/* HEADER */
.main-menu{
    /*position:absolute;*/
    width: 100%;
    padding: 50px 0px;
    z-index: 9;
}

.main-menu.scroll{
    padding: 10px 0px;
    background-color: #fff;
    box-shadow: 1px 0px 4px 0px rgb(0 0 0 / 16%);
}
.main-menu div#navbarNavDropdown.scrollTopMobileView
{
    top: 70px;
}
.main-menu.scroll .logo {
    width: 100px;
}
.main-menu.scroll .main-menu-links li a {
    padding: 10px 10px  !important;
    font-size: 16px;
}
.second-menu.scroll .main-menu-links-container .main-menu-links li .nav-link {
    color: #2A2A2A !important;
}
.second-menu.scroll .logo-container:before {
    display: none;
}

.main-menu .row{
    width: 100%;
}
.main-menu-links-container{
    position: relative;
}
.main-menu-links-container:before{
    content: "";
    position:absolute;
    left: -10px;
    width: 200%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px 0px 0px 12px;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    z-index: -1;
}
.main-menu .navbar-collapse{
    -webkit-box-flex: initial;
    -ms-flex-positive: initial;
    flex-grow: initial;
}
.main-menu button.navbar-toggler {
    border: 0px;
    padding: 0px 0px 0px 20px;
}
.main-menu-links li{
    margin-bottom: 0px;
}
.main-menu-links li a{
    padding: 20px 10px  !important;
    display: inline-block;
    color: #2A2A2A !important;
}
.main-menu-links li a:hover{
    color: #F04E37 !important;
    background-color: transparent;
}
.main-menu-links li li a{
    padding: 10px 10px !important ;
}
.menu-icons-container {
    padding: 10px 0px 10px 20px;
    margin-left: 10px;
    border-left: solid 1px #F04E37;
}
.menu-icons-container button{
    border: 0px;
    background-color: transparent;
}
.menu-icons-container img{
    width: 34px;
    min-width: 34px;
}
.menu-icons-container a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.menu-icons-container  i{
    color: #F04E37;
}
.menu-icons-container i:hover,
.main-menu button.navbar-toggler.collapsed:hover i {
    color: #0C4595;
}
.menu-icons-container .menu-search{
    margin: 0 20px;
}
.menu-icons-container .menu-search i{
    font-size: 20px;
}
.menu-icons-container .menu-contact i{
    font-size: 25px;
}
.main-menu button.navbar-toggler i {
    font-size: 22px;
    color: #F04E37;
}
.main-menu button.navbar-toggler i:hover{
    color: #0C4595;
}
.main-menu a.menu-cart{
    position: relative;
}
.main-menu a.menu-cart span {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #fff !important;
    width: 24px;
    height: 24px;
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    padding: 1px;
    border-radius: 50%;
    background-color: #F04E37;
    margin-left: 10px;
    text-align: center;
}
.main-menu a.menu-cart:hover span{
    background-color: #0C4595;
    color: #fff;
}
header div#menuSearchPopup .modal-body {
    padding-top: 60px;
}
header div#menuSearchPopup .modal-content button.btn-close,
.product-cart-item button.btn-close{
    top: 20px;
}
.second-menu .logo-container:before{
    content: "";
    position: absolute;
    top: 0;
    width: 170px;
    height: 123px;
    margin-left: -10px;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 6px #00000029;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 0px 12px 12px;
    opacity: 0.89;
    z-index: -1;
}
.second-menu .logo{
    width: 150px;
}
.second-menu .main-menu-links-container:before{
    display: none;
}
.second-menu .main-menu-links-container .main-menu-links li .nav-link{
    color: #fff !important;
}
.second-menu .main-menu-links-container .main-menu-links li a:hover{
    color: #F04E37 !important;
}
.second-menu .menu-icons-container i:hover{
    color: #fff;
}
/* HOME PAGE */
.home-slider-banner-info{
    height: 100vh;
    max-height: 650px;
}
.owl-carousel.owl-drag .owl-item .item .home-slider-banner-info
{
    background: transparent linear-gradient(180deg, #FFFFFF40 0%, #0C4595BF 100%) 0% 0% no-repeat padding-box;
}
.home-slider-banner-info img{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    z-index: -1;
}
.home-slider-banner-info h1{
    text-align: center;
    color: #fff;
    max-width: 725px;
}
.home-slider-banner .owl-nav{
    display: none;
}
.home-categories.product-catalog-categories{
    padding: 50px 0px 70px 0px;
}
.home-categories form{
    margin: 0px 10px;
}
.home-categories .search-bar{
    border: 0.5px solid #0C4595;
    padding: 13px 20px;
    border-radius: 50px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.home-categories .search-bar input{
    text-align: center;
    width: 800px;
    color: #0C4595  !important;
}
.home-categories .search-bar input::-webkit-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #0c469794;
    opacity: 0.58; /* Firefox */
}
.home-categories .search-bar input::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #0c469794;
    opacity: 0.58; /* Firefox */
}
.home-categories .search-bar input:-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #0c469794;
    opacity: 0.58; /* Firefox */
}
.home-categories .search-bar input::-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #0c469794;
    opacity: 0.58; /* Firefox */
}
.home-categories .search-bar input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #0c469794;
    opacity: 0.58; /* Firefox */
}
.home-categories .search-bar input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #0c469794;
}
.home-categories .search-bar input::-ms-input-placeholder { /* Microsoft Edge */
    color: #0c469794 ;
}
.home-categories .info-btn{
    margin-top: 20px;
}
.home-about-container{
    background-color: #F9F9F9;
    padding: 70px 0px;
}
.home-about-img-container{
    border-right: 0.5px solid #2A2A2A;
}
.home-about-container .info-btn{
    margin-top: 50px;
}
.home-services-shortcuts{
    padding: 80px 0px;
}
.home-services-shortcuts h6{
    color: #F04E37;
}
.home-services-shortcuts .info-btn{
    margin-top: 10px;
    display: inline-block;
}
.home-services-info-container{
    padding: 50px 0px;
    max-width: 330px;
}
.home-services-shortcuts {
    /*background-image: url("../images/home-services-shortcuts-bg.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: top 20px right -150px;*/
    /* background-size: 560px; */
}
.home-services-shortcuts .home-service-item{
    text-align: center;
    border-radius: 9px;
    margin: 15px 0px;
    padding: 40px 5px 0px 5px;
    background-color: rgba(255, 255, 255, 0.75);
    border: 0.30000001192092896px solid #0C4595;
}
.home-services-shortcuts .home-service-item:hover{
    border-color: #F04E37;
}
.home-services-shortcuts .home-service-item h5 {
    min-height: 43px;
}
.home-services-shortcuts .home-service-item:hover h5{
    color: #F04E37;
}
.home-services-shortcuts .home-service-item svg{
    margin-bottom: 30px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
}
.home-services-shortcuts .home-service-item:hover svg .a{
    fill: #F04E37;
}
.projects-highlights-numbers-container{
    /*background-image: url("../images/projects-highlights-numbers-container-bg.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: center left -250px;*/
}
.home-recent-projects-slider,
.home-highlights-slider {
    position: relative;
}
.projects-highlights-container h3{
    font-size: 27px;
    text-transform: capitalize;
    font-weight: bold;
    color: #fff;
    border-left: solid #F04E37 10px;
    padding:  0px 10px;
    position:absolute;
    top: 25px ;
    left: 0;
    z-index:2
}
.projects-highlights-container .info-btn{
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    color: #fff;
    text-align: center;
    z-index: 2;
}
.projects-highlights-container .info-btn span{
    border-color: #fff !important;
}

.home-recent-projects-slider .owl-item .item .projects-highlights-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent radial-gradient(closest-side at 0% 0%, #F04E3766 0%, #f04e3738 100%) 0% 0% no-repeat padding-box;
    z-index: 1;
}

.home-highlights-slider .owl-item .item .projects-highlights-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent radial-gradient(closest-side at 0% 0%, #0C45958C 0%, #0c459538 100%) 0% 0% no-repeat padding-box;
    z-index: 1;
}

.projects-highlights-item{
    min-height: 620px;
}
.projects-highlights-container img{
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.projects-highlights-container h4{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    z-index:2;
    max-width: 400px;
}
.projects-highlights-container p{
    color: #fff;
    max-width: 400px;
}
.home-highlights-slider .projects-highlights-info p.highlights-date{
    color: #F04E37;
}
.projects-highlights-container .projects-highlights-info{
    position: absolute;
    min-height: 250px;
    width: 100%;
    bottom: 0;
    padding: 30px 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.home-recent-projects-slider .projects-highlights-info{
    background-color: #F04E37de;
}
.home-highlights-slider .projects-highlights-info{
    background-color: #0c4595de;
}
.projects-highlights-container .owl-nav{
    position: absolute;
    top: 390px;
    width: 100%;
    max-width: 500px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.projects-highlights-container .owl-dots{
    display: none;
}
.projects-highlights-container  .owl-nav button.owl-next,
.projects-highlights-container .owl-nav button.owl-prev{
    padding: 0px !important;
    width: 35px;
    height: 45px;
    font-size: 30px;
    background-color: transparent !important;
}
.projects-highlights-container  .owl-nav button.owl-next span,
.projects-highlights-container .owl-nav button.owl-prev span {
    color: #fff;
}
.energya-numbers-container{
    padding-top: 80px;
    padding-bottom: 80px;
}
.energya-numbers-container{
    text-align: center;
}
.energya-numbers-item{
    margin-top: 20px;
}
.energya-numbers-container img{
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center bottom;
    object-position: center bottom;
    margin-bottom: 30px;
}
.energya-numbers-container h3{
    margin-bottom: 15px;
    font-size: 40px;
}
.energya-numbers-container h3:before{
    bottom: -5px;
    width: 68px;
}
.clients-container{
    text-align: center;
    padding: 80px 0px;
}
.clients-container .owl-nav{
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.clients-container .owl-dots{
    display: none;
}
.clients-container .owl-nav button.owl-next,
.clients-container .owl-nav button.owl-prev{
    padding: 0px !important;
    width: 35px;
    height: 45px;
    font-size: 30px;
    margin-top: -25px;
    background-color: transparent !important;
}
.clients-container  .owl-nav button.owl-next span,
.clients-container .owl-nav button.owl-prev span {
    color: #F04E37;
}
.clients-container  .owl-nav button.owl-next:hover span,
.clients-container .owl-nav button.owl-prev:hover span{
    color: #0C4595;
}
.clients-container .info-btn {
    margin-top: 30px;
    display: inline-block;
}
.clients-container .clients-content
{
    margin-bottom: 80px;
}
/* MAIN HERO BANNER */
.main-banner-container{
    /*min-height: 100vh;*/
    background: transparent -o-linear-gradient(top, #082957 0%, #093777 100%) 0% 0% no-repeat padding-box;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#082957), to(#093777)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #082957 0%, #093777 100%) 0% 0% no-repeat padding-box;
}
.main-banner-info-container{
    background-repeat: no-repeat;
    background-position: top right;
    width: 100%;
    padding: 185px 0px 0px;
}
.main-banner-container h1,
.main-banner-container h2,
.main-banner-container p{
    color: #fff;
}
.main-banner-container h1,
.main-banner-container h2{
    font-weight: 800;
}
.main-banner-container h1{
    margin-bottom: 0px;
}
.main-banner-container h2{
    margin: 30px 0px 40px 0px;
}
.main-banner-container .search-bar{
    margin-bottom: 100px;
}
.main-banner-container .search-bar input{
    width: 325px;
    color: #fff !important;
}
.main-banner-container .search-bar input::-webkit-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.74) ;
    opacity: 0.74; /* Firefox */
}
.main-banner-container .search-bar input::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.74) ;
    opacity: 0.74; /* Firefox */
}
.main-banner-container .search-bar input:-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.74) ;
    opacity: 0.74; /* Firefox */
}
.main-banner-container .search-bar input::-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.74) ;
    opacity: 0.74; /* Firefox */
}
.main-banner-container .search-bar input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.74) ;
    opacity: 0.74; /* Firefox */
}
.main-banner-container .search-bar input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.74) ;
}
.main-banner-container .search-bar input::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.74) ;
}
.main-banner-container hr{
    max-width: 560px;
    margin: 0 auto;
    height: 0.5px;
    opacity: 1;
    background-color: #F04E37;
    position:absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
/* PRODUCT CATALOG */
.product-catalog-banner{
    background-image: url("../images/mask-product-bg.svg");
}
.product-catalog-categories{
    width: 100%;
    height: 100%;
    padding-top: 100px;
}
.product-catalog-categories h2{
    text-align: center;
}
.category-item{
    position: relative;
    overflow: hidden;
}
.category-item img{
    width: 100%;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.category-item:hover img{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.category-item h3{
    position:absolute;
    top: 40px;
    left: 0px;
    border-left: solid 10px #F04E37;
    padding: 0px 10px;
    max-width: 250px;
    color: #fff;
}
.category-item-without-image .category-content
{
    margin: 10px 20px;
    padding: 20px 20px 20px 0px;
    background-color: #F5F5F5;
}

.category-item-related {
    color: #F04E37;
    margin-bottom: 15px;
}
.category-item-without-image:hover h3{
    opacity: 1;
    color: #F04E37;
}
.category-item-without-image h3{
    position: unset;
    top: 40px;
    left: 0px;
    border-left: solid 10px #F04E37;
    padding: 5px 35px;
    margin: 0px;
    width: 100%;
    max-width: unset;
    display: flex;
    justify-content: space-between;
    line-height: 50px;
    font-size: 18px;
    color: #000;
}
.category-item-without-image img
{
    width: 35px;
    max-height: 45px;
}
.category-hr {
    width: 50%;
    margin: 50px auto;
    background-color: #F04E37;
}

.product-catalog-certificates{
    padding: 75px 0px;
}
.product-catalog-certificates img
{
    max-width: 100%;
    width: 88px;
}
/* PRODUCTS ARCHIVE */
.product-archive-container{
    padding: 100px 0px 50px 0px
}
.product-archive-titles-container{
    padding-bottom: 40px;
}
.product-filter-icon{
    width: 20px;
    margin-left: 15px;
    margin-bottom:10px
}
.product-sidebar-container{
    background-color: #f2f5fa75 ;
    padding: 30px 40px 50px 40px;
    margin-bottom: 50px;
}
.product-sidebar-container .accordion-button{
    color: #545454;
    font-weight: 500;
    font-size: 15px;
    padding: 20px 0px;
    background-color: transparent;
}
.product-sidebar-container .accordion-body{
    padding: 0px;
    padding-bottom: 20px;
    background-color: transparent;
}
.product-sidebar-container .accordion-body input:hover,
.product-sidebar-container .accordion-body label:hover{
    cursor: pointer;
}
.product-sidebar-container  .accordion-item{
    background-color: transparent;
    padding: 10px 0px;
    border: 0px;
    border-radius: 0px;
    border-bottom: 0.30000001192092896px solid #F04E37;
}
.accordion-button::after{
    content:"\f067";
    color:#0C4595;
    font-weight: 100;
    font-family: FontAwesome;
    text-align: right;
    background-image:none !important;
    -webkit-transform:none !important;
    -ms-transform:none !important;
    transform:none !important;
}
.accordion-button:not(.collapsed)::after{
    content:"\f068";
}
.accordion-item label.form-check-label {
    font-size: 16px;
}
.form-check-input[type=checkbox]{
    background: none !important;
    border: 0px;
    position: relative;
}
.form-check-input[type=checkbox]:before{
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #0C4595;
    border-radius: 9px;
    opacity: 0.35;
}
.form-check-input:checked[type=checkbox]:before{
    opacity: 1;
}
.form-check-input:checked[type=checkbox]:after{
    position: absolute;
    content: "";
    background: #0C4595 0% 0% no-repeat padding-box;
    border-radius: 6px;
    width: 6px;
    height: 6px;
    margin-left: 5px;
    margin-top: 5px;
}
.product-item{
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 20px #0000000F;
    box-shadow: 0px 3px 20px #0000000F;
    margin-bottom: 50px;
}
.product-item > img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
}
.product-item-info-data{
    padding: 20px 20px 20px 35px;
}
.product-item-info-data h5{
    margin-bottom: 30px;
    font-weight: bold;
}
.product-item-info-data h5:before{
    height: 1px;
}
.product-item-description{
    margin-bottom: 30px;
}
.product-item-description span{
    display: block;
}
.products-pagination .page-item .page-link span{
    color: #F04E37;
}
.products-pagination .page-item .page-link{
    border: 0px;
    background-color: transparent !important;
    border-bottom: solid 1px transparent;
    color: #F04E37 !important;
    border-radius:0px ;
    padding: 5px 5px;
    margin: 0px 5px !important;
}
.products-pagination .page-item .page-link:hover,
.products-pagination .page-item.active .page-link{
    border-color: #F04E37 !important;
}
.products-pagination .page-item .page-link i{
    color: #F04E37;
}
.product-archive-sort-btn{
    background-color: transparent;
    border: 0px;
    font-weight: 500;
    font-size: 15px;
}
.product-archive-sort-btn svg {
    margin-left: 15px;
}
.product-archive-sort-btn:hover svg .a{
    fill: #0C4595;
}
/* PRODUCT SINGLE */
.product-single-banner {
    position: relative;
}
.main-banner-info-container{
    position: relative;
}
.product-single-banner .main-banner-info-container  {
    background-image: url("../images/mask-product-bg.svg");
    padding: 100px 0px 0px;
}
.product-single-banner h1{
    margin-top: 100px;
}
.product-single-breadcrumb-container{
    position:absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}
.product-single-breadcrumb-container .breadcrumb{
    margin-bottom: 10px;
}
.product-single-breadcrumb-container .breadcrumb .breadcrumb-item a,
.product-single-breadcrumb-container .breadcrumb .breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff59;
}
.product-single-breadcrumb-container .breadcrumb li a:hover{
    color: #F04E37;
}
.product-single-breadcrumb-container .breadcrumb .breadcrumb-item:before{
    display: none;
}
.product-single-breadcrumb-container .breadcrumb li .arrow{
    margin: 0px 5px;
    border-color: #F04E37;
}
.product-single-info-container{
    /*background-image: url("../images/product-single-bg-img-min.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: top -150px right -50px;*/
    /*background-size: 600px;*/
}
.product-single-description{
    padding: 80px 0px;
}
/*
.product-single-description ul,
.product-single-tab-content ul {
    margin-top: 40px;
}*/
.about-info-container ul li,
.product-single-description ul li,
.product-single-tab-content ul li{
    position: relative;
    padding-left: 15px;
}
.about-info-container ul li::before,
.product-single-description ul li::before,
.product-single-tab-content ul li:before {
    content: "•";
    color: #F04E37;
    font-size: 30px;
    line-height: 5px;
    position: absolute;
    top: 9px;
    left: 0;
}
.product-single-img-btn-container{
    margin-top: 10%;
    position: relative;
}
.product-single-img-btn-container .product-single-img{
    width: 100%;
    margin-bottom: 80px;
    min-height: 350px;
    max-height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
    /*-webkit-box-shadow: 0px 3px 20px #0000000F;*/
    /*        box-shadow: 0px 3px 20px #0000000F;*/
}
.product-item-btns{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.product-item-btns a {
    margin-bottom: 10px;
}
.product-single-img-btn-container .cable-cross-img{
    position: absolute;
    top: 0;
    right: 0;
    border: solid 0.5px #F04E37;
}
.product-single-img-btn-container .cable-cross-img img {
    width: 100px;
}
.product-single-img-btn-container .quick-quote-btn{
    margin-left: 10px;
}
.product-single-specs .nav-link{
    min-width: auto !important;
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
    margin-right: 20px;
}
.product-single-tab-content{
    margin-bottom: 50px;
}
.cable-construction-tab img {
    width: 600px;
}
.cable-construction-list ul{
    background-color: #f2f5fa75;
    padding: 30px 20px;
    margin: 0px;
}
.cable-construction-list ul li{
    list-style: decimal !important;
    padding: 0px;
    width: 200px;
    margin: 20px auto;
}
.cable-construction-list ul li:before{
    display: none;
}
.product-single-table-container{
    overflow-x: auto;
    overflow-y: hidden;
    height: 343px;
}
.product-single-table-container.full-view{
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.product-single-table-container .round-icon-btn{
    display: inline-block;
}
.product-single-table-container .table-striped>tbody>tr:nth-of-type(odd){
    background-color: #F2F5FA;
    --bs-table-accent-bg: none;
}
.product-single-table-container .table-striped>tbody>tr:nth-of-type(even){
    background-color: #E1E8F2;
    --bs-table-accent-bg: none;
}
.product-single-table-container thead{
    margin-bottom: 20px;
}
.product-single-table-container th {
    border: 0px;
    font-weight: 400;
    vertical-align: middle;
}
.product-single-table-container tbody th {
    min-width: 450px;
    text-align: center;
    border-bottom: solid 3px #fff;
    border-right: solid 3px #fff;
}
.product-single-table-container tbody th button{
    margin-left: 40px;
}
.product-single-table-container  td {
    padding-left: 26px !important;
    min-width: 190px;
    vertical-align: middle;
    border-bottom: solid 3px #fff;
}
.product-single-table-container thead button{
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0px;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 20px;
}
.product-single-table-container thead button:hover{
    color: #F04E37;
}
.product-single-table-container thead button i{
    margin-right: 10px;
    color: #F04E37;
}
.table-more-btn-container{
    text-align: center;
    margin-top: 50px;
}
.table-more-btn-container a{
    position: relative;
}
.table-more-btn-container a span{
    position: relative;
    border-color: #fff ;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.table-more-btn-container a:before {
    width: 20px;
    height: 20px;
    background-color: #0C4595;
    position: absolute;
    border-radius: 50%;
    content: "";
    top: 8.5px;
    right: -5.5px;
    z-index: -1;
}
.product-single-tab-content h5{
    font-size: 17px;
    font-weight: 600;
    color: #F04E37;
    margin-bottom: 40px;
}
.product-single-pdf-container{
    text-align: center;
    margin-top: 50px;
}
.product-single-pdf-container h5{
    font-size: 17px;
    font-weight: 600;
    padding-bottom: 30px;
}
/* POPUPS */
.modal-backdrop{
    background-color: #030d1cd1 ;
}
.modal-backdrop.show {
    opacity: 1;
}
.modal-content{
    border-radius: 0px;
}
.modal-content button.btn-close,
.product-cart-item button.btn-close {
    position: absolute;
    right: 30px;
    top: 30px;
    border-radius: 50%;
    background-color: #F04E37;
    opacity: 1;
    background-image: none;
}
.modal-content button.btn-close:hover,
.product-cart-item button.btn-close:hover{
    background-color: #0C4595;
}
.btn-close:before, .btn-close:after {
    position: absolute;
    top: 7px;
    left: 12px;
    content: ' ';
    height: 12px;
    width: 1px;
    background-color: #fff;
}
.btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.quick-quote-popup .modal-body{
    padding-top: 0px;
    padding-bottom: 0px;
}
.quick-quote-popup .modal-dialog.modal-dialog-centered.modal-xl {
    width: 1320px;
    max-width: 90%;
    margin: 20px auto;
}
.quick-quote-popup-title{
    padding: 30px 40px;
    background-color: #F04E37;
    -webkit-box-shadow: 0px 3px 6px #00000029;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 0px 12px 12px;
    max-width: 290px;
    margin-bottom: 50px;
    margin-top: -0.1px;
}
.quick-quote-popup-title img{
    width: 48px;
    margin-right: 15px;
}
.quick-quote-popup-title h3{
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0px;
}
.quick-quote-popup-product-img img{
    width: 100%;
    -webkit-box-shadow: 0px 3px 20px #0000000F;
    box-shadow: 0px 3px 20px #0000000F;
}
.quick-quote-popup h2{
    margin-top: 30px;
    margin-bottom: 60px;
}
.quick-quote-popup-info{
    padding-left:30px;
}
.popup-specs li,
.product-cart-item li{
    font-size: 16px;
    font-weight: bold;
    color: #F04E37;
    margin-bottom: 30px;
}
.popup-specs span,
.product-cart-item span{
    font-weight: normal;
    color: #2A2A2A;
    margin-right: 30px;
    min-width: 155px;
    display: inline-block;
}
.quick-quote-popup-info form select,
.product-cart-item form select{
    -webkit-box-shadow: 0px 1px 4px #00000021 !important;
    box-shadow: 0px 1px 4px #00000021 !important;
    border-radius: 22px;
    border-color: #fff !important;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #2a2a2a66;
    padding: 10.55px ​25px;
    text-align: center;
    -moz-text-align-last: center;
    text-align-last: center;
}
.quick-quote-popup .popup-btn-container{
    padding-bottom: 50px;
}
.cart-successfully-popup .modal-content {
    max-width: 1000px;
    padding: 80px 0px;
}
.cart-successfully-popup{
    text-align: center;
}
.cart-successfully-popup h2{
    margin-bottom: 20px;
}
.cart-successfully-popup p span{
    font-weight: bold;
    color: #F04E37;
    margin-left: 20px;
}
.popup-btn-container{
    margin-top: 40px;
}
.popup-btn-container a{
    margin-right: 10px;
}
.view-cart-btn {
    color: #fff;
}
.view-cart-btn img{
    width: 35px;
}
.view-cart-btn span{
    color: #fff !important;
    width: 24px;
    height: 24px;
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    padding: 1px;
    border-radius: 50%;
    background-color: #F04E37;
    margin-left: 10px;
    text-align: center;
}
.view-cart-btn:hover span{
    background-color: #0C4595;
}
/* CART PAGE */
.product-cart-container{
    padding: 80px 0px 80px 0px;
}
.cart-product-number{
    font-size: 22px;
    font-weight: 500;
}
.product-cart-items-container{
    margin-top: 30px;
}

.product-cart-item  label{
    margin-bottom: 15px;
    text-align:center;
    display:block
}

.product-cart-item{
    position: relative;
    background-color: #fff;
    padding: 30px 0px;
    -webkit-box-shadow: 0px 3px 20px #0000000F;
    box-shadow: 0px 3px 20px #0000000F;
    margin-bottom: 20px;
}
.product-cart-item  .cart-product-img-name{
    border-right: solid 1px #F04E37;
    padding: 10px 0px;
}
.product-cart-item .cart-product-img-name img{
    height: 150px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
}
.product-cart-item .cart-product-img-name h5 {
    margin-bottom: 30px;
    font-weight: bold;
    padding: 0px 25px;
}
.product-cart-item .cart-product-img-name h5:before{
    height: 1px;
}
.product-cart-item form select{
    width: 350px;
    max-width: 100%;
    margin: 0 auto 15px auto;
}
.cart-product-pagination{
    margin-top: 50px;
}

.quick-quote-popup-info form{
    text-align:center;
}

.quick-quote-popup-info form label{
    margin-bottom:15px;
}

/* CHECKOUT */
.checkout-container{
    padding: 100px 0px;
    text-align: center;
}
.checkout-container .main-form{
    margin-top: 50px;
}
.checkout-container .main-form button{
    margin-top: 20px;
}

.checkout-container form label{
    display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

/* CONTACT US */
.contact-us-banner {
    position: relative;
}
.contact-us-banner .main-banner-info-container {
    background-image: url("../images/contact-bg-img.png");
    padding: 170px 0px 117px;
}
.contact-us-banner .search-bar{
    margin-bottom: 0px;
}
.contact-us-container {
    padding-top: 50px;
    padding-bottom: 50px;
}
.contact-us-container .main-form{
    margin-top: 50px;
}
.contact-us-container .main-form button{
    margin-top: 20px;
}
.contact-us-form-container{
    text-align: center;
    padding: 50px 0px;
}

.contact-us-form-container form label{
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

.contact-info img{
    width: 300px;
    margin-bottom: 50px;
}
.contact-info strong,
.contact-info h6{
    color: #F04E37;
    font-size: 14px;
}
.contact-info strong{
    width: 80px;
    display: inline-block;
}
.contact-info p{
    margin: 15px 0px;
}
.contact-us-form-container{
    padding-right: 40px;
    border-right: solid 1px #F04E37;
}
.contact-info{
    padding-left: 40px;
}
/* CAREERS */
.careers-banner {
    position: relative;
}
.careers-banner .main-banner-info-container {
    background-image: url("../images/careers-bg-img.png");
    padding: 185px 0px 120px;
}
.careers-info-container{
    padding-top: 50px;
}
.careers-form-container{
    padding: 100px 0px;
    text-align: center;
}

.careers-form-container form label{
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

.careers-form-container .main-form{
    margin-top: 50px;
}
.careers-form-container .main-form button{
    margin-top: 20px;
}
.work-environment-card{
    background: url("../images/work-env-bg-img.png");
}
.our-culture-card{
    background: url("../images/our-culture-bg-img.png");
}
.careers-info-container .text-card {
    background-position: center right !important;
}
/* SERVICES */
.services-banner {
    position: relative;
}
.services-banner .main-banner-info-container {
    background-image: url("../images/energya cables.png");
    padding: 185px 0px 120px;
    background-size: 550px;
    background-position: bottom right;
    margin-right: 42px;
}
.services-banner .search-bar{
    margin-bottom: 0px;
}
.services-info-container{
    padding: 50px 0px 100px 0px;
}
.services-info-container .text-card-inner-container img {
    position: absolute;
    right: 30px;
    top: 42.5px;
}
.cable-calculator-card{
    /*background: url("../images/cable-calculator-card-bg-img.png");*/
    background: transparent;
}
.quick-quote-card{
    background: url("../images/quick-quote-card-bg-img.png");
}
/* ACCREDITATION */
.accreditation-banner {
    position: relative;
}
.accreditation-banner .main-banner-info-container {
    background-image: url("../images/accreditation-bg-img.png");
    padding: 170px 0px 117px;
        background-position: bottom right;
}
.accreditation-banner .search-bar{
    margin-bottom: 0px;
}
.accreditation-certificates-container{
    padding: 100px 0px 50px 0px;
    /*background-image: url("../images/home-services-shortcuts-bg.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: top -100px right -450px;*/
}
.accreditation-certificates-container .item{
    padding: 0px 30px;
}
.accreditation-certificates-container .one-slide-thumbs-carousel:before {
    content: "";
    position: absolute;
    width: calc(100% - 50px);
    height: calc(100% + 10px);
    background-color: #000;
    top: 0;
    left: 30px;
    z-index: -1;
}
.accreditation-certificates-container .owl-nav{
    margin-top: 10px;
    position: absolute;
    width: 100%;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -20px;
}
.accreditation-certificates-container .owl-nav button.owl-next,
.accreditation-certificates-container  .owl-nav button.owl-prev {
    padding: 0px !important;
    width: 10px;
    height: 45px;
    font-size: 30px;
    background-color: transparent !important;
}
.accreditation-certificates-container .owl-nav button span {
    color: #F04E37;
}
.accreditation-certificates-container .owl-dots{
    display: none;
}
.accreditation-certificates-container  .owl-thumbs{
    margin-top: 50px;
}
.accreditation-certificates-container  .owl-thumb-item{
    max-width: 140px;
    margin: 5px;
    position: relative;
}
.accreditation-certificates-container  .owl-thumb-item::before{
    content: "";
    position: absolute;
    bottom: -10px;
    opacity: 0;
    left: 50%;
    margin-left: -32.5px;
    width: 65px;
    height: 5px;
    background-color: #F04E37;
}
.accreditation-certificates-container  .owl-thumb-item:hover,
.accreditation-certificates-container  .owl-thumb-item.active::before,
.accreditation-certificates-container  .owl-thumb-item:hover:before{
    opacity: 1;
    cursor: pointer !important;
}
.accreditation
{
    padding: 60px 0px;
}
.accreditation .cprs-image img
{
    display: block;
    margin: 20px auto;
}
.accreditation .certificate-item
{
    background-color: #fff;
    box-shadow: 0px 3px 20px #0000000F;
    margin: 15px 10px;
    padding: 30px 25px;
}
.accreditation .certificate-content
{
    display: flex;
    justify-content: space-between;
}
.accreditation .certificate-item h5
{
    font-weight: bold;
}
.accreditation .certificate-item h5:after
{
    content: "";
    width: 45px;
    height: 1px;
    background-color: #f04e376e;
    display: block;
    margin-top: 8px;
}
.accreditation .view-certificate a
{
    color: #0C4595;
    font-size: 13px;
    font-weight: 600;
}
.accreditation .certificate-parameters ul
{
    margin-top: 15px;
}
.accreditation .certificate-parameters li
{
    font-size: 16px;
    color: #2A2A2A;
}
.accreditation .certificate-parameters li span
{
    color: #F04E37;
    font-weight: bold;
    font-size: 16px;
    margin-left: 50px;
}


#certificates-thumbs-carousel .owl-item::after{
    content: "";
    bottom: 0px;
    opacity: 0;
    left: 50%;
    margin-left: -32.5px;
    width: 65px;
    height: 5px;
    background-color: #F04E37;
}
#certificates-thumbs-carousel .owl-item:hover
{
    cursor: pointer !important;
}
#certificates-thumbs-carousel .owl-item.current::after{
    opacity: 1;
}
#one-slide-thumbs-carousel.one-slide-thumbs-carousel:before {
    box-shadow: rgb(0 0 0 / 4%) -1px -1px 4px 2px;
}
#certificates-thumbs-carousel .item {
    padding: 4px 30px;
}
#certificates-thumbs-carousel .item img {
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.quality-sustainability-container{
    padding: 50px 0px;
}
.quality-sustainability-container .text-card{
    min-height: 630px;
    margin-top: 0px;
}
.quality-sustainability-container .text-card-inner-container{
    height: 315px;
    bottom: 0;
    top: inherit;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px;
    background: transparent -o-linear-gradient(top, #08295700 0%, #082957CC 100%) 0% 0% no-repeat padding-box;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#08295700), to(#082957CC)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, #08295700 0%, #082957CC 100%) 0% 0% no-repeat padding-box;
}
.quality-sustainability-container .text-card:hover .text-card-inner-container{
    bottom: 0;
    top: inherit;
}
.quality-assurance-card{
    background-image: url("../images/quality-assurance-img.png");
}
.sustainability-card{
    background-image: url("../images/sustainability-img.png");
}
.quality-sustainability-container h2{
    margin-bottom: 0px;
}
.quality-sustainability-info,
.quality-sustainability-container h2{
    width: 555px;
    max-width: 100%;
    padding: 30px ;
}
.quality-sustainability-container h2::before{
    bottom: 15px;
}
.our-policies{
    background-color: #F9FAFD;
    padding: 80px 0px 50px 0px;
    /*background-image: url("../images/home-services-shortcuts-bg.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position:center  right -250px*/
}
.our-policies h2{
    margin-bottom: 60px;
}
.accreditation-certificates-container h5,
.quality-sustainability-container h5,
.our-policies h5{
    color: #F04E37;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 17px;
}
.accreditation-certificates-container p,
.accreditation-certificates-container ul,
.quality-sustainability-container p,
.quality-sustainability-container ul,
.our-policies p,
.our-policies ul{
    margin-bottom: 25px;
}
.accreditation-certificates-container li,
.quality-sustainability-container li,
.our-policies  li{
    position: relative;
    padding-left: 15px;
}
.accreditation-certificates-container li::before,
.quality-sustainability-container li::before,
.our-policies li::before {
    content: "•";
    color: rgb(225, 113, 17);
    font-size: 30px;
    line-height: 5px;
    position: absolute;
    top: 9px;
    left: 0px;
}
/* PROJECTS */
.projects-banner {
    position: relative;
}
.projects-banner .main-banner-info-container {
    background-image: url("../images/projects-banner-bg-img.png");
    padding: 170px 0px 117px;
}
.projects-banner .search-bar{
    margin-bottom: 0px;
}
.prev-projects-container{
    padding: 100px 0px;
}
.prev-projects-container h2.u-line{
    margin-bottom: 60px;
}
.projects-highlights-item{
    min-height: 620px;
    position: relative;
}
.prev-projects-container img{
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.prev-projects-container .projects-highlights-item h4{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    z-index:2;
    max-width: 400px;
}
.prev-projects-container .projects-highlights-item p{
    color: #fff;
    max-width: 400px;
}
.prev-projects-container .projects-highlights-info p.highlights-date{
    color: #F04E37;
}
.prev-projects-container .projects-highlights-info{
    position: absolute;
    min-height: 230px;
    width: 100%;
    bottom: 0;
    padding: 30px 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.prev-projects-container .projects-highlights-info{
    background-color: #0c4595de;
}
.prev-projects-container .owl-nav{
    position: absolute;
    top: 425px;
    width: calc(40% - 13px);
    /* max-width: 500px; */
    left: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.prev-projects-container .owl-dots{
    display: none;
}
.prev-projects-container  .owl-nav button.owl-next,
.prev-projects-container .owl-nav button.owl-prev{
    padding: 0px !important;
    width: 35px;
    height: 45px;
    font-size: 30px;
    background-color: transparent !important;
}
.prev-projects-container  .owl-nav button.owl-next span,
.prev-projects-container .owl-nav button.owl-prev span {
    color: #fff;
}
.prev-projects-info-container{
    padding-left: 50px;
    width: 100%;
}
.prev-projects-info-container h5{
    color: #F04E37;
    font-size: 17px;
    font-weight: 600;
}
.prev-project-info-item{
    width: 100%;
    padding: 30px 0px 20px 0px;
    border-bottom: solid 1px #F04E37;
}
.prev-projects-info-container .prev-project-info-item:last-child {
    border-bottom: none;
}
.prev-project-info-item ul li{
    position: relative;
    padding-left: 15px;
}
.prev-project-info-item ul li::before{
    content: "•";
    color: #F04E37;
    font-size: 30px;
    line-height: 5px;
    position: absolute;
    top: 9px;
    left: 0;
}
.news-media-container{
    padding: 20px 0px 80px  0px;
}
.news-media-container h2.u-line{
    margin-bottom: 60px;
}
.news-media-items-container .row:nth-child(even){
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.news-media-item {
    min-height: 540px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}
.news-media-item:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent -o-radial-gradient(0% 0%, closest-side, #0C4595 0%, #0C459554 100%) 0% 0% no-repeat padding-box;
    background: transparent radial-gradient(closest-side at 0% 0%, #0C4595 0%, #0C459554 100%) 0% 0% no-repeat padding-box;
    opacity: 0.7;
    z-index: -1;
}
.news-media-item img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    z-index: -2;
}
.news-media-item h3{
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    max-width: 425px;
}
.news-media-item h3:before{
    content: "";
    position: absolute;
    left: -25px;
    width: 10px;
    height: 100%;
    background-color: #F04E37;
}
.news-media-item p{
    color: #fff;
}
.news-media-item .news-media-title-date{
    padding: 30px 25px 20px  25px ;
    background: transparent -webkit-gradient(linear, left top, right top, from(#0C45954D), to(#0C459500)) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(left, #0C45954D 0%, #0C459500 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #0C45954D 0%, #0C459500 100%) 0% 0% no-repeat padding-box;
}
.news-media-item .news-media-info {
    padding: 30px 25px;
    background-color: #F04E37;
    opacity: 0;
}
.news-media-item:hover .news-media-info{
    opacity: 0.9;
}


/* About US */
.about-banner
{
    min-height: 690px;
    position: relative;
}
.about-banner .main-banner-info-container
{
    background-image: url("../images/about-bg-img.png")
}
.about-banner .search-bar
{
    margin-bottom: 0px;
}
.about-info-container
{
    padding: 100px 0px;
    /*background-color: #F9F9F9;*/
    /*background-image: url("../images/home-services-shortcuts-bg.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: top -100px right -450px;*/
}
.about-info-container .about-info-logo
{
    display: flex;
    height: 100%;
}
.about-info-container .about-info-logo img
{
    margin: auto;
}
.about-info-container .about-info-hr
{
    width: 0.5px;
    height: 100%;
    margin: auto;
    background-color: #2A2A2A;
}
.about-info-container .about-info-content
{
    margin: 15px 0px 25px;
}
.about-info-content .round-btn
{
    text-transform: uppercase;
}
.about-info-content .ap-btn
{
    margin-right: 15px;
    background-color: transparent;
}
.about-info-content .ap-btn:hover
{
    background-color: #0C4595;
}
.about-info-container ul li{
    font-size: 16px;
    margin-bottom: 30px;
}
.our-mission{
    background: url("../images/ourMession.png");
}
.our-vission{
    background: url("../images/vision-bg-img.png");
}
.energya-pts-card{
    background-image: url("../images/energya-pts-bg-img.png");
}
.about-numbers-container{
    background-image: url("../images/projects-highlights-numbers-container-bg.png");
    background-repeat: no-repeat;
    background-position: bottom left -275px;
}


/* FOOTER */
footer{
    background-image: url("../images/footer-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.certificates-container,
.footer-info-container{
    padding: 90px 0px;
}
.certificates-container img{
    margin: 10px 20px;
    max-width: initial;
}
.certificates-container{
    text-align: center;
}
footer hr{
    max-width: 560px;
    margin: 0 auto;
    opacity: 1;
}
.footer-logo{
    text-align: center;
}
.footer-info strong,
.footer-info h6{
    color: #F04E37;
    font-size: 14px;
}
.footer-info strong{
    width: 80px;
    display: inline-block;
}
.footer-info p{
    margin: 20px 0px 30px 0px;
}
.footer-site-map li a{
    font-size: 15px;
    font-weight: 600;
}


/* Start Calculator Page */
.calculator #apply
{
    padding: 100px 0px 50px;
}
.calculator .results .note
{
    font-size: 16px;
    font-weight: 600;
    color: #F04E37;
}

.calculator .results .result-content
{
    background-color: #F5F5F5;
    padding: 20px 20px 20px 0px;
    margin: 15px 0px;
}
.calculator .results .result-content span{
    color: #F04E37;
    font-weight: bold;
}
.calculator .results .result-content p{
    font-weight: 600;
    position: unset;
    top: 40px;
    left: 0px;
    border-left: solid 8px #F04E37;
    padding: 5px 15px;
    margin: 0px;
    width: 100%;
    max-width: unset;
    display: flex;
    justify-content: space-between;
    line-height: 25px;
    font-size: 17px;
    color: #000;
}
.calculator .results .btn-container
{
    float: left;
}
.calculator .results .btn-container .arrow
{
    transform: rotate(45deg);
}
.calculator .results .btn-container:hover .arrow
{
    border-color: #F04E37;
}
.calculator .results .btn-container:hover .reset-btn
{
    color: #F04E37;
}

.recommended-cable .product-cart-container
{
    padding: 50px 0px;
}
.recommended-cable .btn-container
{
    float: right;
}
.recommended-cable .btn-container> a
{
    width: 220px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
}

.center-certification{
    width: fit-content;
    position: relative;
    margin: auto;
}

.info-btn:before {
    background-color: white !important;
}
/* End Calculator Page */