/*Basics*/
:root {
    --mainRedColor: #e0232f;
    --mainLightGrayColor: #f3f3f3;
    --mainLightBlackColor: #403f3e;
    --mainBlackColor: #222c2f;
    --mainCopyColor: #212121;
    --mainFontFamily: 'Poppins', sans-serif;
    --mainSubFamily: 'Conthrax SemiBold', sans-serif;
    --mainFairyFontFamily: 'Playfair Display', sans-serif;
    --mainOutfitFontFamily: 'Outfit', sans-serif;
}
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: var(--mainFontFamily);
}
body{
    font-size: 14px;
}
h1,h2,h3,h4,h5,h6{
    line-height: 1;
}
.container-fluid{
    padding: 0;
    max-width: 1920px;
}
.container{
    width: 100%;
    max-width: 1110px;
}
a{
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.transition-effect {
    transition: all 0.5s ease-in-out;
}
.btn-custom{
    width: 163px;
    text-transform: uppercase;
    text-decoration: none;
    color: #2e2e2e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    padding: 20px 0;
    background-color: var(--mainRedColor);
}
.special-container{
    max-width: 1135px;
}

/*Fonts*/
@font-face {
    font-family: 'Conthrax SemiBold';
    font-style: normal;
    font-weight: normal;
    src: local('fonts/Conthrax SemiBold'), url('fonts/conthrax-sb.woff') format('woff');
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    src: url('fonts/poppins-v20-latin-100.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    src: url('fonts/poppins-v20-latin-200.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/poppins-v20-latin-300.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/poppins-v20-latin-regular.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/poppins-v20-latin-500.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/poppins-v20-latin-600.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/poppins-v20-latin-700.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/poppins-v20-latin-800.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/poppins-v20-latin-900.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/playfair-display-v37-latin-regular.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/playfair-display-v37-latin-italic.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/outfit-v11-latin-regular.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/outfit-v11-latin-500.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/outfit-v11-latin-600.woff2') format('woff2'); 
}
@font-face {
    font-display: swap; 
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/outfit-v11-latin-700.woff2') format('woff2'); 
}

/*Header*/
.header-full {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.header-container {
    margin: 0 auto;
    display: flex;
    position: relative;
}
.hcolumn {
    box-sizing: border-box;
    padding: 10px 0;
}
.left-hcolumn {
    background-color: #fff;
    position: relative;
    padding-right: 15px;
}
.right-hcolumn {
    background-color: transparent;
    position: relative;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-row{
    width: 100%;
}
.header-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--offset-difference); /* Use a CSS variable to control the width */
    background-color: #fff; 
    z-index: 0; 
}
.triangular-div{
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 0px solid transparent; 
    border-bottom: 50px solid transparent; 
    border-right: 20px solid #000;
    display: none;
    z-index: 1;
}
.siteh_phone,
.siteh_loc,
.siteh_mail{
    position: relative;
    display: inline-block;
    line-height: 1;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-right: 20px;
}
.shp2{
    display: none;
}
.siteh_lang{
    margin-right: 0;
}
.siteh_phone img,
.siteh_loc img,
.siteh_mail img{
    width: 14px;
    height: auto;
    vertical-align: middle;
    margin-right: 2px;
}
.siteh_loc img{
    width: 13px;
}
.siteh_phone a,
.siteh_mail a,
.siteh_loc a{
    color: #fff;
    text-decoration: none;
}
.siteh_phone a:hover,
.siteh_mail a:hover,
.siteh_loc a:hover{
    opacity: 0.75;
}
.siteh_mail{
    margin-right: 0;
}

/*navbar*/
.navbar-expand-lg .navbar-nav .nav-link{
    padding: 0;
    color: #11120d;
    font-size: 15px;
    font-family: var(--mainFontFamily);
    position: relative;
}
.nav-item{
    padding: 0 20px;
}
.nav-item:nth-child(1){
    padding-left: 8px;
}

.nav-link:hover::after,
.nav-item .active::after {
    content: '';
    position: absolute;
    bottom: -3px; 
    left: 50%; 
    width: 50%;
    height: 3px; 
    background-color: var(--mainRedColor); 
    transition: width 0.3s ease;
    transform: translateX(-50%);
}
.nav-btn-wrapper {
    font-size: 13px;
    color: #2a2a2a;
    line-height: 1;
    font-weight: 500;
    padding: 0 !important;
}
.nav-btn{
    text-decoration: none;
    color: #fff;
}
.nav-btn-wrapper span {
    display: inline-block;
    margin-bottom: 3px;
}
.nav-btn div:nth-child(2) span:nth-child(1) {
    font-size: 14px;
}
.nav-btn div:nth-child(2) {
    padding-left: 7px;
}
.nav-btn div:nth-child(2) span:nth-child(2){
    margin-bottom: 0;
}
.nav-btn img {
    width: auto;
    margin-right: 5px;
}
.nav-btn {
    background-color: var(--mainRedColor);
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 3px;
    text-align: center;
    padding: 13px 10px 11px 10px !important;
}
.logo2{
    display: none;
}
.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
}
.bar {
    height: 1px; 
    background-color: #e0232f; 
}
.bar1 {
    width: 100%;
}
.bar2 {
    width: 50%;
    margin-left: auto;
}
.bar3 {
    width: 75%; 
    margin-left: auto;
}


/*Hero section*/
.heroSeciton2 .hero-back {
    background-image: url(../images/graphics/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.hero-inner {
    padding: 125px 0 150px 0;
}
.carosuel-footer {
    margin-top: 25px;
}
.carosuel-footer a {
    width: 163px;
    text-transform: uppercase;
    text-decoration: none;
    color: #2e2e2e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    padding: 20px 0;
    background-color: #ffe9a5;
}
.carosuel-footer a:nth-child(1) {
    margin-right: 15px;
}
.carousel-indicators {
    bottom: -90px;
    margin-left: 0;
    justify-content: flex-start;
}
.carousel-indicators [data-bs-target], .carousel-indicators button {
    width: 10px;
    height: 10px;
    border: 0;
    background-color: #fff;
    opacity: 1;
}
.heroSeciton h1 {
    font-family: var(--mainSubFamily);
    color: #fff;
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}
.carousel-item ul {
    padding-left: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.carousel-item p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
    margin-top: 20px;
}

/*Category Section */
.cat-section{
    margin-top: 47px;
}
.cat-sec-div{
    text-align: center;
}
.cat-sec-div img{
    max-width: 100%;
}
.csd-img-outer{
    background-color: #f84949;
    height: 100px;
    width: 100px;
    padding: 20px;
    border-radius: 15px;
    margin: 0 auto;
}
.cat-sec-div h3{
    color: var(--mainBlackColor);
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    line-height: 1.1;
}


/*Who We are Section*/
.home-about-sec {
    margin-top: 110px;
}
.home-about-sec h3 {
    color: var(--mainRedColor);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
    padding-top: 10px;
}
.ha-rpad {
    padding-right: 32px;
}
.home-about-sec h2 {
    color: var(--mainBlackColor);
    font-size: 40px;
    font-weight: bold;
    font-family: var(--mainSubFamily);
    line-height: 1;
    margin-bottom: 0;
    padding-top: 35px;
}
.ha-lpad {
    padding-left: 32px;
}
.home-about-sec p {
    margin-bottom: 0;
    color: var(--mainCopyColor);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.031em;
    line-height: 1.7;
}
.has-left{
    border-right: 1px solid #e2e2e2;
}
.has-left,
.has-right{
    padding-top: 15px !important;
    padding-bottom: 30px !important;
}

/*Experience Section*/
.home-history-sec {
    margin-top: 70px;
}
.hh-img-holder {
    position: relative;
    padding: 20px;
    margin-left: 30px;
    background-color: #c0c0c0;
    display: inline-block;
}
.hh-img {
    margin-left: -45px;
    margin-bottom: 0;
}
.hh-right {
    display: flex;
    align-items: center;
}
.hhr-width {
    width: 90%;
}
.home-history-sec h2 {
    color: var(--mainBlackColor);
    font-size: 36px;
    font-family: var(--mainSubFamily);
    line-height: 1;
    margin-bottom: 20px;
}
.hh-right p {
    color: var(--mainCopyColor);
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0.031em;
    line-height: 1.5;
}
.hh-right .lastp{
    margin-top: 15px;
}
.hh-right .btn-custom{
    color: #fff;
    margin-top: 30px;
}
.hhsec2{
    margin-top: 100px;
}
.hhsec2 .hh-right .lastp {
    margin-top: 25px;
}
.hhsec2 .btn-custom{
    font-size: 14px;
}


/*Project Section*/
.projects-sec {
    margin-top: 120px;
    background-image: url(../images/graphics/work-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 580px;
    overflow: visible;
    position: relative;
    text-align: center;
    padding-top: 110px;
}
.psec-bg, .blog-bg, .footer-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
}
.projects-sec h3 {
    font-family: var(--mainSubFamily);
    font-size: 16px;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}
.projects-sec h2 {
    font-family: var(--mainSubFamily);
    font-size: 42px;
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
}
.psec-list {
    margin-top: 60px;
}
.psec-list a {
    text-decoration: none;
}
.psec-list a:hover {
    transform: scale(1.02);
}
.psec-list span {
    padding: 40px 15px;
    text-align: center;
    text-transform: capitalize;
    display: block;
    line-height: 1.2;
    font-size: 24px;
    font-family: var(--mainSubFamily);
    letter-spacing: 0.032em;
}
.psecl-1 {
    background-color: #56504b;
    color: #ffffff;
}
.psecl-2 {
    background-color: #5b5651;
    color: #ffffff;
}
.psecl-3 {
    background-color: #635f5b;
    color: #ffffff;
}


/*Service Section*/
.services-sec {
    margin-top: 370px;
}
.services-sec h3 {
    color: var(--mainRedColor);
    font-family: var(--mainSubFamily);
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.041em;
    margin-bottom: 20px;
}
.services-sec h2 {
    color: #232020;
    font-family: var(--mainSubFamily);
    font-size: 33px;
    line-height: 1.2;
    letter-spacing: -0.05em;
}
.sersec-right {
    text-align: right;
    font-size: 0;
    display: flex;
    align-items: center;
}
.sersecrborder {
    /* display: inline-block; */
    width: 47px;
    height: 93%;
    border-left: 1px solid #e2e2e2;
    vertical-align: bottom;
    line-height: 1;
}
.sersecr-box {
    padding: 30px 35px;
    text-align: center;
    text-transform: capitalize;
    background-color: var(--mainRedColor);
    display: inline-block;
    width: 100%;
}
.sersecr-box-inn {
    display: flex;
}
.sersecr-box img {
    width: 50px;
}
.sersecr-bir {
    text-align: left;
    padding-left: 20px;
    padding-top: 7px;
}
.sersecr-box p {
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    font-size: 24px;
    font-family: var(--mainSubFamily);
    margin-bottom: 0;
}
.sersecr-box p:nth-child(1) {
    font-family: var(--mainFontFamily);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 6px;
}

/*Products Section*/
.products-sec {
    margin-top: 100px;
}
.sersec-box{
    margin-bottom: 1.5rem;
}
.sersec-box a {
    text-decoration: none;
}
.sersec-box span {
    display: flex;
    width: 100%;
    padding: 17px 25px;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    background-color: var(--mainLightBlackColor);
}
.sersec-name {
    color: #fff;
    font-family: var(--mainFontFamily);
    font-size: 15px;
    text-transform: capitalize;
    line-height: 1;
}
.sersec-link {
    width: 36px;
    height: 36px;
    background-color: var(--mainRedColor);
    color: #fff;
    line-height: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ssech2{
    color: #232020;
    font-size: 36px;
    font-family: var(--mainSubFamily);
    line-height: 1;
    margin-bottom: 15px;
}
.ssecp{
    color: var(--mainCopyColor);
    font-size: 16px;
    margin-bottom: 30px;
}
.sersec-link img{
    width: 12px;
}


/*Blog Seciton*/
.blog-sec {
    margin-top: 130px;
}
.blog-right {
    position: relative;
    margin-bottom: 0;
    padding: 80px 50px 50px 50px;
}
.blog-right h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 0;
}
.blog-right h2 {
    font-family: var(--mainSubFamily);
    color: #fff;
    font-size: 42px;
    margin-top: 23px;
    margin-bottom: 20px;
}
.blog-con-w {
    width: 73%;
}
.blog-right p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 0;
}
.blog-right span {
    font-family: var(--mainSubFamily);
    color: #fff;
    opacity: 0.2;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 3.5vw;
}
.blog-bg{
    background-color: #181818;
}
.blog-right a {
    text-decoration: none;
    font-family: var(--mainSubFamily);
    color: #fff;
    font-size: 13px;
    padding: 23px 28px;
    text-transform: capitalize;
    margin-top: 30px;
}

/*Home Contact Section*/
.homecontact-sec {
    margin-top: 150px;
    margin-bottom: 120px;
}
.homecontact-left {
    padding: 0 30px;
}
.homecontact-right {
    padding: 0 0 0 30px;
}
.homecontact-right h2 {
    font-family: var(--mainOutfitFontFamily);
    color: #231f20;
    font-weight: 700;
    font-size: 36px;
    text-transform: capitalize;
    border-left: 4px solid var(--mainRedColor);
    padding-left: 20px;
}
.hc-email {
    margin-top: 45px;
    padding: 10px 20px 15px 20px;
    background-color: var(--mainRedColor);
}
.hc-left, 
.hc-right {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}
.hc-right {
    margin-left: 20px;
}
.hc-phone, 
.hc-fax, 
.hc-address {
    margin-top: 25px;
}
.hc-left img {
    width: 50px;
    height: 50px;
}
.hc-right a {
    text-decoration: none;
    font-family: var(--mainOutfitFontFamily);
    font-size: 16px;
    font-weight: 400;
    color: #373737;
}
.hc-right span {
    display: inline-block;
    color: #231f20;
    font-family: var(--mainOutfitFontFamily);
    font-size: 24px;
    font-weight: 700;
}
.hc-email span, 
.hc-email a {
    color: #fff;
}

/*Footer*/
/*Footer*/
.footer-sec{
    margin-top: 140px !important;
    padding-top: 140px;
    position: relative;
    background-image: url(../images/graphics/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-inner{
    margin-top: 50px;
}
.footer-inner .container{
    padding: 0 30px;
}
.footer-social{
    margin-top: 25px;
    text-align: center;
}
.footer-social img{
    width: 17px;
    height: 17px;
}
.footer-social a{
    margin: 0 15px;
}
.footer-copy h3{
    color: #fff;
    font-weight: 600;
    font-size: 24px;
}
.footer-copy .copydiv{
    margin-top: 20px
}
.copydiv p{
    color: #fff;
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.029em;
    margin-bottom: 0;
}
.fconsdiv{
    margin-top: 25px;
}
.fconsdiv p{
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
}
.fconsdiv p:nth-child(2){
    font-size: 32px;
}
.fconsdiv p:nth-child(4){
    font-size: 20px;
}
.fconsdiv svg{
    width: 18px;
    fill: #fff;
}
.footer-copy{
    padding-left: 30px;
}
.footer-form{
    padding: 0;
}
.footer-form h3{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.footer-form p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.05em;
    margin-bottom: 0;
}
.footer-contact-form{
    margin-top: 20px;
}
textarea.fcf-field {
    border-radius: 0;
}
.fcf-field {
    padding: 15px 20px;
    padding-left: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border-bottom: 2px solid #545851;
    border-radius: 0;
    width: 100%;
    background-color: transparent;
    margin-bottom: 17px;
}
.fcf-field:focus{
    background-color: transparent !important;
}
.fcf-field::placeholder{
    color: #fff;
}
.fcf-btn{
    border: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 18px 0;
    width: 167px;
}
.fcf-btn:hover{
    opacity: 0.85;
}
.footer-top{
    padding-bottom: 50px;
}
.footer-bottom{
    padding-top: 25px;
    padding-bottom: 30px;
    margin: 0 15px;
    border-top: 1px solid #30302f;
}
.footer-bottom p{
    font-size: 14px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    opacity: 0.2;
    margin-bottom: 0;
    line-height: 1.5;
}
.footer2-copyright{
    display: none;
}
.footer-social .fb-link img {
    width: 8px;
    height: 17px;
}

/*Plugin social Share*/
.social-container{
    position: relative;
}
.plugin-social{
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}
.plugin-social a{
    display: block;
}
.soc2 .plugin-social{
    right: 0;
}


@media (max-width: 1250px){
    .plugin-social{
        right: 10px;
    }
}

@media (max-width: 1200px){
    .psec-list span{
        min-height: 135px;
        display: flex;
        padding: 0 10px;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }
    .psec-list span br{
        display: none;
    }
    .other-side-sec .row{
        position: relative;
    }
    .other-side-sec .blog-left{
        width: 100%;
    }
    .other-side-sec .blog-right{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-wrap: wrap;
        align-content: center;
    }
    .other-side-sec .blog-bg{
        background-color: rgba(0, 0, 0, 0.85);
    }
    .other-side-sec .blog-right span{
        font-size: 4vw;
    }
    .projects-sec{
        margin-top: 85px;
    }
    .services-sec {
        margin-top: 320px;
    }
    .products-sec {
        margin-top: 80px;
    }


}

@media (max-width: 1100px){
    .heroSeciton h1 br{
        display: none;
    }
    .hhr-width {
        width: 100%;
    }
    .hh-right{
        padding-left: 50px;
    }
    .services-sec {
        margin-top: 290px;
    }
    .nav-item {
        padding: 0 12px;
    }
}

@media (max-width: 1050px){
    .header-row {
        width: auto;
    }
    .siteh_phone, .siteh_loc, .siteh_mail{
        margin-right: 10px;
    }
    .footer-top {
        display: flex;
        justify-content: center;
    }
    .footer-branding {
        width: 45%;
    }
    .footer-copy {
        width: 45%;
        text-align: right;
        padding-left: 15px;
    }
    .footer-form {
        display: block;
        width: 90%;
    }
    .services-sec {
        margin-top: 270px;
    }

}

@media (max-width: 992px){
    button.navbar-toggler {
        margin-top: 15px;
        margin-bottom: 12px;
        border: 0;
    }
    .navbar-toggler-icon {
        background-image: none;
    }
    .bar {
        height: 2px;
    }
    .navbar-collapse {
        position: absolute;
        top: 75px;
        right: 5px;
        width: 50%;
        z-index: 999;
        background-color: var(--mainRedColor);
        color: #fff;
        height: 100vh;
        border-radius: 5px;
    }
    .nav-item {
        display: block;
        padding-bottom: 12px;
        padding-top: 12px;
        padding-left: 20px;
        border-bottom: 1px solid #fff;
        margin-bottom: 0;
        width: 100%;
    }
    .navbar-nav .nav-item:hover .navbar-nav .nav-link:hover, 
    .navbar-nav .nav-link.active{
        color: #fff !important;
    }
    .navbar{
        width: 100%;
        display: block;
        text-align: right;
    }
    .nav-btn-wrapper{
        position: absolute;
        top: 5px;
        right: 60px;
    }
    .nav-link:hover::after, .nav-item .active::after{
        display: none;
    }

    .heroSeciton2 .hero-back{
        background-position: 40%;
    }
    .hero-slider-row .col {
        width: 60%;
    }
    .hero-inner {
        padding: 81px 0 115px 0;
    }
    .hh-img{
        max-width: 100%;
        margin-left: 0;
    }
    .hh-right {
        padding-left: 20px;
    }
    .home-history-sec .row,
    .home-about-sec .row{
        align-items: center;
    }
    .sersec-left{
        text-align: center;
        width: 100%;
    }
    .sersec-right{
        width: 100%;
    }
    .sersecrborder{
        display: none;
    }
    .sersecr-box-inn {
        display: flex;
        justify-content: center;
    }
    .sersec-name{
        line-height: 1.3;
    }
    .home-about-sec {
        margin-top: 65px;
    }
    .services-sec {
        margin-top: 240px;
    }
    .hhsec2 {
        margin-top: 70px;
    }
    .blog-sec {
        margin-top: 100px;
    }
    .homecontact-sec {
        margin-top: 70px;
        margin-bottom: 0;
    }
    .footer-sec {
        margin-top: 90px !important;
        padding-top: 50px;
    }

}

@media (max-width: 850px){
    .fconsdiv {
        margin-left: -100%;
        width: 200%;
        text-align: center;
        overflow: hidden;
    }
    .footer-form {
        margin-top: 50px;
    }

}

@media (max-width: 800px){
    .homecontact-right {
        padding: 0 0 0 10px;
    }
}

@media (max-width: 768px){
    .logo1,
    .left-hcolumn{
        display: none;
    }
    .logo2{
        display: block;
        width: 80%;
    }
    .triangular-div{
        display: none !important;
    }
    .right-hcolumn{
        width: 100%;
        text-align: center !important;
        display: block;
    }
    .nav-row{
        position: relative;
    }
    .logo2-link{
        display: inline-block;
        width: auto;
        position: absolute;
        top: 10px;
        left: -20px;
        z-index: 5;
    }
    .header-container{
        display: block;
    }
    .heroSeciton2 .hero-back {
        background-position: left;
        background-size: auto;
    }
    .hero-inner{
        text-align: center;
    }
    .carousel-indicators{
        width: 100%;
        display: block;
        overflow: hidden;
    }
    .plugin-social {
        right: 0px;
        transform: none;
        bottom: 0;
        top: unset;
        z-index: 2;
    }
    .plugin-social a {
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
    .plugin-social a:last-child {
        opacity: 1; 
    }
    .plugin-social.active a {
        opacity: 1; 
    }
    .home-about-sec {
        margin-top: 20px;
    }
    .home-about-sec .row{
        padding: 0 1rem;
    }
    .has-left{
        border-right: 0;
        text-align: left !important;
    }
    .home-about-sec .ha-rpad{
        padding-right: 0;
    }
    .home-about-sec .ha-lpad{
        padding-left: 0;
        margin-bottom: 10px;
    }
    .home-history-sec .hh-left{
        text-align: center;
        margin-bottom: 30px;
    }
    .home-history-sec .hh-right{
        text-align: center;
    }
    .hh-img-holder{
        margin-left: 0;
    }
    .projects-sec{
        height: auto;
        background-attachment: fixed;
    }
    .psec-list .col {
        width: 70%;
        margin: 0 auto;
        margin-bottom: 25px;
    }
    .other-side-sec .blog-right{
        padding: 50px 50px 50px 50px;
        display: flex;
        align-items: center;
    }
    .blog-con-w {
        width: 100%;
    }
    .other-side-sec .blog-right span{
        position: absolute;
        bottom: 0;
    }
    .homecontact-left iframe{
        height: 300px;
    }
    .homecontact-right{
        margin-top: 30px;
    }
    .footer-branding {
        width: 100%;
        text-align: center;
    }
    .footer-copy {
        width: 100%;
        text-align: center;
        padding-left: 0;
        margin-top: 35px;
    }
    .footer-form {
        display: block;
        width: 100%;
        text-align: center;
    }
    .fconsdiv {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .home-history-sec {
        margin-top: 25px;
    }
    .projects-sec {
        margin-top: 70px;
    }
    .services-sec {
        margin-top: 50px;
    }
    .products-sec {
        margin-top: 60px;
    }
    .hhsec2 {
        margin-top: 50px;
    }
    .blog-sec {
        margin-top: 60px;
    }
    .homecontact-sec {
        margin-top: 35px;
    }
    .hh-right {
        padding-left: 0.5rem;
    }


}

@media (max-width: 650px){
    .other-side-sec .blog-right{
        padding: 20px;
    }
    .other-side-sec .blog-left{
        min-height: 500px;
    }
    .sersec-box {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 586px){
    .shp2{
        display: inline-block;
    }
    .nav-btn-wrapper{
        display: none;
    }
    .cat-section .col-12{
        margin-bottom: 30px;
    }
    .psec-list .col {
        width: 90%;
    }
    .sersecr-box img {
        display: none;
    }
    .sersecr-bir {
        text-align: center;
        padding-left: 0;
        padding-top: 0;
    }
    .other-side-sec .blog-right {
        padding: 20px;
        transform: unset;
        top: auto;
        min-height: 500px;
    }
    .other-side-sec .blog-right span {
        font-size: 18px;
    }
    .sersec-box{
        width: 100%;
    }
    .home-about-sec h2,
    .home-history-sec h2,
    .projects-sec h2,
    .ssech2{
        font-size: 32px;
    }
    .services-sec h2{
        font-size: 24px;
    }

}

@media (max-width: 500px){
    .navbar-collapse{
        width: 85%;
    }
    .heroSeciton h1{
        font-size: 28px;
    }
    .carosuel-footer a{
        padding: 15px 0;
        width: 145px;
    }
    .hh-img-holder {
        background: transparent;
    }

}

@media (max-width: 400px){
    .logo2{
        width: 90%;
    }
    .hc-left img {
        width: 35px;
        height: 35px;
        margin-left: 5px;
    }
    .hc-right {
        margin-left: 10px;
    }
    .hc-email {
        margin-top: 30px;
        padding: 5px;
        background-color: var(--mainRedColor);
    }
    .homecontact-right {
        padding: 0;
    }

}

@media (max-width: 350px){
    .logo2-link{
        top: 11px;
    }
    .carosuel-footer a:nth-child(1) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .hero-inner {
        padding: 18px 0 115px 0;
    }

}