/*Basics*/
:root {
    --mainGreenColor: #0f4931;
    --mainYellowColor: #e9d3c0;
    --mainFontFamily: 'Poppins', sans-serif;
    --mainSubFamily: 'Conthrax SemiBold', sans-serif;
    --mainFairyFontFamily: 'Playfair Display', sans-serif;
    --mainOutfitFontFamily: 'Outfit', sans-serif;
    --header2YellowColor: #e7d3a3;
    --mainBlackColor: #232020;
    --mainCopyColor: #212121;
}
*{
    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: 1160px;
}
a{
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.transition-effect {
    transition: all 0.5s ease;
}

/*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-wrapper{
    background-color: #fff;
}
.header-outer{
    position: relative;
}
.header-nav{
    padding: 11px 0 12px 0;
}
.header-branding{
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    background-color: var(--mainYellowColor);
    padding: 15px 0;
}
.headerbg{
    background-color: var(--mainYellowColor);
    position: absolute;
    left: 0;
    top: 0;
}
.triangular-div{
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 50px solid transparent; 
    border-bottom: 50px solid transparent; 
    border-left: 20px solid var(--mainYellowColor);
    display: none;
}
.header-top{
    background-color: var(--mainBlackColor);
    color: #fff;
    text-align: right;
    padding: 10px 0;
}
.siteh_fax,
.siteh_mail{
    position: relative;
    display: inline-block;
    line-height: 1;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-right: 40px;
}
.siteh_fax img,
.siteh_mail img{
    width: 14px;
    height: auto;
    vertical-align: middle;
    margin-right: 2px;
}
.siteh_mail a,
.siteh_fax a{
    color: #fff;
    text-decoration: none;
}
.siteh_mail a:hover,
.siteh_fax a:hover{
    opacity: 0.75;
}

/*Header 2*/
.header2{
    background-color: var(--header2YellowColor);
    overflow: hidden;
}
.header2-branding{
    position: relative;
    margin-left: -92px; /*will be change*/
}
.header2-arrow{
    position: absolute;
    top: 0;
    left: -1px;
    width: 0;
    height: 0;
    border-top: 69px solid transparent; /*will be change*/
    border-bottom: 69px solid transparent; /*will be change*/
    border-left: 46px solid var(--header2YellowColor); /*will be change*/
    display: none;
    transition: all 0.3s ease-in-out;
}
.header2-left{
    padding-right: 0;
}
.header2-right{
    padding-left: 0;
}
div.header2-logo{
    padding: 15px 0;
    background-color: #fff;
}
.header2-logolink{
    margin-left: 92px; /*will be change*/
}
.header2 .header-top {
    background-color: transparent;
    color: #fff;
    text-align: right;
    padding: 12px 0;
    position: relative;
}
.header2-top-arrow{
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    border-bottom: 45px solid #fff;
    border-right: 45px solid transparent;
}
.header2 .siteh_mail{
    margin-right: 0;
}
.header2 .header-nav{
    background-color: #fff;
    padding: 10px 0 9px 0;
    position: relative;
}
.header-nav-space{
    position: absolute;
    top: 0;
    height: 100%;
    background: #fff;
    width: 500px;
    right: -500px;
}
.header2 .siteh_mail a,
.header2 .siteh_fax a {
    color: var(--mainBlackColor);
}
.header2 .nav-link{
    text-transform: uppercase;
}
.header2 .nav-item {
    padding: 0 25px;
}


/*Nav*/
.nav-btn-wrapper{
    font-size: 13px;
    color: #2a2a2a;
    line-height: 1;
    font-weight: 500;
    padding: 0 !important;
}
.nav-btn-wrapper span{
    display: inline-block;
    margin-bottom: 3px;
}
.nav-item{
    padding: 0 30px;
}
.nav-link{
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #233841;
}
.nav-link:hover{
    opacity: 0.75;
}
ul.navbar-nav{
    display: flex;
    align-items: center;
}
.nav-btn{
    background-color: var(--mainGreenColor);
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 3px;
    text-align: center;
    padding: 13px 5px 13px 5px !important;
}
.nav-btn:hover{
    background-color: var(--mainBlackColor) !important;
    opacity: 1;
}
.nav-btn img{
    width: 13px;
    margin-right: 5px;
}
/* .navbar-toggler.collapsed .close-icon,
.navbar-toggler .close-icon {
    display: none;
 } */

/*Hero*/
.hero-back{
    background-image: url(../images/graphics/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.heroSeciton2 .hero-back{
    background-image: url(../images/graphics/hero2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* .hero-outer{
    width: 56%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
} */
.hero-inner{
    /* width: 76%;
    text-align: left; */
    padding: 125px 0 150px 0;
}
.heroSeciton h1{
    font-family: var(--mainSubFamily);
    color: #fff;
    font-size: 48px;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 0;
}
.carousel-indicators li{
    width: 20px;
    color: #fff;
}
.carousel-item ul{
    padding-left: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.carousel-item li{
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
}
.carosuel-footer{
    margin-top: 25px;
}
.carosuel-footer a{
    width: 163px;
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    padding: 20px 0;
}
.carosuel-footer a:nth-child(1){
    background-color: var(--mainGreenColor);
    margin-right: 15px;
}
.carosuel-footer a:nth-child(2){
    background-color: #fff;
    color: #1c1c1c;
}
.carosuel-footer a:hover{
    opacity: 0.8;
}
.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;
}
.carousel-indicators .active {
    background-color: #ffae00;
}
.carousel-indicators button:hover{
    background-color: #ffae00;
}

.heroSeciton2 .carousel-item ul {
    padding-left: 0px;
    list-style: none;
}
.heroSeciton2 .carousel-item li{
    display: inline-block;
    width: 40%;
    font-size: 18px;
}
.heroSeciton2 .carosuel-footer a:nth-child(1){
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
}
.heroSeciton2 .carosuel-footer a:nth-child(2){
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-transform: uppercase;
    padding: 16px 0;
}

/*Hero General*/
.herogeneral{
    position: relative;
}
.herogeneral-overlay{
    background-color: rgba(15, 73, 49, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.herogeneral-back{
    background-image: url(../images/graphics/hero-general.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 50px 0;
}
.herogeneral h2{
    font-family: var(--mainSubFamily);
    font-size: 38px;
    color: #fff;
    position: relative;
}
.herogeneral p{
    font-family: var(--mainSubFamily);
    color: #fff;
    font-size: 20px;
    position: relative;
}


/*Trailor Types*/
.trailer-types-sec{
    margin-top: 100px;
}
.tt-box{
    padding: 0 15px;
    color: var(--mainCopyColor);
}
.ttb-bg{
    padding: 40px;
}
.tt-box:nth-child(1){
    padding-left: 0;
}
.tt-box:nth-child(3){
    padding-right: 0;
}
.tt-box:nth-child(1) .ttb-bg{
    background-color: #c0dfc8;
}
.tt-box:nth-child(2) .ttb-bg{
    background-color: #e9e4e4;
}
.tt-box:nth-child(3) .ttb-bg{
    background-color: var(--mainYellowColor);
}
.tt-box h2{
    font-family: var(--mainSubFamily);
    color: #000;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
}
.tt-box p{
    color: var(--mainCopyColor);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

/*Trailer Overview Section*/
.trailer-overview-sec{
    margin-top: 100px;
}
.trailer-overview-sec h2{
    color: var(--mainBlackColor);
    font-size: 40px;
    font-family: var(--mainSubFamily);
    line-height: 1;
}
.trailer-overview-sec p{
    color: var(--mainCopyColor);
    font-weight: 300;
    font-size: 17px;
}
.trailer-overview-sec ul{
    list-style: none;
    width: 50%;
    padding-left: 0;
}
.trailer-overview-sec ul li{
    display: inline-block;
    width: 40%;
    color: var(--mainCopyColor);
    font-size: 18px;
    font-weight: 600;
}

/*Home About*/
.home-about-sec{
    margin-top: 110px;
}
.ha-rpad{
    padding-right: 32px;
}
.ha-lpad{
    padding-left: 32px;
}
.home-about-sec h3{
    color: var(--mainBlackColor);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}
.home-about-sec h2{
    color: var(--mainBlackColor);
    font-size: 45px;
    font-weight: bold;
    font-family: var(--mainSubFamily);
    line-height: 1;
    margin-bottom: 0;
    padding-top: 35px;
    border-right: 1px solid #e2e2e2;
}
.home-about-sec p{
    margin-bottom: 5px;
    color: var(--mainCopyColor);
    font-weight: 300;
    font-size: 17px;
    letter-spacing: 0.031em;
    line-height: 1.9;
}

/*home History*/
.home-history-sec{
    margin-top: 70px;
}
.hh-img-holder{
    position: relative;
    padding: 20px;
    margin-left: 30px;
    background-color: var(--mainGreenColor);
    display: inline-block;
}
.hh-back-dots{
    position: absolute;
    height: 70%;
    top: -35px;
    left: -55px;
    z-index: -1;
    border-radius: 0;
    color: #ff5e13;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.15em;
    display: inline-block;
    overflow: hidden;
    width: 85%;
}
.hh-img{
    margin-left: -40px;
    margin-bottom: -40px;
}
.hh-right{
    padding-top: 65px;
}
.hh-right h3{
    font-family: var(--mainSubFamily);
    font-size: 20px;
    color: var(--mainGreenColor);
    line-height: 1.5;
    letter-spacing: 0.061em;
    margin-bottom: 0;
}
.hhr-width{
    width: 90%;
}
.hh-right p{
    color: var(--mainCopyColor);
    font-size: 17px;
    font-weight: 300;
    margin-top: 17px;
    margin-bottom: 0;
    letter-spacing: 0.031em;
    line-height: 1.7;
}
.hh-right ul{
    padding-left: 0;
    margin-top: 30px;
    list-style: none;
}
.hh-right ul li{
    font-size: 17px;
    color: var(--mainCopyColor);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-right: 40px;
    display: flex;
    flex-wrap: nowrap;
}
.hh-right ul li::before {
    content: "\2714\0020";
    display: inline-block;
    width: 25px;
    height: 25px;
    font-size: 22px;
    transform: rotate(22deg);
    color: var(--mainGreenColor);
    font-weight: 500;
    margin-right: 17px;
}

/*other-trailer-sec*/
.other-trailer-sec{
    margin-top: 100px;
}
.other-trailer-sec h2{
    color: var(--mainBlackColor);
    font-size: 40px;
    font-family: var(--mainSubFamily);
    line-height: 1;
    margin-bottom: 20px;
}
.other-trailer-sec .hh-right p{
    margin-top: 0;
}
.other-trailer-sec .hh-img{
    margin-bottom: 0;
}
.other-trailer-sec .hh-img-holder{
   background-color: #51655d;
}
.otts{
    margin-top: 128px;
}


/*projects-sec*/
.projects-sec{
    margin-top: 120px;
    background-image: url(../images/graphics/projects-bg.jpg);
    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: 45px 30px;
    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: #7c7c7c;
    color: #ffffff;
}
.psecl-2{
    background-color: var(--mainYellowColor);
    color: var(--mainBlackColor);
}
.psecl-3{
    background-color: var(--mainBlackColor);
    color: #ffffff;
}

/*projects2-sec*/
.projects2-sec{
    margin-top: 120px;
    background-image: url(../images/graphics/bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 580px;
    overflow: visible;
    position: relative;
    text-align: center;
    padding-top: 110px;
}
.projects2-sec h3,
.projects2-sec h4{
    color: var(--mainBlackColor);
    font-family: var(--mainSubFamily);
}
.projects2-sec h4{
    font-size: 24px;
}
.projects2-sec h3{
    font-size: 36px;
}
.p2sec-copy{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.90);
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.p2seca1{
    position: absolute;
    z-index: 999;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-right: 35px solid rgba(255, 255, 255, 0.90);
    top: 40%;
    right: 100%;
}
.p2seca2{
    position: absolute;
    z-index: 999;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 35px solid rgba(255, 255, 255, 0.90);
    top: 40%;
    left: 100%;
}
.p2seca3{
    position: absolute;
    z-index: 999;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 35px solid rgba(255, 255, 255, 0.90);
    bottom: 100%;
    left: 40%;
}
.projects2-sec .psec-list a:hover{
    transform: scale(1);
}


/*Services Seciton*/
.services-sec{
    margin-top: 370px;
}
.services-sec h3{
    color: #0f4931;
    font-family: var(--mainSubFamily);
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.041em;
    margin-bottom: 20px;
}
.services-sec h2{
    color: var(--mainBlackColor);
    font-family: var(--mainSubFamily);
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.041em;
}
.sersec-right{
    text-align: right;
    font-size: 0;
}
.sersecr-box{
    padding: 50px 30px;
    text-align: center;
    text-transform: capitalize;
    line-height: 1;
    color: #fff;
    font-size: 22px;
    font-family: var(--mainSubFamily);
    background-color: var(--mainGreenColor);
    display: inline-block;
    letter-spacing: 0em;
}
.sersecrborder{
    display: inline-block;
    width: 47px;
    height: 93%;
    border-left: 1px solid #e2e2e2;
    vertical-align: bottom;
    line-height: 1;
}
.sersec-list{
    margin-top: 100px;
}
.sersec-box a{
    text-decoration: none;
}
.sersec-box a:hover .sersec-link{
    transform: translateX(10px);
}
.sersec-box span{
    display: flex;
    width: 100%;
    padding: 17px 25px;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    background-color: var(--mainYellowColor);
}
.sersec-name{
    color: #000;
    font-family: var(--mainSubFamily);
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1;
}
.sersec-link{
    width: 36px;
    height: 36px;
    background-color: var(--mainGreenColor);
    color: #fff;
    line-height: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Edit Service Seciton*/
.edit-services-sec{
    margin-top: 120px;
}
.edit-services-sec .sersecr-box{
    width: 93%;
}

/*General Page Service*/
.genpage-service{
    margin-top: 350px !important;
    margin-bottom: -70px !important;
}

/*Blog Section*/
.blog-sec{
    margin-top: 130px;
}
.blog-right{
    position: relative;
    background-image: url(../images/graphics/blog-right.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 2px;
    padding: 120px 63px;
}
.blog-right h3{
    color: #fff;
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 0;
}
.blog-con-w{
    width: 75%;
}
.blog-right h2{
    font-family: var(--mainSubFamily);
    color: #fff;
    font-size: 42px;
    margin-top: 23px;
}
.blog-right p{
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 25px;
}
.blog-right a{
    text-decoration: none;
    font-family: var(--mainSubFamily);
    color: #fff;
    font-size: 13px;
    padding: 23px 28px;
    text-transform: capitalize;
    margin-top: 30px;
    background-color: var(--mainGreenColor);
}
.blog-right a:hover{
    opacity: 0.85;
}
.blog-right span{
    font-family: var(--mainSubFamily);
    color: #fff;
    opacity: 0.2;
    text-transform: uppercase;
    font-size: 4vw;
    display: block;
    line-height: 1;
    margin-top: 55px;
}

/*Bumper Side Section*/
.bumper-side-sec .blog-left{
    padding-left: 0;
}
.bumper-side-sec .blog-right{
    text-align: right;
    padding: 120px 50px;
    background-image: url(../images/graphics/blog-left.png);
}
.bumper-side-sec .blog-posit{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.bumper-side-sec .blog-right p{
    margin-top: 0;
}
.bumper-side-sec .blog-right h2{
    margin-bottom: 15px;
}
.bumper-side-sec .blog-right p:last-child{
    margin-top: 10px;
    padding-left: 5px;
}
.bumper-side-sec .blog-right p:last-child strong{
    font-weight: 600;
    font-size: 22px;
}

/*Other Side Section*/
.other-side-sec .blog-right{
    padding: 80px 50px 0 50px;
}
.other-side-sec p{
    margin-top: 0;
}
.other-side-sec .blog-right span{
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 3vw;
}
.other-side-sec .blog-right h2{
    margin-bottom: 20px;
}

/*Client Testimonials*/
.clients-sec{
    margin-top: 140px;
}
.clients-sec h2{
    font-size: 36px;
    font-weight: bold;
    color: #000;
    line-height: 1;
    text-align: center;
}
.slider-clients .testimonial{
    padding: 50px 35px 30px 30px;
    background-color: var(--mainBlackColor);
    border-radius: 20px;
    margin: 0 20px;
}
.slider-clients .carousel-inner{
    height: calc(100% + 90px);
}
.slider-clients .carousel-indicators{
    bottom: 25px;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
}
.slider-clients .carousel-indicators [data-bs-target],
.slider-clients .carousel-indicators button{
    background-color: var(--mainBlackColor);
    width: 20px;
    border-radius: 10px;
}
.slider-clients .carousel-indicators .active{
    background-color: var(--mainGreenColor);
    width: 50px;
}
.slider-clients .carousel-inner .carousel-item.active .col:nth-child(1) .testimonial{
    background-color: var(--mainGreenColor);
}
.slider-clients .carousel-inner .carousel-item.active .col:nth-child(1) .testimonial p{
    color: #fff;
}
.slider-clients .carousel-inner .carousel-item.active button.active,
.slider-clients .carousel-inner .carousel-item button{
    display: none;
}
.slider-clients{
    margin-top: 45px;
}
.slider-clients p{
    font-family: var(--mainFairyFontFamily);
    font-style: italic;
    font-weight: 400;
    font-size: 23px;
    color: #b3b3b3;
    letter-spacing: 0.02em;
    padding: 0 15px;
}
.clients-sec .client-img{
    border-radius: 100%;
    width: 50px;
    height: 50px;    
}
.clients-sec h4{
    font-size: 19px;
    color: #fff !important;
    font-family: var(--mainOutfitFontFamily);
}
.slider-clients .carousel-inner .carousel-item.active,
.slider-clients .carousel-inner .carousel-item-next,
.slider-clients .carousel-inner .carousel-item-prev {
    display: flex;
}
.slider-clients .carousel-inner .carousel-item-end,
.slider-clients .carousel-inner .carousel-item-start { 
    transform: translateX(0);
}

/*Home Contact Section*/
.homecontact-sec{
    margin-top: 170px;
}
.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(--mainGreenColor);
    padding-left: 20px;
}
.hc-left,
.hc-right{
    display: inline-block;
    width: auto;
    vertical-align: middle;
}
.hc-right{
    margin-left: 20px;
}
.hc-left img{
    width: 50px;
    height: 50px;
}
.hc-right span{
    display: inline-block;
    color: #231f20;
    font-family: var(--mainOutfitFontFamily);
    font-size: 24px;
    font-weight: 700;
}
.hc-right a{
    text-decoration: none;
    font-family: var(--mainOutfitFontFamily);
    font-size: 16px;
    font-weight: 400;
    color: #373737;
}
.hc-email{
    margin-top: 45px;
    padding: 10px 20px 20px 20px;
    background-color: var(--mainGreenColor);
}
.hc-email span,
.hc-email a{
    color: #fff;
}
.hc-phone,
.hc-fax,
.hc-address{
    margin-top: 25px;
}


/*Footer News Letter*/
.homesubscribe-sec{
    margin-top: -150px;
}
.subscribe-box{
    padding: 45px 27px;
    width: 97%;
    margin: 0 auto;
    background-color: var(--mainGreenColor);
    border-radius: 10px;
}
.subscribe-box h2{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: var(--mainOutfitFontFamily);
    line-height: 1;
    margin-bottom: 10px;
}
.subscribe-box p{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--mainOutfitFontFamily);
    line-height: 1;
    margin-bottom: 0;
}
.sub-form-wrapper{
    position: relative;
    display: block;
}
.sub-form-field{
    padding: 14px 5px 16px 20px;
    color: #989898;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--mainOutfitFontFamily);
    border-radius: 35px;
    border: 0;
    width: 100%;
}
.sub-form-btn-bg{
    width: 46px;
    height: 46px;
    background-color: var(--mainGreenColor);
    position: absolute;
    right: 6px;
    top: 6px;
    padding: 13px;
    border-radius: 100%;
}
.sub-form-btn{
    width: 100%;
    transition: all 0.5s ease;
}
.sub-form-btn:hover{
    opacity: 0.85;
}
.sub-form-field:focus{
    -webkit-box-shadow: 0 0 5px #999999;
    -moz-box-shadow: 0 0 5px #999999;
    box-shadow: 0 0 5px #999999;
    background: #fafafa;
    border-color: #999999;
    outline: none;
}



/*Footer*/
.footer-sec{
    margin-top: 140px !important;
    padding-top: 140px;
    position: relative;
    background-image: url(../images/graphics/footer.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;
}
.footer-social img{
    width: 20px;
    height: 20px;
}
.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;
    padding-right: 15px;
}
.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;
}
.fcf-field{
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: 2px solid #545851;
    border-radius: 35px;
    width: 98%;
    background-color: transparent;
    margin-bottom: 17px;
}
.fcf-field:focus{
    background-color: transparent !important;
}
.fcf-field::placeholder{
    color: #fff;
}
.fcf-1{
    width: 20%;
    padding-left: 0px;
    padding-right: 2px;
    text-align: center;
    margin-right: 20px;
}
.fcf-2{
    width: 72%;
}
textarea.fcf-field{
    border-radius: 15px;
}
.fcf-btn{
    padding: 13px;
    width: 165px;
    border-radius: 35px;
    border: 0;
    background-color: var(--mainGreenColor);
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    transition: all 0.5s ease;
}
.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;
}

.detailpage-footer .homesubscribe-sec{
    display: none;
}
.detailpage-footer .footer-sec {
    margin-top: 350px !important;
    padding-top: 80px;
    background-image: url(../images/graphics/footer-bg2.png);
}
.detailpage-footer .fcf-field{
    padding: 8px 20px;
    margin-bottom: 10px;
}
.detailpage-footer textarea.fcf-field {
    height: 60px;
}
.detailpage-footer .fcf-1{
    display: none;
}
.detailpage-footer .fcf-2{
    width: 98%;
}
.detailpage-footer .footer2-copyright{
    display: block;
    font-size: 14px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 0;
    line-height: 1.5;
    margin-top: 85px;
}
.detailpage-footer .footer-bottom{
    display: none;
}

/*Contact us Page*/
.contactpage .footer-form h3{
    font-family: var(--mainOutfitFontFamily);
    color: #231f20;
    font-weight: 700;
    font-size: 30px;
    text-transform: capitalize;
}
.contactpage .footer-form p,
.contactpage .fcf-field,
.contactpage .fcf-field::placeholder{
    color: #231f20;
}
.contactpage-footer{

}
.contactpage .homecontact-sec{
    margin-top: 140px;
}
.contactpage .clients-sec {
    margin-top: 110px;
}
.contactpage-footer .homesubscribe-sec {
    margin-top: 0px;
}
.contactpage-footer .footer-top .footer-copy,
.contactpage-footer .footer-top .footer-form{
    display: none;
}
.contactpage-footer .footer-top .footer-branding{
    width: 100%;
    text-align: center;
}
.contactpage-footer .subscribe-box{
    background-color: rgba(0, 0, 0, 0.6);
}


@media (max-width: 1150px){
    .siteh_mail{
        margin-right: 5px;
    }
    .header-branding{
        padding-left: 10px;
    }
    .ttb-bg{
        height: 100%;
    }
    .psec-list span{
        height: 175px;
    }
    .blog-right{
        padding: 50px;
    }
    .header2-left{
        width: 25%;
    }
    .header2-right{
        width: 75%;
    }
    .trailer-overview-sec ul{
        width: 100%;
    }
    .trailer-overview-sec ul li{
        width: 48%;
    }
    .other-trailer-sec{
        margin-top: 100px;
    }
    .bumper-side-sec .blog-con-w {
        width: 100%;
    }
    .bumper-side-sec .blog-right {
        padding: 50px 50px;
    }
    .edit-services-sec,
    .projects2-sec,
    .bumper-side-sec {
        margin-top: 80px;
    }
    .edit-services-sec .sersec-left,
    .edit-services-sec .sersec-right{
        width: 100%;
        text-align: center;
    }
    .detailpage-footer .footer-sec {
        margin-top: 270px !important;
    }
    .genpage-service {
        margin-top: 300px !important;
        margin-bottom: -70px !important;
    }

}

@media (max-width: 1100px){
    .heroSeciton2 .hero-back{
        background-position: 40%;
    }
    .heroSeciton2 .carousel-item li {
        display: block;
        width: 100%;
    }
    .detailpage-footer .footer-sec {
        margin-top: 230px !important;
    }
}

@media (max-width: 1050px){
    .nav-item {
        padding: 0 15px;
    }
    .hero-back{
        background-position: left;
    }
    .hero-inner {
        padding: 125px 0 150px 50px;
    }
    .header-branding {
        padding-left: 50px;
    }
    .hh-right {
        padding-top: 0px;
        padding-left: 35px;
    }
    .trailer-types-sec {
        margin-top: 50px;
    }
    .home-about-sec {
        margin-top: 55px;
    }
    .home-history-sec {
        margin-top: 50px;
    }
    .hh-right ul{
        margin-top: 20px;
    }
    .projects-sec{
        margin-top: 60px;
    }
    .psec-list {
        margin-top: 85px;
    }
    .home-about-sec h2{
        font-size: 40px;
    }
    .services-sec {
        margin-top: 335px;
    }
    .sersec-list {
        margin-top: 49px;
    }
    .blog-sec {
        margin-top: 65px;
    }
    .blog-right{
        margin-left: -20%;
        width: 70%;
    }
    .clients-sec {
        margin-top: 70px;
    }
    .slider-clients .testimonial{
        margin: 0 5px;
    }
    .homecontact-sec {
        margin-top: 130px;
    }
    .homecontact-left {
        padding: 0 15px;
    }
    .homecontact-right {
        padding: 0 0 0 15px;
    }
    .footer-sec {
        margin-top: 90px !important;
    }
    .subscribe-box{
        width: 100%;
    }
    .hh-img-holder{
        margin-left: 20px;
    }
    .subsc-box-right{
        display: flex;
        align-items: center;
    }
    .footer-branding{
        width: 45%;
    }
    .footer-copy{
        width: 45%;
        text-align: right;
        padding-left: 15px;
    }
    .footer-form{
        display: block;
        width: 90%;
    }
    .footer-top{
        display: flex;
        justify-content: center;
    }
    .fcf-2 {
        width: 75%;
    }
    .header2-left {
        width: 30%;
    }
    .header2-right {
        width: 70%;
    }
    .header2 .nav-item {
        padding: 0 10px;
    }
    .other-trailer-sec{
        margin-top: 100px;
    }
    .edit-services-sec{
        margin-top: 55px;
    }
    .bumper-side-sec .blog-con-w {
        width: 68%;
    }
    .detailpage-footer .footer2-copyright{
        margin-top: 40px;
        text-align: left;
    }
    .contactpage .fcf-1{
        margin-right: 5px;
    }
    .genpage-service {
        margin-top: 250px !important;
        margin-bottom: 0px !important;
    }
    .aboutuspage-footer .footer-sec{
        margin-top: 120px !important;
    }


}
@media (max-width: 992px){
    .header-nav {
        padding: 11px 0 4px 0;
    }
    .header-branding {
        padding-left: 25px;
    }
    .nav-item {
        padding: 0 7px;
    }
    .hero-inner {
        padding: 125px 0px 150px 25px;
    }
    .tt-box {
        padding: 0 5px;
    }
    .sersecrborder{
        display: none;
    }
    .blog-right span{
        margin-top: 30px;
    }
    .blog-right{
        padding-bottom: 25px;
    }
    .hh-img-holder {
        width: 100%;
    }
    .hh-img{
        width: calc(100% + 40px);
    }
    .header2 ul.navbar-nav{
        margin-bottom: 0 !important;
    }
    .header2 .nav-item {
        padding: 0 0px;
    }
    .detailpage-footer .footer-sec {
        margin-top: 70px !important;
    }
    .projects2-sec{
        height: 100%;
    }
    .projects2-sec .psec-list .col:nth-child(1){
        order: 1;
    }
    .projects2-sec .psec-list .col:nth-child(2){
        order: 2;
    }
    .projects2-sec .psec-list .col:nth-child(3){
        order: 5;
    }
    .projects2-sec .psec-list .col:nth-child(4){
        order: 3;
    }
    .projects2-sec .psec-list .col:nth-child(5){
        order: 4;
    }
    .projects2-sec .psec-list .col:nth-child(6){
        order: 6;
    }
    .p2seca3 {
        position: absolute;
        z-index: 999;
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-bottom: 35px solid rgba(255, 255, 255, 0.90);
        bottom: auto;
        left: auto;
        position: absolute;
        z-index: 999;
        border-top: 35px solid transparent;
        border-bottom: 35px solid transparent;
        border-right: 35px solid rgba(255, 255, 255, 0.90);
        top: 40%;
        right: 100%;
    }
    .genpage-service {
        margin-top: 70px !important;
        margin-bottom: 0px !important;
    }

}

@media (max-width: 850px){
    .header-nav .container{
        padding: 0;
    }
    .nav-link{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .nav-item {
        padding: 0 10px;
    }
    .nav-btn{
        font-size: 14px !important;
    }
    .nav-btn-wrapper span {
        display: block;
        font-size: 85%;
    }
    .nav-btn{
        display: inline-block;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .subsc-box-right{
        padding: 0;
    }
    .fconsdiv{
        margin-left: -100%;
        width: 200%;
        text-align: center;
    }
    .footer-form{
        margin-top: 50px;
    }
    .header-nav {
        padding: 11px 0 7px 0;
    }
    .header2-left {
        width: 25%;
    }
    .header2-right {
        width: 75%;
    }
    .header2-logolink img{
        width: 100%;
    }
    div.header2-logo {
        padding: 25px 0;
    }
    .header2 .nav-item {
        padding: 0 10px;
    }
    .detailpage-footer .footer2-copyright{
        display: none;
    }
    .detailpage-footer .footer-bottom{
        display: block;
    }
    .detailpage-footer .footer-sec {
        margin-top: 140px !important;
    }

}

@media (max-width: 800px){
    ul.navbar-nav{
        display: block;
    }
    .nav-item{
        display: inline-block;
        margin-bottom: 5px;
        padding: 0 15px;
    }
    .nav-btn-wrapper{
        display: block;
        width: 100%;
        text-align: right;
        margin-top: 5px;
    }
    ul.navbar-nav{
        margin-bottom: 0 !important;
    }
    .nav-btn-wrapper span{
        display: inline-block;
        margin-right: 20px;
    }
    .header-nav {
        padding: 0px 5px 8px 0;
    }
    ul li.nav-item:nth-last-child(2) {
        padding-right: 0;
    }
    nav.navbar{
        padding-bottom: 1px;
    }
    .header2 .header-nav{
        padding: 0;
    }
    .header2 nav.navbar{
        padding-top: 5px;
    }
    .detailpage-footer .footer-sec {
        margin-top: 100px !important;
    }
    .contactpage .homecontact-sec {
        margin-top: 35px;
    }
    .contactpage .homecontact-right {
        margin-top: 50px !important;
    }
    .contactpage .client-feedback{
        margin-top: 70px;
    }
}

@media (max-width: 767px){
    nav.navbar{
        position: relative;
        display: flex;
        justify-content: flex-end;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .nav-btn{  
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }
    .header-nav{
        padding-bottom: 0;
    }
    button.navbar-toggler{
        margin-top: 70px;
    }
    button.navbar-toggler:focus{
        outline: 0;
        border: 0;
    }
    .navbar-collapse{
        position: absolute;
        top: 143px;
        right: 0px;
        width: 50%;
        z-index: 999;
        background-color: var(--mainYellowColor);
        color: #fff;
        height: 100vh;
        border-radius: 5px;
    }
    .nav-item{
        display: block;
        padding-bottom: 10px;
        padding-top: 10px;
        border-bottom: 1px solid #fff;
        margin-bottom: 0;    
    }
    .nav-link,
    .nav-link.active{
        color: #000 !important;
    }
    .nav-btn-wrapper{
        display: none;
    }
    .mobile-nav-btn .nav-btn{
        color: #fff !important;
    }
    .header-top{
        padding: 8px 0;
    }
    .header-branding{
        top: 30px;
    }
    .header-outer{
        background-color: var(--mainYellowColor);
    }
    .header-nav .container,
    nav.navbar{
        height: 100%;
    }
    .mobile-nav-btn span{
        display: block;
        margin-top: -20px;
    }
    .mobile-nav-btn .nav-btn{
        width: 100%;
    }
    .mobile-nav-btn{
        position: absolute;
        margin-right: 0;
        top: 32px;
        margin-bottom: 0;
        text-align: right;
    }
    .triangular-div{
        display: none;
    }
    .siteh_fax, 
    .siteh_mail{
        margin-right: 0;
    }
    .header-top .container{
        display: flex;
        justify-content: space-between;
        padding: 0 7px;
    }
    .hero-inner {
        padding: 50px 0px 110px 0px;
    }
    .carousel-indicators {
        bottom: -70px;
    }
    .tt-box{
        margin-bottom: 10px;
    }
    .tt-box:nth-child(1) {
        padding-left: 5px;
    }
    .home-about-sec h2{
        margin-bottom: 25px;
    }
    .hh-left{
        width: 75%;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .home-about-sec p{
        text-align: right;
    }
    .psec-list .row{
        display: block;
    }
    .projects-sec{
        height: auto;
    }
    .psec-list .col{
        width: 90%;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    .services-sec {
        margin-top: 50px;
    }
    .sersec-left{
        text-align: center;
    }
    .sersec-right{
        text-align: center;
    }
    .sersec-box{
        margin-bottom: 10px;
    }
    .blog-left{
        display: none;
    }
    .blog-right {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .blog-con-w {
        width: 100%;
    }
    .homecontact-left iframe{
        height: 300px;
    }
    .homecontact-right{
        margin-top: 20px;
    }
    .subsc-box-left{
        width: 100%;
        text-align: center;
    }
    .subsc-box-right{
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 20px;
    }
    .footer-branding {
        width: 100%;
        text-align: center;
    }
    .footer-copy {
        width: 100%;
        text-align: center;
        padding-left: 0;
        margin-top: 35px;
    }
    .fconsdiv {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .footer-form {
        display: block;
        width: 100%;
        text-align: center;
    }
    .psec-list span{
        height: auto;
        padding: 36px 30px;
    }
    .ha-lpad {
        padding-left: 10px;
        padding-right: 32px;
    }

    .header2-left {
        width: 45%;
    }
    .header2-right {
        width: 55%;
    }
    .header2-top-arrow,
    .header-nav-space,
    .header2-arrow{
        display: none;
    }
    div.header2-logo,
    .header2 .header-nav{
        background-color: transparent;
    }
    .header2{
        position: relative;
        overflow: visible;
    }
    .header2 .header-top{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #c5b18a;
    }
    .header2-branding,
    .header2-logolink{
        margin-left: 0;
    }
    div.header2-logo{
        padding: 0;
    }
    .header2-branding{
        margin-top: 50px;
        margin-bottom: 10px;
    }
    .header2 .header-nav{
        margin-top: 30px;
        margin-bottom: 10px;
    }
    button.navbar-toggler{
        margin-top: 80px;
    }
    .header2 .navbar-collapse {
        position: absolute;
        top: 140px;
        right: -5px;
        width: 90%;
        z-index: 999;
        background-color: #e8d4a7;
        color: #fff;
        height: 100vh;
        border-radius: 5px;
    }
    .header2 .nav-link,
    .header2 .nav-link.active {
        padding: 10px 0;
    }
    .header2 .nav-item{
        border-bottom: 1px solid #564d39;
    }
    .heroSeciton2 .hero-back {
        background-position: 20%;
    }
    .heroSeciton2 .carousel-item li {
        display: inline-block;
        width: 40%;
    }
    .trailer-overview-sec,
    .other-trailer-sec {
        margin-top: 70px;
    }
    .trailer-overview-sec ul li {
        width: 100%;
    }
    .bumper-side-sec .blog-con-w {
        width: 100%;
        text-align: center !important;
    }
    .other-trailer-sec .hh-left{
        margin-top: 80px;
        margin-bottom: 0;
    }
    .edit-services-sec .sersecr-box{
        padding: 20px;
    }
    .p2seca1,
    .p2seca2,
    .p2seca3{
        position: absolute;
        z-index: 999;
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-bottom: 35px solid rgba(255, 255, 255, 0.90);
        bottom: 100%;
        top: auto;
        right: auto;
        left: 45%;
    }
    .projects2-sec .psec-list .col{
        width: 95%;
        margin-bottom: 0;
    }
    .otts1{
        margin-top: 0;
    }
    .otts1 .hh-right,
    .otts1 .hh-left{
        margin-top: 50px;
    }
    .otts1 .hh-right,
    .otts .hh-right{
        padding-left: 15px;
    }
    .projects2-sec{
        padding-bottom: 20px;
        padding-top: 60px;
    }
    .detailpage-footer .footer-sec {
        margin-top: 50px !important;
    }
    .projects2-sec .psec-list .row{
        display: flex;
    }
    .projects2-sec .psec-list{
        width: 80%;
        margin: 0 auto;
        margin-top: 50px;
    }
    .projects2-sec .psec-list .col:nth-child(1){
        order: 1;
    }
    .projects2-sec .psec-list .col:nth-child(2){
        order: 2;
    }
    .projects2-sec .psec-list .col:nth-child(3){
        order: 5;
    }
    .projects2-sec .psec-list .col:nth-child(4){
        order: 4;
    }
    .projects2-sec .psec-list .col:nth-child(5){
        order: 3;
    }
    .projects2-sec .psec-list .col:nth-child(6){
        order: 6;
    }
    .otts br{
        display: none;
    }

    .herogeneral h2{
        font-size: 34px;
    }
    .herogeneral p{
        font-size: 18px;
    }
    
}

@media (max-width: 586px){
    .projects2-sec .psec-list .row{
        display: block;
    }
    .projects2-sec .psec-list{
        width: 98%;
    }
}


@media (max-width: 550px){
    .header2-branding {
        margin-top: 57px;
    }
    .header2 .navbar-collapse {
        width: 100%;
    }
    .heroSeciton2 .hero-back{
        text-align: center;
    }
    .heroSeciton2 .carousel-item li {
        display: block;
        width: 100%;
    }
    .heroSeciton2 .carousel-indicators{
        left: 44%;
    }
    .detailpage-footer .footer-sec {
        margin-top: 0px !important;
    }
    .fcf-1 {
        margin-right: 5px;
    }

}

@media (max-width: 500px){
    .hh-left {
        width: 97%;
    }
    .fcf-1 {
        width: 15%;
        border-radius: 30px;
        margin-right: 5px;
    }
    .fcf-2 {
        width: 80%;
    }
    .bumper-side-sec .blog-right {
        padding: 20px;
    }
}

@media (max-width: 450px){
    .mobile-nav-btn{
        display: none;
    }
    button.navbar-toggler{
        margin-top: 0;
    }
    .header2-branding {
        margin-top: 50px;
    }
    .header2 .header-nav {
        margin-top: 60px;
    }
    .header2 .navbar-collapse{
        top: 90px;
    }
}

@media (max-width: 400px){
    .heroSeciton2 .carosuel-footer a:nth-child(1){
        margin-right: 0;
        margin-bottom: 10px;
    }
    #header2Top .container {
        display: flex;
        padding: 0 7px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .header2-branding {
        margin-top: 58px;
    }
    .header2 .header-nav {
        margin-top: 65px;
    }
    .header2 .navbar-collapse {
        top: 70px;
    }
    .header2 .navbar-collapse {
        width: 95vw;
    }
}