body{
   font-family: "Montserrat", sans-serif;
   background-color: #fff;
}
main.site-main {
    overflow: hidden;
}
p{
    margin-bottom: 1rem;
}
main#main {
    padding-top: 0;
    padding-bottom: 0;
}
.wp-custom-logo .site-header {
    align-items: center;
/*    background: #FFFFFF;*/
    margin-top: 0px;
    border-radius: 0;
    padding: 20px 15px;
        max-width: 1230px;
    transition: all .3s linear;
}
.site-logo .custom-logo {
    max-width: 185px;
    transition: all .3s linear;
	    outline: none;
    border: none;
}
.site-logo {
    margin: 0;
}
.site-branding {
    margin: 0;
}
h1,h2,h3,h4,h5,h6 {
   font-family: "Oswald", sans-serif;
}
a, p{
   font-family: "Montserrat", sans-serif;
}
.top-header {
    background: #853C75;
    padding: 6px 0;
}
.top_nav ul li a.login-btn img {
    padding-left: 5px;
    transition: all 1s ease;
}

h2.wp-block-heading, h2.widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}
footer#colophon {
    max-width: 100%;
    padding-bottom: 0px;
    padding-top: 66px;
}
.footer-widget nav {
    margin: 0;
}
.footer-widget .row>* {
    width: auto;
}
.footer-widget .row{
    justify-content: space-between;
}
.social-icon ul {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-top: 50px;
}
.footer-widget .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.footer-widget .menu li{
    line-height: normal;
    margin-bottom: 15px;
}
.footer-widget .menu li:last-child{
    margin-bottom: 0;
}
.footer-widget ul#menu-news.menu li {
    line-height: normal;
}
.footer-widget ul#menu-news.menu li a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.footer-nav ul li:not(:last-child):after {
    content: '|';
    margin-left: 10px;
    margin-right: 10px;
}
footer#colophon .row {
    align-items: center;
}
.footer-nav ul {
    list-style: none;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    justify-content: center;
}
.site-name {
    text-align: right;
}

