@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ExtraLightItalic.woff2') format('woff2'),
        url('./fonts/Montserrat-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Italic.woff2') format('woff2'),
        url('./fonts/Montserrat-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ExtraLight.woff2') format('woff2'),
        url('./fonts/Montserrat-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Medium.woff2') format('woff2'),
        url('./fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-LightItalic.woff2') format('woff2'),
        url('./fonts/Montserrat-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Light.woff2') format('woff2'),
        url('./fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-MediumItalic.woff2') format('woff2'),
        url('./fonts/Montserrat-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Regular.woff2') format('woff2'),
        url('./fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-SemiBoldItalic.woff2') format('woff2'),
        url('./fonts/Montserrat-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('./fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Thin.woff2') format('woff2'),
        url('./fonts/Montserrat-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ThinItalic.woff2') format('woff2'),
        url('./fonts/Montserrat-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Black.woff2') format('woff2'),
        url('./fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-BlackItalic.woff2') format('woff2'),
        url('./fonts/Montserrat-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Bold.woff2') format('woff2'),
        url('./fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-BoldItalic.woff2') format('woff2'),
        url('./fonts/Montserrat-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('./fonts/Montserrat-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ExtraBoldItalic.woff2') format('woff2'),
        url('./fonts/Montserrat-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-size: 16px;
    color: #fff;
    font-family: 'Montserrat';
    background-color: var(--light_pink);
}

img{
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
}

a{
    text-decoration: none;
}

li{
    list-style-type: none;
}

.container{
    max-width: 1630px;
    padding:0px 50px;
    width: 100%;
    margin: 0px auto;
}


:root{
    --green:#78EE8A;
    --white:#fff;
    --dark_blue:#152048;
    --blue:#78EBF0;
    --light_blue:#0e152e;
    --light_pink: #FDFAF0;
   
}

.light_blue_bg{
    background-color: var(--light_blue)
}
.light_pink_bg{
    background-color: var(--light_pink) !important;
}
.blue_bg{
    background-color: var(--blue);
}


h1,h2,h3,h4,h5,h6{
    font-family: 'Montserrat';
    color: var(--light_blue);
    font-weight: bold;
}


h1 {
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
}

h2{
    font-size: 39px;
    line-height: 71.01px;
    color: var(--light_blue);
    line-height: unset;
}

h3{
    font-size: 25px;
    line-height: 35px;
}

h4{
    font-size: 20px;
    font-weight: 700;
    line-height: 28px; 
}

h5{
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

h6{
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: 0.96px;
    color: #fff;
}

p{
    font-size: 18px;
    line-height: 28px;
    color: var(--light_blue);
}

.sixteen_p p{
   font-size: 16px;
   font-weight: 600;
   line-height: 1.75;
   color: var(--white);
}   

.twenty_p p{
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.twenty_p p span ,.twenty_p ul li span{
    font-weight: 700;
    padding-right: 5px;
}
.twenty_p ul{
    padding-left: 25px;
}
.twenty_p ul li{
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    position: relative;
}
.twenty_p ul li::before {
    content: '';
    left: -20px;
    top: 20px;
    width: 4px;
    height: 4px;
    position: absolute;
    background: #000;
    border-radius: 500%;
}

.twelve_p p ,.twelve_p a{
    font-size: 12px;
    font-weight: 400;
    line-height: unset;
}

a.btn {
    font-size: 14px;
    color: var(--light_blue);
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14.215px 53.8px;
    transition: all ease-in-out 0.3s;
    border-radius: 26px;
    text-transform: uppercase;
    width: max-content;
}

a.btn:hover{
    transition: all ease-in-out 0.3s;
}
.blue_bor{
    border: 2px solid var(--dark_blue);
    transition: all ease-in-out 0.3s;
}
.blue_bor:hover{
    background-color: var(--blue);
    border: 2px solid transparent;
}
.green_btn{
    color: var(--light_blue);
    background-color: var(--green);
}
.green_btn:hover {
    color: var(--blue);
    background-color: var(--dark_blue);
}
.white_bor{
    color: var(--white) !important;
    border: 2px solid var(--white);
}
.white_bor:hover{
    background-color: var(--blue);
    color: var(--dark_blue) !important;
    border: 2px solid transparent;
}

.blue_btn {
    background-color: var(--blue);
    color: var(--dark_blue) !important;
    border: none;
}
.blue_btn:hover {
    background-color: var(--white);
    border: none !important;
}

/*************************************************************** Header *********************************************************************/




.header {
    padding: 12px 0px;
    box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.08);
    position: fixed;
    left: 0;
    top: 40px;
    width: 100%;
    background-color: var(--white);
    z-index: 999;
}
.header:hover{
    background-color: #2C4087 !important;
    transition: 0.2s all ease-in-out;
}
.header:hover .header_links a {
    color: var(--white);
    transition: 0.2s all ease-in-out;
}
.header:hover .header_logo a path {
    fill: white;
    transition: 0.2s all ease-in-out;
}

.header_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_right {
    display: flex;
    width: 70.8%;
    justify-content: space-between;
    align-items: center;
}
.header_logo {
    flex: 1;
    max-width: 123px;
}
.header_logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.header_links .menu-header-menu-container > ul  ,.header_links ul  {
    display: flex;
    gap: 34px;
}
.header_links li {
    position: static;
}
.header_links li a{
    position: relative;
}
.header_links li a::before {
    overflow: hidden;
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    background: var(--blue);
    bottom: -41px;
    transform: scaleX(0);
}
.header_links li a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 52px;
    top: 70%;
    left: 0;
}
.header_links li a:hover::before {
    transform: scaleX(1);
    transition: 0.3s all ease-in-out;
}
.header_links a {
    font-size: 14px;
    font-weight: bold;
    line-height: 26px;
    color: #0E152E;
    text-transform: uppercase;

}
.header_links a:hover ,.footer_contact_links a:hover {
    color: #78ebf0;
    transition: 0.3s all ease-in-out;
}





.megamenu_open {
    display: none;
    background: rgba(7, 6, 6, 0.94);
}
.header_links li a:hover .megamenu_open {
    display: block;
    transition: all ease-in-out 0.3s;
}

.header_links li:hover .megamenu_open {
    display: block;
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
}
.header:hover .header_links a:hover {
    color: var(--blue);
}

 
.header_right ul.sub-menu {
    column-count: 5;
    max-width: 1630px;
    padding: 0 50px;
    display: block;
    gap: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    gap: 8px;
}
.header_right ul.sub-menu a {
    color: var(--white);
    font-weight: 500;
}
/*.header_right .menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}*/
.header_right ul.sub-menu li a::after {
    display: none;
}


/******************************************************* Hero Banner  *****************************************************************************/


.hero_banner_main {
    padding: 394px 0 220px;
    max-width: 598px;
}
.hero_banner {
    position: relative;
    z-index: 1;
}
.hero_banner::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 1px;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(./bgimages/image\ 4.svg);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: multiply;
}
.hero_banner_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.hero_banner_img img {
    width: 100%;
    height: 100%;
	object-fit: cover;
}
.hero_banner_top h4 {
    line-height: 25px;
    text-transform: uppercase;
    color: #78EBF0;
    padding-bottom: 5px;
}
.hero_banner_btm {
    margin-top: 55px;
    padding-left: 30px;
    border-left: solid 4px #78ebf0;
}
.hero_banner_btn {
    padding-top: 27px;
    display: flex;
    gap: 28px;
}

/************************************************************************************* Advance  ******************************************************************** */

.advantage {
    padding: 15px 0px 16px;
}
.advantage_main {
    display: flex;
    gap: 42px;
    align-items: center;
    justify-content: space-between;
}
.advantage_tab {
    width: 32%;
    display: flex;
    align-items: center;
    gap: 65px;
    padding: 5px 20px 5px;
    border-radius: 13px;
    background-color: #333d5e;
}
.advantage_tab p {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}




/******************************************************************** About Us ********************************************************************/


.about_us{
    padding: 120px 0px;
}
.about_us_main {
    max-width: 1400px;
    display: flex;
    align-items: center;
}
/*.about_us_text {
    padding: 122px 131px;
    flex: 1;
}*/
.about_us_img {
    width: 62.51%;
}
.about_us_img img {
    border-radius: 16px;
    box-shadow: 0 3px 26px 0 rgba(0, 0, 0, 0.08);
}
.about_us_text {
    padding: 119px 131px;
    flex: 1;
    margin-right: -15.66%;
    position: relative;
    z-index: 1;
    background-color:  var(--light_pink);
    border-radius: 16px;
/*    box-shadow: 0 3px 26px 0 rgba(0, 0, 0, 0.08);*/
}
.about_us_text p {
    padding: 60px 0px 30px;
}


/***************************************************************** Client Logo Section ***********************************************************/


.client_logo_main {
    max-width: 1268px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
}
.client_logo {
    padding-bottom: 120px;
}


/***********************************************************feature section*************************************************************/

.feature_heading h2 {
    color: #0E152E;
    text-align: center;
    padding-bottom: 26px;
    line-height: unset;
}
.feature_btm {
    padding-bottom: 62px;
}
.tab_dis{
    display: flex;
    flex-direction: column;
    gap: 62px;
}
.feature_content {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 31px 37px 31px 37px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}

.feature_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
	overflow: hidden;
}
.feature_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transform: scale(1);
    overflow: hidden;
    transition: 0.2s all ease-in-out;
}
.feature_img:hover img{
    transform: scale(1.2);
    transition: 0.3s all ease-in-out;
}

