@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* global css */
body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    counter-reset:section;
    background-color: #ffffff;
}
html {
    scroll-behavior: smooth;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ul li {
    list-style-type: none;
}
a {
    text-decoration: none;
}

::-moz-focus-inner {
    box-shadow: none;
    outline: none;
}

:focus-visible {
    outline: auto 0px;
}
.navbar-toggler:focus {
    box-shadow: none;
}
img {
    max-width: 100%;
    height: auto;
}


/* typography */
h1{
    margin: 0px 0px 0px;
}
.hero.main-hero h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 112%;
    margin: 0px 0px 0px;
}
h2 {
   font-size:40px;
   line-height: 112%;
   margin-bottom: 0px;
   font-weight: 700;
   text-transform: capitalize;
} 
h3,h4,h5,h6{
    margin-bottom: 0px;
}
p{
 font-size: 16px;
margin: 0;
 }

 .text-xs{
    font-size: 12px;
}
 .text-sm{
    font-size: 14px;
}
 .text-base{
    font-size: 16px;
}
.text-lg{
    font-size: 18px;
}
.text-xl{
    font-size: 20px;
}
.text-2xl{
    font-size: 24px;
}
.text-3xl{
    font-size: 30px;
}
  
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.align-center{
    align-items: center;
}
.align-end{
    text-align: end;
}
.centre{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex{
    display: flex;
}
.justify-between{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
/* color-plate */
.primary{
    color: #323232;
}

header .navbar-nav select {
    word-wrap: normal;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden !IMPORTANT;
    background-color: black;
    color: #fff;
    border: none;
    font-size: 12px;
    min-width: 60px;
}

.bg-primary{
    background-color: #323232;
}
.orange{
   color: #E36634;
}
.bg-orange{
    background-color: #E36634;
}
.white {
    color: #ffffff;
}
.bg-white {
    background-color: #ffffff !important;
}
.black {
    color: #000000;
}
.grey {
    color: #71717A !important;
    }
.dark-grey {
    color: #0D0D0D !important;
    }
.bg-dark-grey {
    background-color: #0D0D0D !important;
}
.d-b{
    display: block;
}
.d-in-b{
    display: inline-block;
}
.rounded-10{
    border-radius: 10px;
}
.rounded-sm{
    border-radius: 4px;
}
.rounded-md{
    border-radius: 6px;
}
.rounded-lg{
    border-radius: 8px;
}
.py-100{
    padding:100px 0px;
}
.relative{
    position: relative !important;
}

.subheading{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.uppercase{
    text-transform: uppercase;
}
.font-medium{
    font-weight: 500;
}
.font-bold{
    font-weight: 700;
}
.font-semibold{
    font-weight: 600;
}
.w-full{
    width: 100%;
}
.h-full{
    height: 100%;
}

a.btn {
    font-size: 19px;
    font-weight: 700;
    background-color: #E46A37;
    border-radius: 3px;
    border: 1px solid #E46A37;
    color: #fff;
    width: 207px;
    display: block;
    padding: 14px 0px;
}

a.btn:hover{
    background-color: transparent;
    color:#E46A37;
    border: 1px solid #E46A37;
    transition: 0.5s
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: #fff;
}

header {
    padding: 8px 0px;
}
header nav.navbar.navbar-expand-lg {
    padding: 0px;
}
header a.navbar-brand {
    margin: 0px !important;
    padding: 0px;
}
.navbar-expand-lg .offcanvas .offcanvas-body {
    justify-content: end;
    align-items: center;
}
button.btn.btn-sm.dropdown-toggle {
    border: none;
    padding: 0px;
    font-size: 12px;
    color: #fff;
}

/*--------- home ----------*/

header ul.navbar-nav {
    gap: 41px;
    align-items: center;
}
header ul.navbar-nav li.nav-item {
    width: 100%;
}
header a.nav-link {
    padding: 0px !important;
    font-size: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header a.nav-link .fa-angle-right{
    display: none;
}
header a.nav-link:hover{
    transition: 0.3s;
    color: #fff;
}
header a.nav-link.active {
 font-weight: 800;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    left: 0px;
    border: 1px solid #d9d9d9;
    font-size: 12px;
    padding: 6px;
    border-radius: 5px;
    min-width: 70px !important;
    top: 25px;
}
header form#headerform {
    border: none;
    border-radius: 40px;
    padding: 6px 12px;
    margin-left: 53px;
    width: 188px;
    display: flex;
    align-items: center;
    height: 29px;
    background-color: #fff;
}
header form#headerform input {
    border: none;
    background-color: transparent;
    width: 100%;
}
header form#headerform input:placeholder {
   color: #C0C0C0 !important;
}

.hero.main-hero {
  background-image: url(../images/Sitaram-Agarwal-hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero.main-hero::before{
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.57);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 4px;
}
.hero.main-hero .text-box {
    width: 52%;
    padding: 157px 0px;
}
.hero.main-hero p{
    margin-top: 20px;
}
.hero.main-hero .hero-slider .swiper-pagination{
    bottom: 20px !important;
}
.hero.main-hero .hero-slider span.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff;
    margin: 0px 5px;
    opacity: 1;
}
.hero.main-hero .hero-slider .swiper-pagination-bullet-active {
    outline: 1px solid #fff;
    outline-offset: 4px;
   
}
.biography .text-box{
    padding-left: 40px;
}

.biography .img-box img{
    box-shadow: 0px 4px 30px 2px rgba(227,102,52,0.25);
}
.biography .text-box p.primary {
    margin: 15px 0px;
}

.biography .text-box a.btn {
    padding: 14px 18px;
}
.journey {
    padding: 50px 66px;
    background-color: #FDF4F1;
}
.journey .text-box {
    margin-bottom: 50px;
}

.journey .journey-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
    text-align: center;
}
.journey .journey-timeline span {
    font-size: 30px;
    font-weight: 600;
    color: #E46A37;
}
.journey .Journey-slider .swiper-wrapper{
    margin-top: 50px;
}
.journey .Journey-slider .swiper-pagination {

}
.journey .Journey-slider .swiper-pagination {
    justify-content: space-between;
    width: 97%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto !important;
    top: 0 !important;
    display: flex;
    width: 98%;
    background-image: url(../images/Sitaram-Agarwal-timeline.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 98%;
}
.journey .Journey-slider span.swiper-pagination-bullet {
    width:30px;
    height:30px;
    background-color: #fff;
    margin: 0px 5px;
    opacity: 1;
    border: 3px solid #E46A37;
}
.journey .Journey-slider .swiper-pagination-bullet-active {
    background-image: url(../images/Sitaram-Agarwal-bjp-logo.svg);
    background-position: center;
    background-repeat: no-repeat;
}
.journey .journey-box{
    background-image: url(../images/Sitaram-Agarwal-journey.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    padding: 56px 44px 56px 0px;
}

.journey .journey-box .about-journey {
    width: 42%;
    padding: 30px 26px;
    margin-left: auto;
}
.journey .journey-box .about-journey p {
    font-size: 17px;
    line-height: 142%;
    margin-top: 15px;
}

.build-country .text-box{
    margin-bottom: 45px;
}
.build-country .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-image: url(../images/Sitaram-Agarwal-star.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.build-country .vision-box.economy {
    border-bottom: 2px solid #E46A37;
    padding-bottom: 48px;
    border-right: 2px solid #E46A37;
}
.build-country .vision-box.health {
    padding-left: 29px;
}
.build-country .vision-box.transport{
    padding-top: 48px;
}
.build-country .vision-box.education{
    border-top: 2px solid #E46A37;
    padding-top: 48px;
    padding-left: 29px;
    border-left: 2px solid #E46A37;
}
.build-country .vision-box .content-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}
.build-country .vision-box p {
    font-size: 13px;
    width: 87%;
}

.social-works{
    background-color: #FDF4F1;
    padding: 50px 0px 50px;
    position: relative;
}

.social-works .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 26px;
    row-gap: 24px;
    margin: 50px 0px 30px;
}

.social-accounts .text-center{
    margin-bottom: 50px;
    }

    .social-accounts h3{
        text-align: center;
    }

.social-accounts .account-box {
    height: 400px !important;
    width: 100%;
    overflow-Y: auto;
    overflow-x: hidden;
    margin-top: 20px;
}
.social-accounts .account-box.facebook{
    overflow-Y: hidden;
}
.social-accounts .account-box .facebook-feed iframe {
    border: none;
    visibility: visible;
    width: 1000px;
    height: 505px !important;
}

.social-accounts .account-box .youtube-feed iframe {
    height: 192px !important;
    width: 100%;
    margin-bottom: 10px;
}
.social-events .text-center{
margin-bottom: 50px;
}
.social-events{
    padding-bottom: 100px;
}

.social-events .img-box::before{
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 4px;
}
.social-events .img-box img.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.social-events h3 {
    font-weight: 500;
}
.social-events p.primary {
    font-size: 10px;
    margin-top: 10px;
}
.social-events .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    border: 1px solid #E4E4E4;
    background-color: #fff;
    border-radius: 0px 4px 4px 0px;
    row-gap: 20px;
}
.social-events .grid.grid-second {
    margin-top: 13px;
}