.primary-navigation .primary-menu-container > ul > .menu-item{
    margin-left: 43px;
}
.primary-navigation .primary-menu-container > ul > .menu-item:first-child{
    margin-left: 0px;
}
.primary-navigation .primary-menu-container > ul > .menu-item > a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    padding: 5px 0;
    font-family: "Montserrat", serif;
}
.primary-navigation .primary-menu-container > ul > .menu-item.menu_contact_btn > a {
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 15px 30px;
    border-radius: 0;
    transition: 0.3s;
    letter-spacing: 0.04em;
}
.primary-menu-container > ul > .menu-item > a:after,
.primary-navigation .primary-menu-container > ul > .menu-item > a:after{
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: 0;
    transition: all .3s linear;
}
.primary-menu-container > ul > .menu-item > a:hover:after,
.primary-navigation .primary-menu-container > ul > .menu-item.current_page_item > a:after{
    width: 100%;
}
.primary-navigation .primary-menu-container > ul > .menu-item > a:hover
/*.primary-navigation .primary-menu-container > ul > .menu-item.current_page_item > a*/{
    text-decoration: none;
    color: #fff;
}
.primary-navigation .primary-menu-container > ul > .menu-item.menu_contact_btn  > a:hover{
    background: #333;
    color: #fff;
}
.primary-navigation .primary-menu-container > ul > .menu-item.menu_contact_btn  > a:after{
    display: none;
}
.has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button){
    background: transparent;
    color: #fff;
}
.primary-navigation .primary-menu-container > ul > .menu-item.head_btn > a:hover,
.primary-navigation .primary-menu-container > ul > .menu-item.head_btn.current_page_item > a {
    background: linear-gradient(180deg, #853C75 0%, #AA779F 100%);
    color: #fff;
}
.primary-navigation .primary-menu-container > ul > .menu-item.head_btn > a:hover:after,
.primary-navigation .primary-menu-container > ul > .menu-item.head_btn.current_page_item > a:after {
    content: none;
}
.primary-navigation .primary-menu-container > ul > .menu-item > a:focus {
    outline: none;
    text-decoration: none;
}
.primary-navigation > div > .menu-wrapper{
    align-items: center;
}
.primary-navigation .primary-menu-container{
    margin: 0;
}
.header_inr {
    position: fixed;
    z-index: 99;
    width: 100%;
    left: 0;
    top: 0;
}
.header_inr:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    z-index: -1;
}
.header_space{
    display: none;
}
/*.header_inr.affix .top-header{
    display: none;
}
.header_inr.affix ~ .header_space{
    display: block;
}
.header_inr.affix {
    position: fixed;
    -webkit-animation: fadeInDown 0.9s ease;
    -moz-animation: fadeInDown 0.9s ease;
    animation: fadeInDown 0.9s ease;
}
@keyframes fadeInDown{
    0%{transform:translate3d(0, -100%, 0)}
    to{transform:none;}
}
@-webkit-keyframes fadeInDown{
    0%{transform:translate3d(0, -100%, 0)}
    to{transform:none;}
}
.affix .site-header {
    box-shadow: 0px 3px 10px #afafaf;
}*/
.footer-widget .row>.widget_media_image {
    width: 25.6%;
}
.header_inr.affix .site-header{
    padding: 10px 15px;
}
.header_inr.affix .site-logo .custom-logo{
    max-width: 120px;
}
.header_inr.affix .primary-navigation .primary-menu-container > ul > .menu-item > a{
    font-size: 14px;
}
.header_inr.affix .primary-navigation .primary-menu-container > ul > .menu-item.menu_contact_btn > a{
    padding: 7px 10px;
    font-size: 14px;
    letter-spacing: 0;
}
[data-elementor-id="7"] .swiper-pagination-bullet ,
[data-elementor-id="1461"] .swiper-pagination-bullet,
[data-elementor-id="1540"] .swiper-pagination-bullet {
    height: 4px;
    width: 144px;
    border-radius: 0;
    background: #fff;
    opacity: 0.7;
}
[data-elementor-id="7"] .swiper-pagination-bullet.swiper-pagination-bullet-active,
[data-elementor-id="1461"] .swiper-pagination-bullet.swiper-pagination-bullet-active,
[data-elementor-id="1540"] .swiper-pagination-bullet.swiper-pagination-bullet-active{
    opacity: 1;
}
[data-elementor-id="7"] .swiper-pagination,
[data-elementor-id="1461"] .swiper-pagination,
[data-elementor-id="1540"] .swiper-pagination {
    max-width: 1200px;
    margin: 0 auto 40px;
    right: 0;
    text-align: left;
}
.site-footer {
    background: #161241;
    color: #fff;
    font-family: "Montserrat", serif;
    position: relative;
    z-index: 2;
}
aside.widget-area.footer-widget {
    background: transparent;
    max-width: 100%;
    grid-template-columns: 100%;
    padding: 0px;
    margin: 0;
}
aside.widget-area.footer-widget .container{
    margin-top: 0;
    margin-bottom: 0;
}
.btn_common, .btn_box_main .elementor-button{
    background: #000 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 20px;
    padding: 15px 30px;
    border-radius: 0;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none !important;
    letter-spacing: 0.04em;
    font-family: "Montserrat", serif;
    border: 0;
}
footer .btn_common, .btn_white, .btn_box_white .elementor-button{
    background: #fff !important;
    color: #000 !important;
}
.btn_common:hover, .btn_box_main .elementor-button:hover{
    background: #333 !important;
    color: #fff !important;
}
.ftr_cont {
    max-width: 394px;
}
.ftr_cont p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 10px;
}
.ftr_btm{
    background: #f8f8f8;
    margin-bottom: 0;
    margin-top: 45px;
    padding: 15px 0;
}
.footer-nav li, .footer-nav li a{
    font-size: 16px;
    font-weight: 400;
    color: #3E3E3E;
    font-family: "Montserrat", serif;
    text-decoration: none;
}
.footer-nav li a:hover{
    color: #fff;
}
.social_main {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social_main li:not(:last-child) {
    margin-right: 25px;
}
.social_main li a {
    display: block;
    line-height: 1;
    font-size: 29px;
    color: #3E3E3E;
}
.social_main li a:hover{
    color: #000;
}



.weare_here_sec{
    background: #D4AF37;
    overflow: hidden;
    position: relative;
    color: #fff;
}

.weare_here_sec:before {
    content: "";
    position: absolute;
    width: 324px;
    height: 360px;
    right: 0;
    top: -165px;
    background-image: url(https://www.silverlineventura.com/wp-content/uploads/2025/01/were_here_art_top.svg);
    background-repeat: no-repeat;
    display: block !important;
}
.weare_here_sec:after {
    content: "";
    position: absolute;
    width: 294px;
    height: 360px;
    left: 0;
    bottom: -152px;
    background-image: url(https://www.silverlineventura.com/wp-content/uploads/2025/01/were_here_art_btm.svg);
    background-repeat: no-repeat;
}

.head_1{
    font-size: 50px;
    font-weight: 500;
    line-height: 61px;
    color: #3E3E3E;
}
.weare_here_sec .head_1{
    margin-bottom: 40px;
}
.weare_here_left p{
    font-size: 18px;
    line-height: 22px;
/*     color: #757575; */
	color: #000;
}
.weare_here_left .cont_sub_p {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
/*     color: #757575; */
	color: #000;
}
.cont_sub_p strong{
    font-weight: 700;
}
.office_box{
    margin-bottom: 20px;
}
.office_box h4{
    font-size: 16px;
    font-weight: 700;
    line-height: 19.5px;
/*     color: #757575; */
	color: #000;
    margin-bottom: 20px;
}
.weare_here_left  .office_label{
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    padding-left: 37px;
    position: relative;
    color: #fff;
    margin-bottom: 0;
}
.office_label > span{
    position: absolute;
    left: 0;
    top: 0;
} 
.weare_here_left  .office_cont{
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #fff;
    margin-bottom: 20px;
	/*min-height: 100px;*/
}
.office_box ul{
    list-style: none;
    padding: 0;
    margin:0 ;
}
.office_box ul li {
    display: flex;
}
.office_box ul li p.office_label {
    min-width: 120px;
}
.weare_here_left .office_cont a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}
.weare_here_form{
    position: relative;
    z-index: 2;
    padding: 33px;
}
.weare_here_form:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #FFFFFF4D;
    backdrop-filter: blur(20px);
    z-index: -1;
}
.weare_here_form label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #656565;
}
.weare_here_form input.wpcf7-form-control, 
.weare_here_form textarea.wpcf7-form-control, 
.weare_here_form select.wpcf7-form-control {
    font-size: 18px;
    color: #656565;
    padding: 14px 30px;
    border: aliceblue;
    height: 58px;
    outline: none;
    width: 100%;
    border-radius: 0;
}
.weare_here_form textarea.wpcf7-form-control{
    height: 180px;
    resize: none;
}
.form_btn input.wpcf7-form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 0.04em;
    width: 123px;
    height: 50px;
    margin: 0 auto;
}
.form_btn .wpcf7-spinner {
    margin: 0 -48px 0 24px;
}
.form_btn input.wpcf7-form-control:hover{
    background: #333;
    color: #fff;
}
.weare_here_form {
    font-size: 14px;
}
.sec_padd{
 padding: 90px 0;   
}
.brand_col figure {
    padding-top: 46%;
    position: relative;
    overflow: hidden;
}