.tab_block a {
    position: relative;
    padding-top: 275px;
    width: 23.12%;
    z-index: 1;
    display: flex;
    align-items: end;
}
.tab_block a:before {
    content: '';
    background-color: var(--light_blue);
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    border-radius: 16px;
    mix-blend-mode: multiply;
}

.feature_content::after {
    content: '';
    position: absolute;
    backdrop-filter: blur(10.3px);
    z-index: -1;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 0 0 16px 16px;
    bottom: -1px;
    top: auto;
    -webkit-backdrop-filter: blur(10.3px) !important; / For iOS Safari /
}

.feature_content h3 {
    line-height: 1.5;
    text-align: left;
    color: #fdfaf0;
}

.feature_content button {
    background: transparent;
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-top: 17px;
    width: max-content;
    padding: 13px 22.4px;
    border-radius: 34px;
    transition: all ease-in-out 0.3s;
    font-weight: 600;
    cursor: pointer;
}
.feature_tab {
    display: flex;
    justify-content: center;
    gap: 42px;
    padding-bottom: 57px;
}

.feature_tab a {
    color: #0e152e;
    line-height: 24px;
    font-size: 20px;
    padding-bottom: 12px;
    font-weight: 500;
}

.feature_tab a.active{
    border-bottom: 4px solid var(--blue);
}