.social-events .grid .grid-box.relative {
    padding: 32px 13px 0px 0px;
}
.social-events .grid .grid-box img.w-full {
    min-height: 215px;
    max-height: 225px;
}

.social-events .content-box .sharebox {
    margin-top: 45px;
    bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.social-events .content-box .sharebox span {
    font-weight: 700;
}
.article .text-center{
    margin-bottom: 50px;
    }

.article .img-box span {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 16px 25px;
}
.article .review-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px;
    border-bottom: 1px dotted #323232;
    margin-bottom: 20px;
}
.article .review-box a{
    display: flex;
    gap: 10px;
}
.article .article-box {
    padding: 0px 24px 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px -1px #c1c1c1;
}

.article .article-box p {
    margin: 20px 0px 12px;
    line-height: 114%;
    min-height: 54px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.article .article-box h3 {
    min-height: 72px;
}

.article .img-box img.w-full {
    min-height: 200px;
    max-height: 290px;
}
.news-letter{
    padding: 32px 0px 32px;
    background-color: #F4C5B2;
    margin: 100px 0px 0px;
}

.news-letter .letter-box {
    gap: 70px;
    display: flex;
    align-items: center;
}
.news-letter .letter-box h2.black {
    white-space: nowrap;
}
.news-letter .letter-box .input-box {
    display: flex;
    width: 100%;
    gap: 10px;
}
.news-letter .letter-box .input-box input {
    border-radius: 40px;
    padding: 0px 24px;
    border: 1px solid #e46a37;
    width: 100%;
}
.news-letter .letter-box .input-box a.btn {
    border-radius: 40px;
    font-size: 14px;
    padding: 15px 0px;
}

footer{
    background-color: #EFF1EC;
}
footer .flex.footer-data {
    justify-content: space-between;
    align-items: center;
    padding: 45px 0px;
    border-bottom: 1px solid #000;
}
footer .flex.footer-data ul.footer-nav {
    display: flex;
    gap: 28px;
}
footer .flex.footer-data ul.footer-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
footer .flex.footer-data ul.social-links{
    display: flex;
    gap: 25px; 
}
footer .copyright p{
    line-height: 24px;
    padding: 18px 0px;
}
/* about */
.hero.sub-hero {
    background-image: url(../images/Sitaram-Agarwal-subhero.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 157px 0px 170px;
    position: relative;
}
.hero.sub-hero::before{
content: "";
position: absolute;
background: rgba(0, 0, 0, 0.40);
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.hero.sub-hero h1 {
    font-weight: 600;
    color: #ffffff;
    font-size: 72px;
    line-height: 112%;
}
.hero.sub-hero .hero-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}
.hero.sub-hero .hero-breadcrumb a.main-link {
    border-bottom: 1px solid #fff;
}



/* gallery */
.image-gallery{
    padding-top: 40px;
}

.image-gallery .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 30px;
}

 .fancybox-content {
    width: 800px !important;
    height: 400px !important;
    margin: auto;
}

 .fancybox-slide--image .fancybox-content {
    left: 50%;
    transform: translate(-50%, -50%) !important;
    top: 50%;
}


/* video */

.video-gallery .card-video iframe {
    width: 100%;
    height: 260px;
}

.video-gallery .card-video{
    position: relative;
}



/* contact */
.contact{
    padding: 100px 0px 0px;
}
.contact .text-box{
    padding-bottom: 60px;
}

.contact .text-box h2 {
    font-size: 80px;
    line-height: 110%;
}
.contact .text-box p {
    font-size: 24px;
    margin-top: 20px;
}

.contact .content-box {
    display: flex;
    align-items: flex-start;
    padding: 20px 20px;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0px 3px 10px -4px #7c7c7c;
    border-radius: 10px;
}
.contact .content-box .content-img-box {
    height: 50px;
    width: 50px;
    background-color: #E4E4E7;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .content-box .content-text-box span {
    display: block;
    margin-left: 15px;
    line-height: 140%;
}

.contact .contact-form {
    background-color: #F4F4F5;
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid #9D4624;
}
.contact .contact-form .input-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact .contact-form .input-data {
    margin-bottom: 20px;
}

.contact .contact-form input,
    .contact .contact-form textarea{
    width: 100%;
    background-color: #fff;
    border: 1px solid #D4D4D8;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 16px;
    color: #71717A;
}
.contact .contact-form label {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    display: block;
    line-height: normal;
    font-weight: 600;
}

.contact .contact-form textarea {
    height: 200px;
}

.contact .contact-form button {
    width: 100%;
    padding: 18px 0px;
    border-radius: 10px;
    border: 1px solid #E36634;
}
.contact .contact-form button i.fa-arrow-right {
    margin-left: 10px;
}

.contact .contact-form button:hover{
    color: #E36634;
    background-color:transparent;
    border: 1px solid #E36634;
    transition: 0.5s;
}


/* press */

.article.article-press {
    padding-top: 100px;
}
.article.article-press .select-post {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article.article-press .select-post select {
    font-size: 18px;
    font-weight: 500;
    color: #E36634;
    border: 1px solid #161616;
    border-radius: 10px;
    padding: 12px 60px 12px 20px;
    appearance: none;
    background-image: url(../images/Sitaram-Agarwal-dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-position: 94% 50%;
    cursor: pointer;
}
.article.article-press .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 41px;
    margin-top: 50px;
}
.article.article-press .grid .grid-box img.w-full {
    border-radius: 6px 6px 0px 0px;
}



.news-letter .letter-box .noptin-inpost-main-wrapper{
    width: 100%;
}
.news-letter .letter-box .noptin-inpost-main-wrapper .noptin-optin-field-wrapper{
    margin-bottom: 0px;
}
.news-letter .letter-box .noptin-inpost-main-wrapper .noptin-form-header{
    display: none;
}
.news-letter .letter-box .noptin-inpost-main-wrapper .noptin-optin-form-wrapper {
    background-color: transparent !important;
}
.news-letter .letter-box .noptin-inpost-main-wrapper .noptin-form-fields {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-letter .letter-box .noptin-inpost-main-wrapper .noptin-form-header {
    display: none;
}
.news-letter .letter-box .noptin-inpost-main-wrapper .noptin-optin-field-wrapper .noptin-form-field {
    padding: 15px 24px;
    font-weight: 400;
    background-color: #fff;
    border-radius: 40px;
    border: 1px solid #f47216;
    font-size: 14px;
    height: auto;
    min-height: auto;
    max-height: max-content;
}
.news-letter .letter-box .noptin-inpost-main-wrapper .noptin-form-footer {
    padding: 0px;
}
.noptin-inpost-main-wrapper .noptin-optin-form-wrapper {
    margin-bottom: 0;
    margin-top: 0;
    background-color: transparent;
}

input.noptin-form-submit.noptin-form-button-block {
    padding: 15px 37px !important;
    width: 207px !important;
    font-size: 14px;
    background-color: #e46a37!important;
    border: 1px solid #9D4624 !important;
   
}

.sfsiplus_footerLnk {
    display: none;
}


/*--------------faizan-----------------*/
.image-gallery.video-gallery a#loadMore-production {
    margin: auto;
    margin-top: 35px;
}


.contact .contact-form input.wpcf7-form-control.wpcf7-submit.has-spinner.text-lg.font-semibold.bg-orange.white {
    background-color: #e36634;
    color: #ffffff;
    background-image: url(../images/Sitaram-Agarwal-btn-arrow.svg);
    background-repeat: no-repeat;
    background-position: 67%;
    background-size: 20px;
}
.contact .contact-form p{
    position: relative;
}
.contact .contact-form p span.wpcf7-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
header form#headerform button {
    border: none;
    background-color: transparent !important;
}
.social-events .content-box .sharebox span {
    font-weight: 700;
    white-space: nowrap;
}
.social-events .content-box .sharebox .sfsi_widget {
    min-height: 36px;
}
.social-events .content-box .sharebox .sfsi_widget .norm_row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    margin-bottom: 0px;
}
.social-events .content-box .sharebox .sfsi_widget .norm_row a {
    width: 20px !important;
    height: 20px !important;
}
.social-events .content-box .sharebox .sfsi_widget .norm_row .sfsi_wicons.shuffeldiv {
    width: 20px !important;
    height: 20px !important;
}

footer .copyright p a {
    color: #ff4b00;
}
.contact .content-box .content-text-box span.text-lg.black {
    font-weight: 600;
}



.about-blog {
    padding: 100px 0px 0px;
}
.about-blog .grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    column-gap: 40px;
    row-gap: 40px;
}
.about-blog .grid .grid-box.post-details figure.wp-block-image img{
width: 100% !important;
border-radius : 8px;
}




.about-blog .text-box p.primary {
    margin: 20px 0px 30px;
}
.about-blog ul.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.about-blog ul.recent-posts li.post-box a {
    display: grid;
    grid-template-columns: 4fr 9fr;
    align-items: center;
    column-gap: 10px;
}
.about-blog ul.recent-posts li.post-box img {
    border-radius: 6px;
    height: 100px;
    object-fit: cover;
}
.about-blog ul.recent-posts li.post-box h4 {
    font-size: 20px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.about-blog ul.recent-posts li.post-box p.primary {
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 5px;
}