.brand_col figure img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
/*    transition: all 0.3s linear;*/
}
/*.brand_col:hover figure img{
    transform: scale(1.04);
} */
.brand_name {
    height: 95px;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.color_white{
    color: #fff;
}
.icon_box_black {
    position: relative;
    border: 1px solid #FFFFFF;
    z-index: 2;
    border-radius: 5px;
    overflow: hidden;
    padding:25px 20px;
    min-height: 200px;/*240px*/
}
.icon_box_black:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #00000080;
    backdrop-filter: blur(20px);
    z-index: -1;
}
.icon_box_black .elementor-icon-box-title {
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 19.5px;
/*    margin-bottom: 15px;*/
/*    margin-top: 15px;*/
}
.icon_box_black .elementor-icon-box-title span{
    color: #fff;
}
.icon_box_black .elementor-icon-box-description{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    transition: all .3s linear;
    color: #fff !important;
}
.suite_services_sec .icon_box_black .elementor-icon-box-description{
    font-size: 22px;
    font-size: 500;
    line-height: 27px;
}
.hovericon_box_custom .icon_box_black .elementor-icon-box-description{
    opacity: 0;
    display: none;
}
.hovericon_box_custom  .icon_box_black:hover .elementor-icon-box-description{
    opacity: 1;
    display: block;
}
.hovericon_box_custom  .icon_box_black:hover .elementor-icon-box-title{
    font-weight: 700;
    font-size: 18px;
}
.hovericon_box_custom .elementor-widget{
    width: 100%;
}
.hovericon_box_custom  .icon_box_black .elementor-icon-box-icon{
    height: 85px;
    transition: all .3s linear;
}
.hovericon_box_custom  .icon_box_black:hover .elementor-icon-box-icon{
    height: 40px;
}
.hovericon_box_custom  .icon_box_black .elementor-icon-box-icon svg{
    width: 80px;
    height: 80px;
    transition: all .3s linear;
}
.hovericon_box_custom  .icon_box_black:hover .elementor-icon-box-icon svg{
    width: 40px;
    height: 40px;
}
.icon_box_black .elementor-widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 230px;
}
.banner_with_cap{
    position: relative;
}
.banner_cap{
    position: absolute !important;
    left: 0;
    bottom: 100px;
    width: 100%;
    z-index: 2;
}
.banner_cap .elementor-widget-container{
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
    margin:0 auto;
}
.banner_cap h1 {
    font-size: 60px;
    line-height: 73px;
    font-weight: 500;
    margin: 0 0 15px;
}
.banner_cap p{
    font-size: 22px;
    font-weight: 500;
}

/*.suite_services_sec .icon_box_black .elementor-widget-container{
    justify-content: start;
    width: 100%;
    display: block;
}
*/

.suite_services_sec .icon_box_black .elementor-icon-box-wrapper {
    text-align: left !important;
    display: flex !important;
    padding: 53px 20px 36px;
    height: 100%;
    flex-direction: column !important;
    justify-content: space-around !important;
    min-height: 290px;
}
.suite_services_sec .icon_box_black:after{
    background: #2A3D48;
    backdrop-filter: none;
}
.suite_services_sec .icon_box_black{
    border-radius: 0;
    padding: 0;
}
.suite_services_sec .icon_box_black:hover .elementor-icon-box-icon {
    opacity: 0;
}

.suite_services_sec .icon_box_black .elementor-widget-container {
    display: block;
    /*justify-content: flex-start;
    align-items: self-end;*/
}
.suite_services_sec .icon_box_black .elementor-icon-box-content{
    flex-grow: inherit;
}
.suite_services_sec .icon_box_black .elementor-icon-box-wrapper:hover .elementor-icon-box-content:before {
    content: '';
    position: absolute;
    background: linear-gradient(0, #283b45, transparent);
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}
.suite_services_sec .icon_box_black .elementor-icon-box-wrapper .elementor-icon-box-content * {
    position: relative;
}
.prod_col {
    background: #002c6d;
    height: 100%;
}
.prod_name {
    padding: 10px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
}
.prod_btn{
    padding: 0px 10px 0;
    opacity: 0;
}

.prod_col figure a{
    height: 360px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: flex-end;
    margin-top: 10px;
}
.prod_col figure img {
    max-height: 360px;
    width: 100%;
    object-fit: cover;
}
.prod_col:hover{
    background: #000;
}   
.prod_col:hover .prod_btn{
    opacity: 1;
}
.prod_col:hover .prod_name {
    color: #fff;
}
.partner_row .e-con-inner{
    background-color: #222627;
}
.partner_slide_left .elementor-icon-box-title{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.partner_slide_left .elementor-icon-box-description{
    font-size: 16px;
    font-weight: 500;
}
.partner_slide_right .elementor-widget-container {
    min-height: 372px;
    display: flex;
    align-items: center;
    border-left: 2px solid #D4AF37;
}
.partner_slide_left .elementor-icon-box-wrapper {
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: start;
    justify-content: space-between;
}
.partner_slide_left .elementor-icon-box-content {
    flex-grow: inherit !important;
}
.partner_slide_left .elementor-icon-box-icon{
    margin: 0 !important;
}
.partner_row  .e-con-inner {
    max-width: 100% !important;
}
.partner_row {
    padding: 0 10px !important;
    opacity: 0.5;
}
.partnership_sec_main .slick-slider .slick-list{
    padding: 0 20% !important;
}
.partnership_sec_main .slick-slider .partner_row.slick-center{
    opacity: 1;
}
body .slick-arrow {
    position: absolute;
    height: 52px;
    width: 52px;
    left: 16%;
    top: 50%;
    transform: rotate(180deg);
    background-color: #535453 !important;
    background-image: url(https://silverlineventura.com/wp-content/uploads/2025/01/arrow_icon.svg);
    background-position: center;
    border-radius: 50%;
    opacity: 1;
    z-index: 4;
    font-size: 0;
    padding: 0;
    border: 0;
    background-size: 9px;
    background-repeat: no-repeat;
    bottom: inherit;
    transform-origin: center center;
    margin-top: -26px;
}
body .slick-arrow.slick-next{
    left: auto;
    right: 16%;
    transform: rotate(0deg);
}
.blog_item_inr{
    position: relative;
}
.blog_item_inr figure a {
    display: block;
    position: relative;
    padding-top: 56%;
}
.blog_item_inr figure a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}
.blog_content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 4;
    padding: 20px 50px;
    color: #fff;
    font-size: 16px;
}
.blog_content:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #0000004D;
    backdrop-filter: blur(20px);
    z-index: -1;
}
.blogs_list_slider .slick-list{
    padding:60px 26% !important;
}
.blog_item {
    opacity:0.5;
    position: relative;
}
.blogs_list_slider .blog_item.slick-center{
    opacity:1;
    z-index: 4;
}
.blogs_list_slider .blog_item.slick-center .blog_item_inr{
    transform: scale(1.25);
}
.blogs_list_slider .blog_item:not(.slick-center) .blog_item_inr > figure > a{
    pointer-events: none;
}