.feature_btn a {
    padding: 11.4px 40px;
    border-radius: 34px;
    line-height: 1.86;
}

.feature_btn {
    display: flex;
    justify-content: center;
}
.tab_block {
    display: flex;
    gap: 42px;
}


.feature_content h4 ,.blog_content h4{
    color: var(--white);
    text-transform: capitalize;
}

.tab_dis {
    display: none;
}
.tab_dis.active {
    display: flex;
}

/***********************************************************industries section*************************************************************/



.industries_section {
    color: #000;
    background-color: rgb(120 233 137 / 20%);
    padding: 427px 0px 0;
    margin-top: -355px;
    padding-bottom: 129px;
}

.industries_main {
    max-width: 1270px;
    margin: 0 auto;
    display: flex;
    gap: 173px;
    align-items: center;
}

.industries_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 3px 6px 0 rgba(14, 21, 46, 0.16);
}

.industries_right {
    width: 38.04%;
}

.industries_left {
    flex: 1;
    width: 100%;
    height: 100%;
}

.industries_right_title {
    padding-bottom: 33px;
}
.industries_accaccordion_title {
    display: flex;
    gap: 23.5px;
    align-items: center;
    border-bottom: 2px solid #0E152E;
    cursor: pointer;
}
.industries_accaccordion_title img {
    max-width: 24px;
    max-height: 26px;
}


.industries_accaccordion_description {
    display: none;
    padding: 42px 0px 36px;
}

.industries_accaccordion_title::after {
    content: '';
    position: absolute;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15.62" height="8.931" viewBox="0 0 15.62 8.931"><path id="Icon_ionic-ios-arrow-down" data-name="Icon ionic-ios-arrow-down" d="M14,17.485l5.906-5.911a1.112,1.112,0,0,1,1.577,0,1.126,1.126,0,0,1,0,1.581l-6.692,6.7a1.114,1.114,0,0,1-1.539.033L6.513,13.16A1.116,1.116,0,0,1,8.09,11.579Z" transform="translate(-6.188 -11.247)" fill="%230e152e"/></svg>');
    background-size: 100%;
    background-repeat: no-repeat;
    width: 16px;
    height: 9px;
    right: 0;
    transition: 0.4s all ease-in-out;
}


.industries_accaccordion_title h4 {
    line-height: 2.7;
    font-weight: 500;
    text-transform: capitalize;
}
.industries_accaccordion_box {
    position: relative;
}

.industries_accaccordion_title.active::after {
    transform: rotateX(180deg);
    transition: 0.4s all ease-in-out;
}
.industries_right_accordion .industries_accaccordion_box:last-child .industries_accaccordion_description {
    padding-bottom: 0;
}




/*************************************************************** Specialist Service **************************************/


.services_section {
    padding: 162px 0px 172px;
    color: var(--light_blue);
}
.services_main {
    max-width: 1006px;
    margin: 0 auto;
}
.services_title h2 {
    padding-bottom: 59px;
    text-align: center;
}
.services_row {
    display: flex;
    gap: 42px;
}
.services_box {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 46px;
}
.services_box_top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 3px 6px 0 rgba(14, 21, 46, 0.16);
    border-radius: 16px;
}
.services_box_btm {
    display: flex;
    flex-direction: column;
    gap: 46px;
    flex: 1;
}
.services_box_btm_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 30px;
    border-left: 2px solid var(--blue);
}
.services_box_btm_content a {
    margin-top: 39px;
    padding: 14.215px 29px;
}
.services_box_btm_content p {
    flex: 1;
}


/************************************************************************************** News Section *********************************************************************************/