.blogs_list_slider .btn_common {
    padding: 10px 20px;
    font-size: 14px;
}
.map_tabs .e-n-tabs-heading {
    gap: 0;
}
.map_tabs .e-n-tab-title {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: 22px;
    color: #757575B2 !important;
    font-weight: 400;
}
.map_tabs .e-n-tab-title[aria-selected=true]{
    background: transparent;
    font-weight: 700;
    color: #000 !important;
}
.map_tabs .elementor-widget-image img{
    height: auto !important;
}
.map_tabs .e-n-tabs-heading {
    margin-top: 40px;
}
.fs-16{
    font-size: 16px;
}
.fs-18{
    font-size: 18px;
}
.weare_here_sec  .container {
    z-index: 4;
    position: relative;
}
.partnership_sec_main .slick-slider .partner_row .e-con-inner{
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.partner_slide_left.team_img{
    border-right: 1px solid #D4AF37;
}
.partner_slide_left.team_img .elementor-widget-container {
    display: flex;
    justify-content: center;
    background: #222627;
    width: 80%;
}
.partner_slide_left {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner_slide_left.team_img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    height: 100%;
}
.partner_slide_left.team_img .elementor-widget-container img {
    /*width: 100% !important;
    height: auto !important;
    max-width: inherit !important;*/
}

.vision_mision_sec{
    position: relative;
    overflow: hidden;
}
.vision_mision_sec:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(https://silverlineventura.com/wp-content/uploads/2025/01/mv_art_left.png), url(https://silverlineventura.com/wp-content/uploads/2025/01/mv_art_right.png);
    background-repeat: no-repeat;
    background-position: left top -130px, right bottom -70px;
}

.mision_vision_box {
    background: #F6F6FA;
    padding: 40px;
    position: relative;
    z-index: 2;
    width: 1025px;
    max-width: 90% !important;
}
.mision_box {
    margin-bottom: 30px !important;
    margin-left: auto;
}
.mision_vision_box .elementor-icon-box-title {
    font-size: 50px;
    font-weight: 500 !important;
    line-height: 60px;
    font-family: "Montserrat", serif !important;
    color: #000 !important;
}
.mision_vision_box .elementor-icon-box-description{
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Montserrat", serif;
    color: #000;
}
.mision_vision_box .elementor-icon-box-description {
    font-size: 18px;
    font-weight: 500 !important;
    line-height: 22px;
    font-family: "Montserrat", serif !important;
    color: #000 !important;
}

.why_partner_row .icon_box_black {
    margin-right: 24px;
    padding: 50px 25px;
    min-height: 370px;
}
.why_partner_row .icon_box_black .elementor-icon-box-icon{
    margin-bottom: 20px !important;
}
.why_partner_row .icon_box_black .elementor-icon-box-title{
    margin-bottom: 20px !important;
}
.why_partner_row .slick-list {
    padding:0 40px !important;
}

.executive_team_mem figure {
    height: 365px;
}
.executive_team_mem figure img{
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
    transition: all .2s linear;
}
.executive_team_mem:hover figure img{
    transform: scale(1.05);
}
.exe_team_info h4{
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    color: #000;
    margin-top: 20px;
}
.exe_team_info p{
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 0;
}
.team_pop .btn-close {
    position: absolute;
    right: 16px;
    top: 14px;
    background-color: transparent !important;
    height: 20px;
    width: 20px;
    padding: 0 !important;
    background-size: 12px auto;
    z-index: 2;
}
.team_pop .modal-dialog{
    border-radius: 0 !important;
    width: 1240px;
    max-width: 90%;
    border: 0;
    margin-left: auto;
    margin-right: auto;
}
.team_pop .modal-content{
    background-color: #A8DADC;
    background: linear-gradient(180deg, #FFFFFF 0%, #A8DADC 100%) ;
    border-radius: 0 !important;
    width: 1240px;
    border: 0;
    max-width: 100%;
}
.team_pop .modal-body {
    padding: 0;
}
.team_pop_right{
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #000000CC;

}
.team_pop_name h4{
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
    color: #000;
}
.team_pop_name p{
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 20px;
    color: #000;
}
.team_fig_img img{
    width: 100%;
}
.team_pop_right{
    min-height: 100%;
    padding: 40px 0px 25px 0;
}
.executive_team_main .container {
    padding: 0;
}
.icon_sec span.elementor-icon-list-icon svg {
    background: #2A3D48;
    width: 80px;
    height: 80px;
    padding: 15px;
}

.elementor-widget-image img {
    display: inline-block;
    vertical-align: middle;
    height: auto !important;
}
.piaggio_bnr_cap h3{
    font-size: 50px;
    font-style: italic;
    font-weight: 700;
    line-height: 61px;
    color: #fff;
}
.piaggio_bnr_cap h4{
    font-size: 38px;
    font-style: italic;
    font-weight: 700;
    line-height: 46px;
    color: #fff;
    margin-right: 60px;
}
.piaggio_bnr_cap p{
    font-size: 50px;
    font-style: italic;
    font-weight: 400;
    line-height: 61px;
    color: #fff;
}
.banner_sec_main{
    position: relative;
}
.piaggio_bnr_img {
    position: absolute !important;
    right: 0 !important;
    bottom: -30%;
}
.piaggio_bnr_img .elementor-widget-image img {
    max-width: 50% !important;
    width: 760px !important;
}
.piaggio_img_sec{
    position: relative;
}
.piaggio_img_sec:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #EAEAEA 100%);
    height: 73%;
    width: 100%;
    z-index: -1;
}

form.blog_serch_form input,form.blog_serch_form .form-control:focus {
    background: #000000;
    color: #fff;
    box-shadow: none;
    border:none;
    outline: none;
    border: 1px solid #535353;
    margin: 0;
    padding: 13px 22px;
}
form.blog_serch_form input{

}
form.blog_serch_form input::placeholder {
  color: #fff;
  font-weight: 600;
}
form.blog_serch_form {
    max-width: 450px;
    margin: 0 auto;
}
form.blog_serch_form button#blog_search_button {
    border-radius: 0;
    padding: 10px 15px;
}
ul#pills-tab.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: #2A3D48;
    color:#fff;
}
ul#pills-tab.nav-pills .nav-link {
    color: #000000;
    border-radius: 0;
    font-size: 16px;
    padding: 10px 25px;
}
ul#pills-tab {
    justify-content: center;
    gap: 35px;
}
.blog_grid h3 a {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    display: block;
    text-decoration: none;
}
.blog-meta {
    display: flex;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #212121B2;
    gap: 30px;
    padding: 20px 0;
}
.post_cat {
    position: relative;
}
.post_cat:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    right: -20px;
    top: 40%;
    background: #2A3D48;
    border-radius: 50%;
}
.post-update {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #2A3D48;
}
.blog_grid {
    margin-top: 3rem;
}
.blog-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #212121B2;
    margin-top: 24px;
}
.blog-image {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all .3s linear;
}
.blog_item_inr:hover .blog-image img{
    transform: scale(1.05);
}
.vision_box {
    padding-left: 0;
}
.mision_vision_box {
    position: relative;
}
.mision_vision_box:after{
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 3000px;
    height: 100%;
    background: #F6F6FA;
}
.mision_vision_box.vision_box:after{
    left: auto;
    right: 100%;
}
.elementor-video{
    background: transparent !important;
}
.product_page_sec {
    padding: 100px 0 0px;
    background-size: 12% auto;
    background-position: left bottom 100px;
    background-repeat: no-repeat;
}
.pro_right_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pro_right_list li a {
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    color: #000 !important;
    border-left: 6px solid transparent;
    padding: 5px 10px;
    display: block;
    margin: 10px 0;
}
.pro_right_list li a.active,
.pro_right_list li a:hover{
    font-weight: 700;
    border-left-color: #2A3D48;
}
.prod_page_right {
    padding-left: 80px;
}
.pro_right_dd select.form-select {
    width: 316px;
    margin-left: 10px;
    background-color: #2A3D48;
    color: #fff;
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    height: 70px;
    border-radius: 0;
    background-image: url(https://silverlineventura.com/wp-content/uploads/2025/01/select_aroow.svg);
    background-position: right 25px center;
    background-size:22px auto;
}
div#category_dropdown > form {
    justify-content: end;
}
.vision_mision_sec .e-con-inner{
    position: relative;
    z-index: 2;
}
.services_tab .e-n-tabs-heading .e-n-tab-title {
    background: transparent;
    padding: 0 0 0 16px;
    border-left: 6px solid transparent;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    background: transparent !important;
    color: #000 !important;
}
.services_tab .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]{
    border-left-color: #2A3D48;
    font-weight: 700;
}
.sertab_box {
    height: 100%;
    padding: 13px;
}
.sertab_box .elementor-widget-container {
    color: #000;
    padding: 45px 25px;
    background: #F6F6FA;
    border-radius: 5px;
    text-align: center;
}
.sertab_box .elementor-widget-container:hover{
    background: #293C47;
    color: #fff;
    background: linear-gradient(180deg, #293C47 0%, #010101 100%);
}
.sertab_box .elementor-widget-container h4{
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 25px;
}
.sertab_box .elementor-widget-container p{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    margin-bottom: 0;
}
.ser_icon_row .icon_box_black{
    min-height: 330px;
}

/*.glagship_row  .elementor-widget-container {
    padding: 35px 25px 25px;
}*/
.left_flagship_logo img {
    max-height: 67px;
}
.left_flagship_logo {
    margin-bottom: 56px;
}
.glagship_row h4{
    font-size: 22px;
    font-weight: 500;
    line-height: 26.82px;
    margin-bottom: 20px;

}
.btn_grey{
    background: rgba(255,255,255,0.26) !important;
}
.post-content {
    font-size: 22px;
    line-height: 31px;
}
.post.type-post .head_1{
    margin-top: 50px;
    margin-bottom: 30px;
} 
.post_main_img{
    margin-bottom: 30px;
}
.post_main_img img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}
#jobDetailsModal .modal-header {
    padding: 0;
    margin: 0;
    border: 0;
}
#jobDetailsModal .modal-body {
    padding: 0;
    display: grid;
    grid-template-columns: 42% 54%;
    justify-content: space-between;
    margin-top: 40px;
}
.carrer-form {
    background: #000000;
    padding: 40px;
}
.carrer-form label {
    color: #656565;
    font-size: 14px;
    width: 100%;
    display: block;
}
.carrer-form .form-group input {
    padding: 11px 30px;
    font-size: 18px;
    line-height: 30px;
    outline: none;
    box-shadow: none;
    border: none;
}
.upload-text {
    color: #656565;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
}
.form-group.file-box.show-file {
    padding-bottom: 30px;
}
.show-file span.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -40px;
    left: 0;
}
.file-box .upload-text {
    padding: 15px;
}
.carrer-form .form-group p {
    margin-bottom: 0;
}
.carrer-form .form-group {
    margin-bottom: 20px;
}
.form-submit p {
    margin-bottom: 0;
}
.form-submit{
    margin-top: 25px;
}
.form-submit input {
    font-size: 16px;
    color: #000000 !important;
    background: #fff !important;
    line-height: 100%;
    margin: 0 auto;
    display: block;
    font-family: "Montserrat", sans-serif;
    padding: 14px 29px;
}
.file-submit p {
    font-size: 18px;
    color: #656565;
    line-height: 30px;
}
.file-submit {
    text-align: center;
    width: 100%;
    background: #F9F9F9;
    padding: 20px;
}
.file-submit p b {
    text-decoration: underline;
}
/*.form-group.file-box span{
    width: 100%;
    height: 100%;
    display: block;
}*/
.form-group.file-box .wpcf7-form-control-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    /*opacity: 0;*/
    /*visibility: hidden;*/
}
.intl-tel-input.separate-dial-code .selected-dial-code {
    padding-left: 25px;
    font-size: 18px;
    color: #656565;
    font-weight: normal;
}
.intl-tel-input .selected-flag .iti-flag{
    display: none;
}
.intl-tel-input.separate-dial-code .selected-flag{
    background-color: transparent !important;
}
input.wpcf7-form-control.wpcf7-validates-as-phonetext {
    padding-left: 105px !important;
}
.intl-tel-input .selected-flag .iti-arrow {
    width: 17px;
    height: 11px;
    border: none;
    background-image: url(https://silverlineventura.com/wp-content/themes/silverline_child/img/down-arrow.svg);
    background-repeat: no-repeat;
    right: -10px;
}
.file-submit input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}
.iti-flag.in {
    display: none;
}
.file-submit br {
    display: none;
}
.file-submit {
    position: relative;
}
.tag-box p {
    margin-bottom: 0;
}
.tag-box {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.tag-box span {
    background: #32393C;
    border-radius: 20px;
    font-size: 20px;
    color: #fff;
    padding: 4px 15px;
}
.content-box p {
    color: #E8E8E8B2;
    font-size: 16px;
    line-height: 25px;
}
.content-box p h4{
    color: #fff;
}
.content-box ul li {
    color: #E8E8E8B2;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 5px;
}
#jobDetailsModal .modal-dialog {
    border: 0;
    max-width: 1082px;
    width: 92%;
}
#jobDetailsModal .modal-content{
    background: transparent;
    background: linear-gradient(180deg, #2A3D48 0%, #010101 100%);
    border: 0;
    padding: 70px 85px;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    border-radius: 0;
}
#jobDetailsModal .btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    margin: 0 !important;
    background-color: transparent !important;
    color: #fff !important;
    width: 28px;
    height: 28px;
    padding: 0 !important;
    background-size: 20px auto;
    filter: invert(1);
    opacity: 1;
}
#jobDetailsModal .modal-header {
    padding: 0;
    margin: 0;
    border: 0;
    /*justify-content: start;*/
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
    text-transform: uppercase;
}
#jobDetailsModal .modal-header h5, .title-box span {
    margin: 0;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 20px;
}
.title-box {
    margin-bottom: 25px;
}
#jobDetailsModal h4{
    font-size: 22px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 25px;
    margin-top: 40px;
    text-transform: uppercase;
}
p.carpop_loc img {
    filter: invert(1);
}
.content-box .d-flex{
    display: none !important;
}
#jobModalTags{
    margin-right: 10px;
}
.mail_slide_item, .main_banner{
    position: relative;
}
.main_slider_cap {
    position: absolute;
    left: 0;
	top: 15%;
    bottom: 70px;
    z-index: 2;
    width: 100%;
}
.mail_slider:not(.slick-initialized) .mail_slide_item + .mail_slide_item{
    display: none;
}
.main_slide_cont h4{
    font-size: 56px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 20px;
	color: #000;
}
.main_slide_cont p{
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 25px;
}
.color_white h4{
	color: #fff!important;
}