.news_section {
    padding-bottom:  137px;
}
.title_news {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.title_news h2 {
    line-height: 43px;
}
.news_blog {
    width: 31.5%;
    z-index: 1;
    position: relative;
}
.news_blog_section {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
    padding-top: 65px;
}
.blog_content {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 25px 37px 28.5px 37px;
}
.blog_content::after {
    filter: blur(10.3px);
    backdrop-filter: blur(10.3px);
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    border-radius: 0 0 16px 16px;
}
.blog_date_btn {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.blog_content h3 {
    line-height: 30px;
    color:  var(--light_pink);
}
.blog_date {
    display: flex;
    align-items: center;
}
/*.blog_date p:last-child {
    padding-left: 10px;
    margin-left: 9px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-left: 0.5px solid wheat;
}*/
.blog_date p {
    font-size: 12px !important;
    line-height: normal;
    color: #fff;
}
.blog_date_btn span {
    display: flex;
    align-items: center;
    padding: 10px;
    background: var(--white);
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    color: #152048;
    border: unset;
    border-radius: 2px;
    cursor: pointer;
}
.blog_img {
    overflow: hidden;
	border-radius: 16px;
	transition: 0.2s all ease-in-out;
}
.blog_img img {
    border-radius: 16px;
    transform: scale(1);
    overflow: hidden;
    transition: 0.2s all ease-in-out;
    width: 100%;
}
.blog_img:hover img {
    transform: scale(1.2);
    transition: 0.3s all ease-in-out;
}

/********************************************************************** Customer Slider  **************************************************************/


.customer_section {
    position: relative;
}
.customer_bg_img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}
.customer_bg_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.customer_main {
    position: relative;
    padding: 153px 0px;
}
.customer_title h2 {
    color: #fdfaf0;
    text-align: center;
    padding-bottom: 112px;
}
.customer_swiper_box {
    position: relative;
    padding: 102px 39px 41px;
    border-radius: 16px;
    border: solid 1px #78ebf0;
    display: flex;
    flex-direction: column;
}
.customer_swiper_box::after {
    content: '';
    position: absolute;
    background: url('data:image/svg+xml,<svg id="Group_8974" data-name="Group 8974" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="91" height="91" viewBox="0 0 91 91"><defs><clipPath id="clip-path"><rect id="Rectangle_1164" data-name="Rectangle 1164" width="91" height="91" fill="none"/></clipPath></defs><g id="Group_8973" data-name="Group 8973" clip-path="url(%23clip-path)"><path id="Path_7180" data-name="Path 7180" d="M77.345,13.27A45.308,45.308,0,1,0,13.27,77.345,45.308,45.308,0,0,0,77.345,13.27" fill="%2378ebf0"/><path id="Path_7181" data-name="Path 7181" d="M433.313,267.144v-6.637h-2.188a14.573,14.573,0,0,0-13.606,9.362,14.322,14.322,0,0,0-.9,5.1v15.6h16.693V273.882H424.52a.416.416,0,0,1-.4-.527c1.014-3.645,3.4-6.211,9.193-6.211" transform="translate(-368.204 -230.233)" fill="%231f3581"/><path id="Path_7182" data-name="Path 7182" d="M236.181,267.144v-6.637h-2.188a14.573,14.573,0,0,0-13.606,9.362,14.322,14.322,0,0,0-.9,5.1v15.6h16.693V273.882h-8.793a.416.416,0,0,1-.4-.527c1.014-3.645,3.4-6.211,9.193-6.211" transform="translate(-193.981 -230.233)" fill="%231f3581"/></g></svg>');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 91px;
    height: 91px;
    top: -12%;
    bottom: 0;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
}
.customer_swiper_box p {
    color: #FFF;
}
.customer_swiper_box p:first-child {
    font-weight: 500;
/*    max-width: 401px;*/
}
.customer_swiper_box p:last-child {
    padding-top: 57px;
    font-size: 20px;
    font-weight: bold;
    color: #fdfaf0;
    line-height: unset;
    margin-top: auto;
}
.customer_swiper{
    overflow: visible !important;
}
.customer_section {
    position: relative;
    background: #1F3581;
    overflow: hidden;
}
.customer_slide {
    height: auto !important;
    display: flex !important;
}


/******************************************************************** Get Quote ************************************************************/


.get_quote{
    padding: 67px 0px;
}
.get_quote_left {
    width: 23.34%;
    max-width: 357px;
    display: flex;
    flex-direction: column;
    gap: 87px;
}
.quote_right{
    flex: 1;
}
.get_quote_top p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.13;
}
.get_quote_top p span {
    font-weight: 700;
}