.mail_slider .slick-dots{
    padding: 0;
    margin: 0;
    list-style: none;
}
.mail_slider .slick-dots {
    padding: 0;
    list-style: none;
    position: absolute;
    left: 0;
    bottom: 65px;
    width: 1200px;
    right: 0;
    margin: 0 auto;
}
.mail_slider .slick-dots li:not(:last-child){
    margin-right: 25px;
}
.mail_slider .slick-dots li{
    display: inline-block;
    vertical-align: middle;
}
.mail_slider .slick-dots li button{
    padding: 0;
    margin: 0;
    height: 4px;
    width: 144px;
    background: #fff !important;
    opacity: 0.3;
    font-size: 0;
}
.mail_slider .slick-dots li.slick-active button{
    opacity: 1;
}
.slide_right_img{
    text-align: right;
}
.slide_right_img img{
    display: inline-block;
}
.main_banner .main_slider_cap{
    bottom: 0;
}
.contact_page_head,
.page-id-256 .normal_pages_head,
.page-id-1540 .normal_pages_head{
    display: none;
}
.page-id-256 .contact_page_head,
.page-id-1540 .contact_page_head{
    display: block;
}
.contact_page_head .head_1 {
    margin-bottom: 80px;
}
.ser_page_banner .main_slider_cap {
    bottom: -60px;
}
.banner_cap_center .main_slider_cap {
    bottom: auto;
    top: 50%;
    transform: translate(0, -50%);
    padding-top: 80px;
}
span.job-tag {
    font-size: 19px;
    font-weight: 400;
    line-height: 24px;
    background: #32393C;
    display: inline-block;
    padding: 6px 23px;
    border-radius: 30px;
}
.suite_services_sec .icon_box_black .elementor-icon-box-description,
.suite_services_sec .icon_box_black:hover .elementor-icon-box-title{
    display: none;
}
.suite_services_sec .icon_box_black .elementor-icon-box-title{
    margin-bottom: 0;
}
.suite_services_sec .icon_box_black:hover .elementor-icon-box-description {
    display: block;
}

.lg-toolbar .lg-close:after,
.lg-toolbar .lg-download:after,
.lg-actions .lg-prev:after,
.lg-actions .lg-next:before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.lg-toolbar .lg-close:after{
    content: "\f00d";
}
.lg-toolbar .lg-download:after{
   content: "\f019";
}
.lg-actions .lg-prev:after{
    content: "\f053";
}
.lg-actions .lg-next:before{
    content: "\f054";
}
.lg-toolbar .lg-download{
    display: none;
}
.prod_slider_mob .col.slick-slide{
    padding:0 2px;
} 
.brand_col .brandimg_hov{
    opacity: 0;
}
.brand_col:hover .brandimg_hov{
    opacity: 1;
}
.brand_col:hover figure{
    background-color: #ccc;
}
body .prod_slider_mob .slick-arrow{
    opacity: 0;
    pointer-events: none;
}
.prod_slide_btn {
    text-align: right;
    margin-bottom: 25px;
}
.prod_slide_btn > div {
    background: #282828 !important;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    position: initial;
    transform: rotate(0deg) !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    cursor: pointer;
}
.prod_slide_btn > div.slick-arrow.slick-disabled{
    background: rgba(40, 40, 40, 0.65) !important;
}
.prod_slide_btn > div.prod_slide_pre{
    transform: rotate(-180deg) !important;
    margin-right: 15px;
}
.tab_custom_blogs ul#pills-tab{
    margin-bottom: 60px !important;
}
#blog_list .blog_grid {
    margin-bottom: 50px;
}
.blog_item_inr h3 a:after{
    transition: all .3s linear;
}
.blog_item_inr:hover h3 a:after{
    opacity: 0.8;
    right: -5px;
}
.product_gal_slider .slick-list{
    padding: 0 !important;
}
.product_gal_slider .progal_slide_img{
    padding: 70px 20px;
}
.product_gal_slider .progal_slide_img figure{
    text-align: center;
}
.product_gal_slider .progal_slide_img figure img{
    display: inline-block;
    transform: scale(0.8);
    opacity: 0.5;
}
.product_gal_slider .progal_slide_img.slick-center figure img{
    transform: scale(1.3);
    opacity: 1;
}
.lightgallery{
    margin-top: 50px;
}
.h_right_pos .slide_right_img{
    position: absolute;
    right: 0;
    bottom: 0;
}
.h_right_pos .main_slide_cont{
    margin-bottom: 180px;
    position: relative;
    z-index: 4;
}
body .pos_right_top  {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    max-width: 65%;
    overflow: hidden;
    z-index: 1;
}
body .pos_right_top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    max-height: inherit;
    display: block;
}
.pro_left_head.filter-type{
    border-left: 6px solid transparent;
    padding-left: 15px;
}
.pro_left_head.filter-type.active{
    border-color:#000;
    font-weight: 700;
}
@media(max-width:767px){
    .product_gal_slider .progal_slide_img figure img{
        transform: scale(1);
    }
    .product_gal_slider .progal_slide_img.slick-center figure img{
        transform: scale(1);
    }
    .services_tab .e-n-tabs-heading .e-n-tab-title {
        border-bottom: 1px solid #ccc;
        padding-bottom: 5px;
        position: relative;
    }
    .services_tab .e-n-tabs-heading .e-n-tab-title:after {
        content: "";
        background-image: url(https://silverlineventura.com/wp-content/uploads/2025/01/arrow_icon.svg);
        background-position: center;
        position: absolute;
        right: 0;
        top: 10px;
        height: 30px;
        width: 30px;
        filter: invert(1);
        background-repeat: no-repeat;
    }
    .services_tab .e-n-tabs-heading .e-n-tab-title[aria-selected="true"]:after{
        transform: rotate(90deg);
    }
}
.view-details{
	text-align: center;
}

.text_grey {
    color: #757575;
}
.pera_22{
    font-size: 22px;
    line-height: 27px;
    font-weight: 500;
}
.pera_18{
	font-size: 18px;
}
.lh_20{
    line-height: 20px;
}
.about_parner_sec .weare_here_sec:before{
    top: -145px;
    right: -28px;
}
.about_parner_sec .weare_here_sec:after {
    background-image: url(<?php echo site_url(); ?>/wp-content/uploads/2025/02/parner_art.png);
    width: 414px;
    height: 161px;
    left: 44px;
    bottom: 0;
}
.weare_here_ftr {
	overflow: inherit;
}
.products_section {
    position: relative;
    z-index: 4;
}
.ser_icon_row .icon_box_black:after{
	background: rgba(0,0,0,0.82);
}
.blog_grid .blog_item_inr {
    padding-bottom: 60px;
}
.blog_grid .blog_item_inr .post-update {
    position: absolute;
    left: 0;
    bottom: 0;
}

.partnership_sec_main.aboutpage_p_sec .partner_row {
    opacity: 0;
}
.partnership_sec_main.aboutpage_p_sec .slick-slider .slick-list {
    padding: 0 !important;
}
.partnership_sec_main.aboutpage_p_sec .slick-arrow{
    left: -10px;
}
.partnership_sec_main.aboutpage_p_sec .slick-arrow.slick-next{
    left: auto;
    right: -10px;
}
.product_page_specification{
    padding-top: 0px;
    padding-bottom: 80px;
}
.prod_page_left .view-details{
    display: none;
}
.product_left_slider .product_gal_slider .progal_slide_img figure img {
    display: inline-block;
    transform: scale(1);
    opacity: 1;
}
.product_left_slider .progal_slide_img {
    position: relative;
}
.product_left_slider .progal_slide_img:after {
    content: "";
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translate(0, -50%);
    width: 3px;
    height: 64px;
    background: #2A3D48;
}
.product_left_slider .progal_slide_img.slick-active.slick-center ~ .progal_slide_img:after{
    opacity: 0;
}
.product_left_slider .progal_slide_img:last-child:after {
    opacity: 0;
}
.product_gal_slider .progal_slide_img figure{
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_gal_slider .progal_slide_img figure img{
    max-height: 250px;
}
.pro_icon_box{
    margin-bottom: 40px;
}
.pro_icon_box figure{
    margin-bottom: 40px !important;
}
.pro_icon_box h4{
    color: #2E2E2E;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0;
}
.next_prev_pro{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
}
.next_prev_pro  > a{
    font-weight: 500;
    font-size: 22px;
    color: #000 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.next_prev_pro  > a span {
    margin: 0 9px;
    background: #282828;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
}
.next_prev_pro > a:first-child span {
    transform: rotate(-180deg);
}
.next_prev_pro > a:first-child{
    margin-right: 140px;
}
.next_prev_pro > a:hover span {
    transform: translate(5px, 0);
}
.next_prev_pro > a:first-child:hover span{
    transform:rotate(-180deg) translate(5px, 0);
}
.next_prev_pro > a:hover{
    color: #000 !important;
}
.product_top_btns{
    margin-bottom: 40px;
}
.product_top_btns > a {
    background: #E7E7E7;
    font-weight: 500;
    font-size: 22px;
    color: #2E2E2E;
    padding: 10px 10px;
    width: 163px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product_top_btns > a:first-child{
    margin-right: 14px;
}
.product_top_btns > a.active, 
.product_top_btns > a:hover,
.product_top_btns > a:focus{
    background: #2A3D48 !important;
    color: #fff !important;
}
.partner_name h4 {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    margin-bottom: 3px;
}
.partner_name p{
    margin-bottom: 0;
}
.partner_inner{
    color: rgba(255,255,255,0.7);
}
body .mail_slider .slick-arrow{
    background-color: rgba(0, 0, 0, 0.2) !important;
    background-size: 10px auto;
    left: 15px;
}
body .mail_slider .slick-arrow.slick-next{
    left: auto;
    right: 15px;
}
body .why_partner_row .slick-arrow{
    transform: rotate(180deg) translate(0, 0);
    top: auto;
    bottom: -90px;
    left: auto;
    right: 16%;
}
body .why_partner_row .slick-arrow.slick-next {
    transform: rotate(0deg) translate(0, 0);
}
body .why_partner_row .slick-arrow.slick-prev{
    margin-right: 70px;
}
.why_partner_row {
    margin-bottom: 40px !important;
}
.part_ftr_pera {
    padding-right: 30%;
}
.elementor-page-256 .weare_here_sec.weare_here_ftr{
    overflow: hidden;
}
.suite_services_sec .icon_box_black .elementor-icon-box-title{
    text-transform: uppercase;
}
.prod_slide_btn{
    display: none;
}
.abt_testi_box .partner_name h4{
    font-size: 22px;
}
.abt_testi_box .partner_name {
    color: rgba(255,255,255,0.7);
}
.aboutpage_p_sec .partner_row .e-con-inner {
    background-color: #1A1C1B;
}
.aboutpage_p_sec .abt_testi_box {
    background: #222627;
    padding: 30px 55px;
    height: 100%;
}
.partner_slide_right {
    height: 100%;
}
.common-padding{
	padding: 50px 0;
}
.brand-content h4 {
    height: 95px;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.brand-inner figure {
    text-align: center;
    padding-top: 46%;
    position: relative;
    overflow: hidden;
}
.brand-content{
    text-align: center;
}
.brand-inner figure img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: fill;
    object-position: center;
    /* transition: all 0.3s linear; */
}
body .mail_slider_news .slick-arrow {
    background-color: rgba(0, 0, 0, 0.2) !important;
    background-size: 10px auto;
    left: 15px;
}
body .mail_slider_news .slick-arrow.slick-next {
    left: auto;
    right: 15px;
}
.brand-inner .brandimg_hov {
    opacity: 0;
}
.brand-inner:hover .brandimg_hov {
    opacity: 1;
}
.blog_grid h3 a:focus{
    color: #000 !important;
}
.brand-inner:hover figure {
    background-color: #ccc;
}
.weare_here_left .row .col-md-6:last-child {
    margin-top: 0px;
}
.page-id-731 .weare_here_sec{
    padding-bottom: 0;
}
.services-tabs .e-n-tabs-heading {
    justify-content: flex-start !important;
    padding-top: 68px;
}
form.blog_serch_form button#blog_search_button:hover, form.blog_serch_form button#blog_search_button:focus {
    background: #000 !important;
    box-shadow: none !important;
}
.job_item_inr{
    height: 100%;
}
.job_grid {
    position: relative;
    z-index: 1;
}
a.read-btn, a.read-btn:hover {
    color: #fff;
    font-size: 18px;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}
.hide-content{
    display: none;
}
.show-content a.read-btn {
    display: none;
}
.show-content .hide-content{
    display: block;
}
h2.related-posts-title {
    margin-bottom: 25px;
}
.content-box-row ul li {
    color: #212529;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: "Montserrat", serif;
    line-height: 34px;
}
.post.type-post {
    margin-bottom: 50px;
}
.single-post .container {
    margin-top: 0 !important;
}
.content-box-row h4 {
    margin-bottom: 20px;
}
.content-box-row figure img {
    width: 100%;
    height: 260px;
    margin-bottom: 10px;
    object-fit: cover;
}

@media all and (max-width: 767px){
	.weare_here_left  .office_cont{
		min-height: auto;
	}
	.common-padding{
		padding: 30px 20px;
	}
    .title-box span{
        font-size: 24px;
    }
    .tag-box{
        column-gap: 12px;
    }
}


.mail_slider-mobile{
    display: none;
}
.modal-body img{
    display: none;
}
.download_broc_sec{
    padding: 45px 0;
    background: #2A3D48;
}

.brochure-btn {
    display: inline-block;
    background-color: #000; /* You can match your theme */
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    margin-top: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brochure-btn:hover {
    background-color: #444;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 12px;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
    width: 40px;
    height: 40px;
    display: block;
}
.brand_col figure img {
	object-fit: fill !important;
}





/* #Footer */

/* SECTION BACKGROUND */
.contact-highlight-section {
    background: #d8b23c;
    padding: 80px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* LEFT SIDE */
.contact-highlight-left {
    padding-right: 40px;
}

.contact-highlight-left .main-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-highlight-left .intro-text {
    font-size: 18px;
    margin-bottom: 15px;
	color: black;
}

.contact-highlight-left .sub-text {
    font-size: 16px;
    margin-bottom: 35px;
	color: black;
}

/* OFFICE GRID */
.office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.office-card {
    background: transparent;
/*     border-left: 3px solid rgba(255,255,255,0.6); */
    padding-left: 20px;
}

.office-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
	color: black;
}

.office-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.office-card strong {
    color: #000;
}

/* DOWNLOAD CARD */
.download-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    width: fit-content;
    transition: 0.3s ease;
}

.download-btn:hover {
    background: #222;
}

/* RIGHT FORM BOX */
.contact-form-box {
    background: #e6cd77;
    padding: 35px;
    border-radius: 6px;
}

/* CF7 INPUTS */
.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
}

.contact-form-box textarea {
    height: 120px;
    resize: none;
}

.contact-form-box input[type="submit"] {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box input[type="submit"]:hover {
    background: #222;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .office-grid {
        grid-template-columns: 1fr;
    }

    .contact-highlight-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-highlight-left .main-heading {
        font-size: 36px;
    }
}