.get_quote_main {
    display: flex;
    justify-content: space-between;
    gap: 167px;
}
.quote_right .forminator-custom-form {
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.quote_right .forminator-custom-form .forminator-row .forminator-col {
    padding: 0 !important;
}
.quote_right .forminator-custom-form .forminator-row {
    margin: 0 !important;
    margin-bottom: 10px !important;
}
.quote_right .forminator-custom-form .forminator-row label {
    display: none !important;
}
.quote_right .forminator-custom-form .forminator-row:nth-child(2) ,.quote_right .forminator-custom-form > .forminator-row:nth-child(3) {
    grid-column: span 2;
    gap: 42px;
}
.quote_right .forminator-custom-form .forminator-row:nth-child(4) {
    margin-top: -64px !important;
    padding-right: 21px;
}
.quote_right .forminator-row.forminator-row-last {
    padding-left: 21px;
    padding-top: 26px;
}
.quote_right .forminator-custom-form .forminator-row .forminator-field-textarea {
    height: 117px;
}
.quote_right .forminator-custom-form .forminator-row .forminator-field-textarea .forminator-field ,.quote_right .forminator-custom-form .forminator-row .forminator-field-textarea .forminator-field textarea {
    height: 100% !important;
    min-height: 100% !important;
}
.quote_right .forminator-custom-form .forminator-row .forminator-col input, .quote_right .forminator-custom-form .forminator-row .forminator-field-textarea .forminator-field textarea, .quote_right .forminator-custom-form .forminator-row .forminator-field select {
    background: transparent !important;
    border: 2px solid #0E152E !important;
    border-radius: 13px !important;
    padding: 16px 25px;
    line-height: normal;
    color: #0E152E !important;
    width: 100%;
    outline: none !important;
    box-shadow: none !important;
}
.quote_right .forminator-custom-form ::placeholder, .quote_right .forminator-custom-form select {
    font-size: 16px;
    font-weight: 500;
    color: #0e152e !important;
    text-shadow: unset !important;
}
.quote_right .forminator-row.forminator-row-last button {
    background: var(--white) !important;
    color: #0E152E !important;
    font-size: 14px !important;
    line-height: normal !important;
    font-weight: 600 !important;
    border-radius: 34px !important;
    padding: 17px 32px !important;
    text-transform: uppercase !important;
    display: flex !important;
	margin-bottom: 0 !important;
}
.quote_right .forminator-row.forminator-row-last .forminator-field {
    width: max-content !important;
    margin-left: auto !important;
}


/******************************************************************** Footer ********************************************************************/



.footer_top{
    padding:63px 0px;
}
.footer_main {
    display: flex;
    justify-content: space-between;
}
.footer_contact_links {
    width: 22%;
}
.footer_contact_title h5 {
    text-transform: uppercase;
    line-height: unset;
    letter-spacing: 1.12px;
    color:  var(--light_pink);
    padding-bottom: 15px;
    border-bottom: 2px solid #78EBF0;
    margin-bottom: 19px;
}
.footer_contact_links p, .footer_contact_links a {
    font-size: 12px !important;
    line-height: 1.33 !important;
    letter-spacing: 0.96px;
    color: #fff;
    font-weight: 400;
}
.footer_contact_title a {
    display: block;
    width: max-content;
    padding-bottom: 4px;
}
.footer_contact_title ul {
    column-count: 2;
    gap: 170px;
}
.social_icons {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
}
.footer_btm {
    background-color: #000;
    padding: 15px 0px 14px;
}
.copyright p ,.copyright a {
    font-size: 10px !important;
    line-height: 3;
    letter-spacing: 0.8px;
    color:  var(--light_pink);
    text-align: center;
}
.copyright a {
    padding-left: 5px;
    border-left: 1px solid white;
    margin-left: 3px;
}





/*************************************************************** About Us Page ********************************************************************/

/********************************************************** Inner Banner **********************************************************************/

.inner_banner_main {
    padding: 339px 0 217px;
}

.inner_banner::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 1px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 25.14%, rgba(0, 0, 0, 0.10) 100%);
}
.inner_banner_main h1 {
    line-height: normal;
}
.inner_banner_main p {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    padding-top: 20px;
}   

/***************************************************** Bradcrums ******************************************************/

.bradcrums_main {
    padding-top: 23px;
}
.bradcrums_main a{
    color: var(--light_blue);
}

/*************************************************** About Us Logo *****************************************************/

.about_logo{
    padding-top: 86px;
    padding-bottom: 127px;
}

/*********************************************** About Us Insudstries **************************************************** */

.industries_section.about_us_page {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 140px;
}


/************************************************* Work Section ********************************************************/



.work_section{
    padding: 125px 0 139px;
}
.work_section_main {
    flex-direction: row-reverse;
    max-width: 100%;
}

.work_section_main .about_us_text {
    margin: 0;
    margin-left: -14.39%;
    padding: 97px 0 97px 131px;
}

.work_section_main .about_us_img {
    width: 65.76%;
}
.work_section_main .about_us_img img {
    border-radius: 16px;
    box-shadow: 0 17px 46px 0 rgba(14, 21, 46, 0.11);
}
.about_us_text h2 {
    line-height: 43px;
}
.work_section_main p {
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.4;
    padding: 0;
    padding-top: 60px;
}



/************************************************************ about info ********************************************************************/



.about_info {
    padding: 143px 0;
    background-color: rgb(39 47 76 / 13%);
}
.about_info_title {
    padding-left: 73px;
    border-left: 2px solid #2C4087;
}
.about_info_discription {
    padding-top: 93px;
    display: flex;
    justify-content: space-between;
}
.about_info_tab {
    width: 22.95%;
    display: flex;
    flex-direction: column;
}
.about_info_text {
    padding: 27px 38px 39px 31px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 13px 46px 0 rgba(14, 21, 46, 0.08);
    background-color: #f3f9f0;
    border-radius: 0 0 16px 16px;
    flex: 1;
}
.about_info_img img {
    min-height: 133px;
    max-height: 133px;
    object-fit: cover;
    width: 100%;
	border-radius:16px 16px 0 0;
}
.about_info_text h3 {
    line-height: 1.12;
    padding: 23px 0 48px;
}
.about_info_discription .about_info_tab:nth-child(even) .about_info_text {
    border-radius: 16px 16px 0 0;
}
.about_info_discription .about_info_tab:nth-child(even){
    flex-direction: column-reverse;
}

.about_info_discription .about_info_tab:nth-child(even) img {
    border-radius: 0 0 16px 16px;
}




/************************************************************** comunity Outreach *******************************************************/


.community_outreach_main {
    max-width: 1440px;
    margin: 0px auto;
}
.commuinty_outreach {
    padding: 80px 0px 120px;
}
.comunity_top {
    display: flex;
    gap: 250px;
    padding-bottom: 50px;
}
.comunity_title {
    width: 32.65%;
}
.comunity_discription {
    flex: 1;
}
.comunity_title h2 {
    line-height: normal;
}
.comunity_discription h4 {
    line-height: normal;
    padding-bottom: 16px;
}
.comunity_discription p {
    line-height: 30px;
}



/******************************************************** Commercial Service Page ***************************************************************/


.maintenance_section {
    padding: 50px 0 56px;
}

.title_maintenance p , .title_maintenance h2{
    color: var(--white);
    text-align: center;
    line-height: normal;
}
.title_maintenance h2 ,.handling_point_content h3{
    text-transform: uppercase;
    line-height: normal;
    color: var(--white);
}
.title_maintenance > p {
    font-size: 20px;
    font-weight: 600;
    padding-top: 24px;
}
.handling_point_content {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    flex-wrap: wrap;
}
.handling_point {
    width: 23.66%;
    padding-left: 38px;
    border-left: 1px solid rgb(217, 217, 217, 0.2);
}
.handling_point_content .handling_point:first-child {
    padding-left: 0;
    width: 21.18%;
    border-left: none;
}
.handling_point_content .handling_point:last-child {
    padding-right: 0;
}
.handling_point_content h3 {
    padding-left: 10px;
    border-left: 3px solid var(--blue);
    font-size: 24px;
}
.handling_point_content p {
    text-align: left;
    opacity: 0.7;
    padding-left: 10px;
    font-weight: 400;
    padding-top: 8px;
}


/****************************************************** Services Section *****************************************************/


.services_section {
    padding: 200px 0 251px;
}
.services_section_main{
    display: flex;
    flex-direction: column;
    gap: 273px;
    max-width: 1206px;
    margin: 0px auto;
}
.sevices {
    display: flex;
    align-items: center;
    gap: 100px;
}
.services_img {
    width: 53.234%;
    position: relative;
}
.services_img::before {
    content: '';
    position: absolute;
    top: -120px;
    background-image: url(https://silicon-tech.adeocreative.net/wp-content/uploads/2024/05/services_patch.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 252px;
    height: 315px;
    z-index: -1;
    right: 104px;
}
.services_img::after {
    content: '';
    position: absolute;
    bottom: -124px;
    background-image: url(https://silicon-tech.adeocreative.net/wp-content/uploads/2024/05/services_patch.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 252px;
    height: 315px;
    z-index: -1;
    left: 104px;
}
.services_img img {
    border-radius: 30px;
}
.services_content {
    flex: 1;
}
.services_section_main .sevices:nth-child(even) {
    flex-direction: row-reverse;
}
.services_content h2 {
    line-height: normal;
    font-weight: bold;
}
.services_content ul ,.services_content p ,.services_content h4  {
    padding-top: 16px;
}



/****************************************************************** why_required_silicon ******************************************************************/

.why_required_silicon{
    background: #1F3581;
    padding: 80px 0;
}
.why_required_silicon_main {
    display: flex;
    gap: 80px;
}
.required_silicon_content {
    width: 60.78%;
    max-width: 820px;
}
.required_silicon_img {
    flex: 1;
    max-width: 538px;
}
.required_silicon_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.required_silicon_content h2 {
    line-height: normal;
    color: var(--white);
    padding-bottom: 24px;
}
.required_silicon_content h2 {
    line-height: normal;
    color: var(--white);
    padding-bottom: 24px;
}
.required_silicon_content p{
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding-top: 16px;
}
.required_silicon_content p:first-child{
    padding-top: 0;
}
.required_silicon_content p span {
    font-weight: 700;
    padding-right: 5px;
}


/******************************************************** Commercial Service Page ***************************************************************/


.inner_banner_main {
    max-width: 800px;
}
.rediential_maintenance .handling_point {
    padding: 0;
    width: max-content;
    border-left: unset;
    flex: unset;
}
.rediential_maintenance .handling_point:first-child{
    width: max-content;
}
.rediential_maintenance .handling_point_content {
    justify-content: center;
    gap: 35px 54px;
}



/***************************************************************** Blog Page ***********************************************************************/



.blog_section{
    padding: 120px 0px;
}
.blog .blog_date p {
    color: #fff;
    font-size: 16px !important;
    font-weight: 400;
    padding: 0;
    border: none;
    margin: 0;
}
.blog .blog_date_btn {
    padding-top: 12px;
}

/************************************************************* Blog Listing Page ********************************************************************/


.blog_listing_banner .inner_banner_main {
    max-width: 700px;
}
.blog_listing_text {
    padding: 50px 0 120px;
}
.blog_listing_text p, .blog_listing_text ul, .blog_listing_text h4 {
    padding-top: 24px;
    font-size: 20px;
}
.blog_listing_text  ul li {
    font-size: 20px;
    padding-bottom: 5px;
}
.blog_listing_text ul li span {
    font-size: 20px;
}
.blog_listing_text p:first-child {
    float: left;
    width: 50%;
    margin-bottom: 24px;
    padding: 0;
}

.blog_listing_text img {
    float: right;
    margin-top: -385px;
    position: relative;
    z-index: 3;
    margin-left: 30px;
    margin-bottom: 30px;
    border-radius: 30px;
}

.blog_listing_banner .inner_banner_main {
    max-width: 700px;
    padding: 250px 0 150px;
}
.blog_listing_text.twenty_p {
    padding: 26px 0 120px;
}


/* Live site update css */


.header_logo_hover {
    display: none;
}
.mobileIcon {
    display: none;
}

.header:hover .header_logo_hover {
    display: block;
}
.header:hover .header_logo_normal {
    display: none;
}

.sub-menu li::after, .sub-menu li::before {
    content: none;
}
/*ul.sub-menu {
    display: none;
}*/


/* 13-05-2024  */

/*.handling_point h3 {
    flex: 1;
}*/
.handling_point {
    width: 23.66%;
    padding-left: 24px;
    border-left: 1px solid rgb(217, 217, 217, 0.2);
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.services_content ul li {
    padding-top: 8px;
    font-size: 18px;
}


.parent-menu {
    display: block;
    position: absolute;
    bottom: 0;
    top: 99px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #2C4087 !important;
    opacity: 0;
    visibility: hidden;
    padding: 20px 0 18px;
}

.header_right .menu li:hover .parent-menu {
    opacity: 1;
    visibility: visible;
}







.contact_us_form_main {
    display: flex;
    align-items: stretch;
    gap: 304px;
}
.contact_us_form {
    width: 35.157%;
    padding: 125px 0 200px;
}
.contact_us_map iframe {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
}
.contact_us_map {
    flex: 1;
    position: relative;
    height: 100%;
    padding-top: 60%;
    margin-top: -2%;
}

.contact_us_form form {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.contact_us_form form label {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.contact_us_form form input {
    padding: 0 !important;
    margin: 0 !important;
}
.contact_us_form form .forminator-row {
    margin: 0 !important;
}
.contact_us_form form .forminator-row div {
    padding: 0 !important;
}
.forminator-ui.forminator-custom-form br {
    display: none;
}

.contact_us_form h2 {
    line-height: 46px;
    padding-bottom: 53px;
}
.contact_us_form form .forminator-row input, textarea {
    padding: 16px 25px !important;
    background: transparent !important;
    border-radius: 13px !important;
    border: solid 2px #0e152e !important;
    resize: none !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    color: #0E152E !important;
}
.contact_us_form form .forminator-row input, textarea::placeholder {
    color: #0E152E !important;
}
.contact_us_form form .forminator-row.forminator-row-last button {
    padding: 16px 30px !important;
    background: transparent !important;
    color: #0e152e !important;
    border-radius: 34px !important;
    border: solid 2px #0e152e !important;
    resize: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    margin-bottom: 0 !important;
}
.contact_us_form form .forminator-row.forminator-row-last button:hover {
    background: var(--blue) !important;
    border: 2px solid var(--blue) !important;
    box-shadow: none !important;
}
.contact_us_form form .forminator-row {
    margin-bottom: 8px !important;
}
.contact_us_form form .forminator-row.forminator-row-last {
    margin-top: 50px !important;
    margin-bottom: 0 !important;
}


.sub-menu li a::before {
    content: none;
}
.quote_right .forminator-row.forminator-row-last button:hover {
    background-color: var(--dark_blue) !important;
    color: var(--blue) !important;
}
.services_section.home_service_new {
    padding: 162px 0 178px;
}
.about_info_title h3 {
    max-width: 1090px;
}
.industries_right_title h2 {
    line-height: 46px;
}
.blog_content button {
    padding: 7px 20px;
    line-height: 1;
    border-radius: 2px;
    font-size: 12px;
    background-color: var(--light_pink);
    color: var(--dark_blue);
    font-family: Montserrat;
    border: unset;
    font-weight: 600;
}
.blog_section_main {
    padding-top: 0;
}
.get_quote_top h2 {
    line-height: 44px;
    padding-bottom: 19px;
}
.feature_section {
    overflow: hidden;
}


.top_text {
    position: fixed;
    z-index: 999;
    padding: 10px;
    background: #78EBF0;
    top: 0;
    width: 100%;
}

.top_text_main {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.top_text_main p {
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1;
}

.top_text_main p a {
    color: #0E152E;
    font-weight: 600;
}

/* 16-05-2024 */

/*body.page-template-contact-us .customer_swiper .swiper-wrapper {
    padding-left: 457px;
}*/
.quote_right .forminator-row.forminator-row-last {
    margin-bottom: 0 !important;
}
.comunity_img img {
    border-radius: 16px;
}
.contact_us_form form .forminator-row input::placeholder {
    color: #0e152e !important;
}
.services_box_btm_title h4 {
    font-weight: 600;
    font-size: 25px;
}
.twelve_p a {
    line-height: unset;
}

.blog_content .blog_date_btn span {
    font-weight: 600;
    text-transform: uppercase;
}
/*.blog_section_main .blog_date_btn span {
    font-weight: 700;
    text-transform: capitalize;
}*/

.menu-open .header_links li a:before {
    display: none;
}
.menu-open .header_links li a:after {
    display: none;
}



.comunity__extra_discription {
    margin-top: 30px;
}
.footer_contact_links.bussiness_detail h6 {
    color: #ffffff;
	font-weight: 700;
    padding-top: 15px;
}
.footer_contact_links.bussiness_detail h6 span {
    font-weight: inherit !important;
}





.silicon_tech_janitorial_main {
    display: flex;
    gap: 80px;
}

section.silicon_tech_janitorial_section {
    background: #E8EBF2;
    padding: 80px 0;
}

.silicon_tech_janitorial_left {
    width: 47.7%;
}

.silicon_tech_janitorial_right {
    flex: 1;
}

.silicon_tech_janitorial_left h2 {
    padding-bottom: 16px;
}

.silicon_tech_janitorial_right h4 {
    padding-bottom: 16px;
}







section.hedaer_popup_form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 62%);
    z-index: 999;
    height: 100%;
    width: 100%;
    display: none;
}
.Popup_open_div section.hedaer_popup_form {
    display: flex;
}

.hedaer_popup_main {
    max-width: 900px;
    margin: 0 auto;
    background: var(--blue);
    border-radius: 30px;
    padding: 50px;
    padding-top: 100px;
    position: relative;
}
.hedaer_popup_close_icon {
    position: absolute;
    top: 0px;
    right: 30px;
    cursor: pointer;
}

.hedaer_popup_close_icon svg {
    max-width: 35px;
}






.hedaer_popup_main.quote_right .forminator-custom-form .forminator-row:nth-child(4) {
    margin-top: 0 !important;
    padding-right: 0 !important;
	grid-column: span 2 !important;
}

.hedaer_popup_main.quote_right .forminator-custom-form .forminator-row:nth-child(2), .hedaer_popup_main.quote_right .forminator-custom-form > .forminator-row:nth-child(5), .hedaer_popup_main.quote_right .forminator-custom-form > .forminator-row.forminator-row-last {
    grid-column: span 2 !important;
}

.hedaer_popup_main.quote_right .forminator-custom-form {
    gap: 20px;
}

.hedaer_popup_main.quote_right .forminator-custom-form .forminator-row:nth-child(2), .hedaer_popup_main.quote_right .forminator-custom-form > .forminator-row:nth-child(3) {
    grid-column: span 2;
    gap: 30px;
}


.hedaer_popup_main.quote_right .forminator-custom-form .forminator-row:nth-child(3) {
    order: unset !important;
	padding-top: 0 !important;
	
}

.hedaer_popup_main.quote_right .forminator-row.forminator-row-last {
	position: unset !important;
}


section.thank_you_section {
    padding-top: 190px;
    padding-bottom: 60px;
}
.thank_you_info {
	max-width: 1000px;
    margin: 0 auto;
}
.thank_you_info h1 {
    color: var(--light_blue);
    text-transform: capitalize;
}


.mobile_info_header .header_btn {
    display: none;
}

.mobile_info_header {
    display: flex;
    align-items: center;
    gap: 30px;
}