@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*
{
    padding:0;
    margin:0;
    box-sizing:border-box;
}
img  
{
    width:auto;
    max-width: 100%;
}
@font-face { 
    font-family: 'fontawesome-webfont';
    src: url('../fonts/fontawesome-webfont.ttf');
    src: url('../fonts/fontawesome-webfont.woff') format('woff'), url('../fonts/fontawesome-webfont.eot'), url('../fonts/fontawesome-webfont.svg') format('svg');
}

body
{
	font-family: "Montserrat", sans-serif;
    color: #333333;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6
{
	margin: 0px 0px 20px 0px;
	padding: 0px;
}
h1 {
    font-size: 46px;
    font-family: "Montserrat", sans-serif;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
}
h4 {
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
}
h5 {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}
h6 {
    font-size: 19px;
    font-family: "Montserrat", sans-serif;
}
p
{
	font-family: "Montserrat", sans-serif;
    color: #333333;
    font-size: 18px;
    padding-bottom: 15px;
}


.bottom-to-top  a{
    background: #A3D547;
    display: block;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.bottom-to-top  a:hover{
    background:#000;
}
.bottom-to-top a i {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
   
}
.bottom-to-top {
    position: fixed;
    bottom: 40px;
    right: 15px;
    width: 44px;
    height: auto;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
    z-index: 9999;
}
.bottom-to-top.show {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}


#scrollbutton {
    position: fixed;
    bottom: 90px;
	bottom:150px;
    right: 20px;
    width: auto;
    height: auto;
    z-index: 999;
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    transition: all .2s linear;
}
#scrollbutton.show {
    display: inline-block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    transition: all .2s linear;
}
#scrollbutton div {
    background: #5CE1E6;
    display: inline-block;
    position: relative;
    color: #0F4C5C;
    text-decoration: none;
    line-height: 0;
    padding: 10px 14px;
    overflow: hidden;
    border-radius: 6px;
    font-size: 22px;
    transition: All 1s ease;
    cursor: pointer;
}
#scrollbutton div:hover {
    background: #2A4FF6;
    color: #fff; 
}
.main_menu-fixed
{
    position: fixed !important;
    top: 0px !important;
    left: 0px !important;
    width: 100% !important;
    z-index: 9999 !important;
    -webkit-transform-origin: top !important;  
    transform-origin: top !important;  
    -webkit-animation: navtrans 0.3s ease-in !important;
    animation: navtrans 0.3s ease-in !important;  
    -webkit-transition: all 0.2s linear !important;  
    transition: all 0.2s linear !important; 
}
@-webkit-keyframes navtrans
{
    0%{-webkit-transform: translateY(-100%);}
    100%{-webkit-transform: translateY(0%);}
}
@keyframes navtrans
{
    0%{transform: translateY(-100%);}
    100%{transform: translateY(0%);}
}

.wrapper
{
    max-width: 1285px;
	margin:auto;
	padding: 0px 20px;
} 
.wrapper_small
{
    max-width: 970px;
    margin:auto;
    padding: 0px 0px;
}

.pagewrapper .wp-block-group__inner-container
{
	max-width: 1285px;
	margin:auto;
	padding-left: 20px !important;
	padding-right: 20px !important;
}


/* style started */

.header
{
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background-color: transparent;
}
.header_inside {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 10px;
}

.header_inside_r {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.header_inside_r ul
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px 40px;
    list-style-type: none;
}
.header_inside_r ul li
{
    position: relative;
}
.header_inside_r ul li a
{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.header_inside_r ul li a:after {
/*     display      : block;
    content      : '';
    border-bottom: solid 2px #fff;
    transform    : scaleX(0) translateY(-1px);
    transition   : transform 300ms ease-in-out; */
}

.header_inside_r ul li a:hover:after {
/*     transform: scaleX(1) translateY(-1px); */
}
.btn_blue
{
    min-width: 151px;
    height: 50px;
    border-radius: 10px;
    background-color: #5CE1E6;
    color: #0F4C5C;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 10px;
    transition: All 0.2s ease;
    -webkit-transition: All 0.2s ease;
    text-decoration: none;
}
.btn_blue:hover
{
    background-color: #2a4ff6;
    color: #fff;
}
.header_inside_r_btn .btn_blue
{
    margin-left: 40px;
}

.Banner
{
    width: 100%;
    height: 100vh;
    background-color: transparent;
    padding-top: 185px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
.Banner_inside
{
    position: absolute;
    top: 58%;
	top: 62%;
    transform: translateY(-50%);
    max-width: 600px;
}
.Banner_inside h1 
{
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
    margin-bottom: 20px;
}
.Banner_inside h2
{
    font-size: 85px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 800;
    line-height: 0.8;
    margin: 0;
}
.Banner_inside p 
{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin-top: 25px;
}
.Banner_inside .btn_blue
{
    margin-top: 35px;
    font-weight: 600;
}
.Banner:before 
{
    content: ''; 
    background-image: url('../images/pexels-photo-6592659.png');
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    height: 500px;
    width: 100%;
    bottom: 0;
    right: 0px;  
    opacity: 0; 
    display: none;
}
.carries_sec
{
    width: 100%;
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}
.carries_inside
{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px 75px;
	gap: 0px 50px;
    justify-content: space-between;
}
.carries_inside1
{
    height: auto;
    border: 0.5px solid #575757;
    border-radius: 20px;
    background-color: #F7FAFC;
    flex: initial;
    padding: 20px 20px;
    width: 230px;
    width: 245px;
	width: 265px;
}
.carries_inside1.carries_inside1text h2
{
    font-size: 64px;
}
.carries_inside1text p  
{
    white-space: nowrap;
}
.carries_inside1.carries_inside1text img
{
    width: 60px;
    position: relative;
    top: 13px;
    left: -3px;
}
.carries_inside1.carries_inside3text img  
{
    left: -8px;
    width: 60px;
    position: relative;
    top: 11px;
}
.carries_inside1.carries_inside4text img  
{
    left: -8px;
    width: 55px;
    position: relative;
    top: 11px;
}

.carries_inside1 img {
    float: right;
    width: 65px;
}

.carries_inside2text img
{
    top: 18px;
    width: 55px;
    position: relative;
    left: 0;
}
.carries_inside2text h2 
{
    font-size: 50px;
}
.carries_inside2text p
{
    width: 150px;
}
.carries_inside1 h2 {
    margin-bottom: 0;
    font-size: 46px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    color: #333333;
    line-height: 1.2;
}
.carries_inside1 p 
{
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.4;
    padding-bottom: 0;
}
.about_main_inner
{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: justify-content;
    flex-wrap: wrap;
    gap: 0px 50px;
}
.about_main_l
{
    flex: 1;
    text-align: center;
}
.about_main_l img  
{
    width: 450px;
    display: block;
    margin: auto;
}
.about_main_r
{
    flex: 1;
}
.about_main_r h2 
{
    font-size: 34px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
}
.about_main_r h2 span
{
    color: #2A4FF6;   
}
.about_main_r p
{
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    padding-bottom: 25px;
}
.about_main_r .btn_blue,
.btn_bluelarge
{
    min-width: 211px;
    font-weight: 500;
}
.mystory
{
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 50%;
}
.mystory_inside
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px 25px;
}
.mystory_inside_1
{
    flex: 1;
}
.mystory_inside_r
{
    flex: 1;
    text-align: center;
}
.mystory_inside_r img 
{
    display: block;
    margin: auto;
    height: 600px;
    width: auto;
}
.h2clr
{
    font-size: 34px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Montserrat", sans-serif;
}
.h2clr span
{
    color: #2A4FF6;  
}
.mystory_inside_1 p
{
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    padding-bottom: 20px;
}
.great_service
{
    width: 100%;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
}
.great_service_inner1 {
    display: flex;
    gap: 40px 40px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 45px;
}
.great_service_inner1s {
    background-color: #F7FAFC;
    box-shadow: 0px 0px 50px #00000029;
    border: 0.25px solid #575757;
    border: 0.25px solid #dddfe0;
    border-radius: 20px;
    width: 275px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    padding-bottom: 60px;
    position: relative;
}
.great_service_inner1s figure 
{
    position: relative;
    height: 130px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.great_service_inner1s figure img {
    object-fit: contain;
    height: 90%;
    width: auto;
}
.great_service_inner1s h2 
{
    font-size: 18px;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
}
.great_service_inner1s p
{
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    min-height: initial;
    padding-bottom: 15px;
}
.great_service_inner1s a
{
    color: #2A4FF6;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    bottom: 35px;
}
.btn_div
{
    width: 100%;
    height: auto;
    text-align: center;
}
.btn_div .btn_blue 
{
    font-weight: 500;
}
.great_service_inner1s:hover a
{
    
}
.great_service_inner1s a:hover
{
	color:#333;
}
.great_service_inner1s:hover 
{
    box-shadow: 0px 0px 20px #00000029;
}
.success_stories
{
    width: 100%;
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #F7FAFC;
}
.success_stories_inside
{
    width: 100%;
    height: auto;
}
.success_stories_inside h2 
{
    margin-bottom: 40px;
    text-align: center;
}
.success_stories_slider1
{
    text-align: center;
}
.success_stories_slider1 p 
{
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 21px;
    margin-bottom: 20px;
    max-width: 715px;
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}
.success_stories_slider1 span
{
    display: block;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 21px;
    max-width: 715px;
    margin-left: auto;
    margin-right: auto;
}
.success_stories_slider .slick-prev
{
    background-image: url('../images/sliderarrowleft.svg') !important;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat !important;
    background-size: 50px !important;
    left: 0;
    z-index: 1;
}
.success_stories_slider .slick-prev:after
{
    content: '';
    background-image: url('../images/sliderarrowleft-l.svg') !important;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat !important;
    background-size: 19px !important;
    position: absolute;
    left: 13px;
    top: 13px;
}
.success_stories_slider .slick-next:after
{
    content: '';
    background-image: url('../images/sliderarrowright-l.svg');
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: 19px;
    position: absolute;
    right: 5px;
    top: 13px;
}
.success_stories_slider .slick-next
{
    background-image: url('../images/sliderarrowright.svg') !important;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat !important;
    background-size: 50px !important;
    right: 0;
    z-index: 1;
}
.success_stories_slider .slick-prev:before, .success_stories_slider .slick-next:before
{
    display: none !important;
}

.success_stories_slider .slick-dots li button:before
{
    display: none;
}

.success_stories_slider .slick-dots li {
    width: 17px;
    height: 17px;
    margin: 0 4px;
}
.success_stories_slider .slick-dots li button {
   
    width: 17px;
    height: 17px;
    padding: 0;
    background: #2A4FF6;
    border-radius: 50%;
}
.success_stories_slider .slick-dots li button:after 
{
    content: '';
    background-color: transparent;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    top: 3.6px;
    left: 4px;
}
.success_stories_slider .slick-dots li.slick-active button:after,
.success_stories_slider .slick-dots li:hover button:after  
{
    background-color: #5CE1E6;
}

.success_stories_slider .slick-dots {
    bottom: -68px;    
}
.success_stories_slider.slick-dotted.slick-slider {
    margin-bottom: 70px;
}
.home_blog
{
    width: 100%;
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}
.home_blog_inside
{
    width: 100%;
    height: auto;   
}
.home_blog_inside .h2clr 
{
    margin-bottom: 30px;
    text-align: center;
}
.home_blog_inside_1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 80px;
    padding-bottom: 45px;
}
.home_blog_inside_1s {
    flex: 1;
    box-shadow: 0px 0px 50px #00000029;
    border: 0.25px solid #e0e0e0;
    border-radius: 15px;
	padding-bottom:40px;
}
.home_blog_inside_1s figure
{
    margin-bottom: 20px;
	height: 260px;
    position: relative;
} 
.home_blog_inside_1s figure img 
{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
	width:100%;
	height:100%;
	object-fit:cover;
}

.home_blog_inside_1s .home_blog_content
{ 
    padding: 0px 11px;
}
.home_blog_content h2
{
    margin-bottom: 17px;
}
.home_blog_content h2 a
{ 
    text-decoration: none;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
   /* line-height: 1.6;
    display: block;*/
}
.home_blog_content p
{
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    padding-bottom: 20px;
}
.btn_text
{
    color: #2A4FF6;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-flex;
}

.home_learnmre 
{
    border-top: 1px solid #707070;
    width: calc(100% - 22px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 13px;
    padding-bottom: 13px;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
}
.home_learnmre span 
{
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
}
.home_forms
{
    width: 100%;
    height: auto;
    padding-top: 70px;
    padding-bottom: 45px;
    background-repeat: no-repeat;
    background-size: cover;
	background-position: right center;
}
.home_forms_inside
{
    width: 660px;
    height: auto;
    border-radius: 15px;
    opacity: 1;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: #525775;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px;
}

.home_forms_inside h2 
{
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 23px;
}
.home_forms_inside p
{
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
	font-size:18px;
    font-weight: 500;
    padding-bottom: 18px;
}
.home_forms_inside form,
.contactpagemains form 
{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap:0px 50px;
    justify-content: center;
}
.contactpagemains form 
{
   margin-top:20px;
}
.home_forms_inside form input[type="text"],
.home_forms_inside form input[type="email"],
.contactpagemains form input[type="text"],
.contactpagemains form input[type="email"]
{
    flex: 1;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0px 12px;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-weight: 500;
	width:100%;
	font-size:16px;
}
.home_forms_inside form textarea,
.contactpagemains form textarea
{
    width: 100%;
    height: 135px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0px 12px;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-weight: 500;
    padding-top: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
	font-size:16px;
}
.contactpagemains form textarea,
.contactpagemains form input[type="text"],
.contactpagemains form input[type="email"]
{
	border: 2px solid #5ce1e6;
	outline:none;
}
.home_forms_inside .btn_blue,
.home_forms_inside form input[type="submit"],
.contactpagemains form input[type="submit"]
{
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    border: none;
}
.home_forms_inside form p,
.contactpagemains form p
{
	padding-bottom:0px;
	display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
	gap:20px 20px;
	position:relative;
}
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(1),
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(3),
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(5),
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(7),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(1),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(3),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(5),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(7)
{
	width: calc(50% - 10px);
}
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(9),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(9)
{
	width: calc(100% - 0px);
}
.home_forms_inside form .wpcf7-spinner,
.contactpagemains form .wpcf7-spinner,
.service_form  form .wpcf7-spinner
{
    position: absolute;
    left: 0;
    right: -200px;
	right:0;
    bottom: 15px;
    margin: auto;
}


.home_forms_inside form p br,
.contactpagemains form p br
{
	display:none;
}

.footer 
{
    width: 100%;
    height: auto;
    background-image: url('../images/footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 30px;
}
.footer_inside
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 45px;
}
.footer_inside1
{
    width: 24%;
    padding-right: 40px;
}
.footer_inside2
{
    width: 20%;
    padding-right: 40px;
}
.footer_inside3
{
    width: 32%;
    padding-right: 40px;
}
.footer_inside4
{
    width: 24%;
    padding-right: 0px;
}
.footer_inside1 a.footerlogo
{
    margin-bottom: 80px;
    display: inline-flex;
}
.footer_inside1 h2,
.footer_inside2 h2,
.footer_inside3 h2,
.footer_inside4 h2
{
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 20px;
}
.footer_inside2 h2,
.footer_inside3 h2,
.footer_inside4 h2
{
    padding-top: 22px;
    margin-bottom: 25px;
}
.footer_inside1 ul 
{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0px 22px;
}
.footer_inside1 ul li
{
    position: relative;
}
.footer_inside1 ul li a
{
    text-decoration: none;
}
.footer_inside1 ul li a img
{
    width: 42px;
    height: 42px;
}
.footer_inside2 ul,
.footer_inside3 ul    
{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap:17px 0px;
}
.footer_inside2 ul li a,
.footer_inside3 ul li a  
{
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 500;
    line-height: 1;
}

.socialinfo
{
    display: flex;
    align-items: flex-start;
    gap: 0px 10px;
    padding-bottom: 22px;
}
.socialinfo img
{
    
}
.socialinfo p
{
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    padding-bottom: 0;
}
.socialinfo p a
{
    
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.whatspp a  
{
    border-radius: 10px;
    background-color: #2CB742;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    min-width: 280px;
}
.whatspp a img 
{
    margin-right: 15px;
}
.whatspp a:hover
{
    opacity: 0.85;
}
.footer_nav
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #FFFFFF;
    padding-top: 20px;
    padding-bottom: 35px;
    padding-left: 20px;
    padding-right: 20px;
}
.footer_nav_l p 
{
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 0;
}
.footer_nav_l
{
    flex: 1;
}
.footer_nav_r
{
    flex: 1;
}
.footer_nav_r ul 
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0px 47px;
}
.footer_nav_r ul li
{
    
}
.footer_nav_r ul li a
{
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 500;
    line-height: 1;
}
.mobilenav, .mobileicons
{
    display: none;
}

.header.main_menu-fixed
{
    background-image: url(../images/bannerimage.png);
    background-size: cover;
    border-bottom: 1px solid #5CE1E6;
}
.header.main_menu-fixed .logo img 
{
    height: 65px;
}
.header.main_menu-fixed .header_inside {
    padding-top: 13px;
    padding-bottom: 13px;
}
.Banner.Banner-fixed
{
    /*margin-top: 137.5px;*/
}
.innerbanner
{
    width: 100%;
    height: 450px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}
.innerbanner:before
{
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0F4C5C99;
}
.innerbanner_inside
{
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 52%;
    transform: translateY(-50%);
}
.innerbanner_inside h1 
{
    font-size: 42px;
    line-height: 1;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    text-transform: uppercase;
}
.our_vision
{
    width: 100%;
    height: auto;
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}
.our_vision_inside
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.our_vision_inside_l
{
    flex: 1;
    padding-right: 30px;
	flex-basis: initial;
}
.our_vision_inside_r
{
    width: 43%;
    flex: initial;
    flex-basis: initial !important;
    flex-grow: initial !important;
}
.commontext h2
{
	font-size: 34px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Montserrat", sans-serif;
	line-height:1;
}
.commontext h2 span
{
	text-decoration:none !important;
	color: #2A4FF6;  
}
.commontext p
{
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    padding-bottom: 20px;
}
.commontext p span  
{
	text-decoration:none !important;
    color: #2A4FF6;
    font-weight: 600;
}
.commontext .h2clr {
    line-height: 1;
}
.commontext h6
{
    color: #333;
    font-family: "Montserrat", sans-serif; 
    font-weight: 600;
    line-height: 1;
    font-size: 20px;
    margin-bottom: 20px;
}
.our_vision_inside_r img
{
    box-shadow: 0px 0px 25px #00000029;
    border-radius: 20px;
}

.our_vision_story
{
    width: 100%;
    height: auto;
    background-color: #fff;
    padding-top: 0px;
    padding-bottom: 70px;
}
.our_story_inside
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.our_story_inside_l
{
    flex: 1;
    padding-left: 30px;
	flex-basis: initial;
}
.our_story_inside_r
{
    width: 45%;
    text-align: center;
	flex: initial;
    flex-basis: initial !important;
    flex-grow: initial !important;
}
.our_story_inside_r img 
{
    height: 600px;
    width: auto;
    display: block;
    margin: auto;
}
.teams
{
    width: 100%;
    height: auto;
    padding-bottom: 0px;
	padding-top:50px;
}
.teams_inside h2 
{
    text-align: center;
}
.teams_inside_slider
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 50px;
    padding-bottom: 0px;
}
.teamsec
{
    flex: 1;
}
.teamsec figure
{
    border-radius: 20px;
   /* box-shadow: 0px 0px 50px #00000029;
    border: none;
    border-radius: 20px;*/
    margin-bottom: 15px;
    box-shadow: 0px 0px 15px #00000029;
	height: 228px;
    position: relative;
    overflow: hidden;
}
.teamsec figure a img 
{
    object-fit: cover;
    /*box-shadow: 0px 0px 50px #00000029;
    border: none;*/
    border-radius: 20px;
	width:100%;
	height:100%;
	object-fit:cover;
}
.teamsec_text h3 a 
{
    display: block;
    font-size: 16px;
    font-family: "Montserrat", sans-serif; 
    font-weight: bold;
    line-height: 1;
    color: #333333;
}
.teamsec_text p
{
    display: block;
    font-size: 14px;
    font-family: "Montserrat", sans-serif; 
    font-weight: 500;
    line-height: 1;
    color: #333333;
    padding-bottom: 10px;
    padding-top: 10px;
}
.teamsec_text .btntext
{
    display: block;
    font-size: 14px;
    font-family: "Montserrat", sans-serif; 
    font-weight: 600;
    line-height: 1;
    color: #2A4FF6;
    padding-bottom: 0;
}

.teams_inside .slick-dots li button:before
{
    display: none;
}

.teams_inside .slick-dots li {
    width: 17px;
    height: 17px;
    margin: 0 4px;
}
.teams_inside .slick-dots li button {
   
    width: 17px;
    height: 17px;
    padding: 0;
    background: #2A4FF6;
    border-radius: 50%;
}
.teams_inside .slick-dots li button:after 
{
    content: '';
    background-color: transparent;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    top: 3.6px;
    left: 4px;
}
.teams_inside .slick-dots li.slick-active button:after,
.teams_inside .slick-dots li:hover button:after  
{
    background-color: #5CE1E6;
}

.teams_inside .slick-dots {
    bottom: -68px;    
}
.teams_inside_slider.slick-dotted.slick-slider {
    margin-bottom: 70px;
}
.teamsec
{
    margin-right: 15px !important;
    margin-left: 15px !important;
    margin-top: 15px;
}

.industries
{
    width: 100%;
    height: auto;
    padding-bottom: 70px;
    padding-top: 70px;
}
.industries_inside h2 
{
    text-align: center;
}
.industries_slider
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 50px;
    padding-bottom: 0px;
}
.industriessec
{
    flex: 1;
    text-align: center;
}
.industriessec figure
{
    margin-bottom: 45px;
    height: 115px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industriessec figure a
{
    pointer-events: none;
}
.industriessec figure a img 
{
    object-fit: cover;
    /*box-shadow: 0px 0px 50px #00000029;
    border: none;*/
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    transform: scale(0.7);
	height: 175px;
    width: auto;
}

.industries_text p
{
    display: block;
    font-size: 16px;
    font-family: "Montserrat", sans-serif; 
    font-weight: bold;
    line-height: 1;
    color: #333333;
    padding-bottom: 10px;
}


.industries_inside .slick-dots li button:before
{
    display: none;
}

.industries_inside .slick-dots li {
    width: 17px;
    height: 17px;
    margin: 0 4px;
}
.industries_inside .slick-dots li button {
   
    width: 17px;
    height: 17px;
    padding: 0;
    background: #2A4FF6;
    border-radius: 50%;
}
.industries_inside .slick-dots li button:after 
{
    content: '';
    background-color: transparent;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    top: 3.6px;
    left: 4px;
}
.industries_inside .slick-dots li.slick-active button:after,
.industries_inside .slick-dots li:hover button:after  
{
    background-color: #5CE1E6;
}

.industries_inside .slick-dots {
    bottom: -68px;    
}
.industries_slider.slick-dotted.slick-slider {
    margin-bottom: 70px;
}
.industriessec
{
    margin-top: 15px;
    text-align: center;
}
.blogpage .home_blog_inside_1 {
    gap: 40px 40px;
    padding-bottom: 45px;
    justify-content: center;
	justify-content:flex-start;
}
.blogpage .home_blog_inside_1s {
    flex: initial;
    width: calc(33.33% - 40px);
}
.commonspacingtb
{
	padding-top:70px;
	padding-bottom:70px;
}
.pageimageshades img 
{
	box-shadow: 0px 0px 12px #00000029;
	border-radius: 20px;
}
.service_grup_html_main {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 0px;
}
.service_grup_html_main h2
{
	text-align:center;
}
.service_slider {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 15px;
    justify-content: space-between;
}
.service_slidertext {
    width: calc(50% - 15px);
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    background-color: #F7FAFC;
    padding: 20px;
    display: flex;
    gap: 0px 15px;
	position:relative;
}
.service_slidertext1 {
    flex: 1;
}
.service_slidertext2 {
    width: 133px;
	background-color: #0F4C5C;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
	height:120px;
}
.service_slidertext2 img
{
	height: 95px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(139deg) brightness(100%) contrast(104%);
	width: auto;
	object-fit: contain;
}
.service_slidertext1 a 
{
	text-decoration:none !important;
}
.service_slidertext1 h3 {
    color: #333333;
    font-size: 24px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
	margin-bottom:15px;
}
.service_slidertext1 p 
{
	font-size: 16px;
    padding-bottom: 0;
    line-height: 1.4;
    color: #333333;
}
.service_slidertext1 a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.service_slidertext:hover .service_slidertext1 h3
{
	color: #2A4FF6;
}
.service_slidertext:hover 
{
	box-shadow: 0px 3px 15px #00000029;
}
.our_vision_inside .wp-block-columns,
.our_story_inside .wp-block-columns
{
	gap:0px !important;
}
.our_story_inside
{
	padding-top:70px;
}
.get_in_touch_address {
    padding-bottom: 70px;
}
.get_in_touch_address .wp-block-group__inner-container {
/*     padding: 0 !important; */
}
.get_in_touch_address .wp-block-group__inner-container .wp-block-columns {
    margin: 0;
    gap: 2em;
}
    .get_in_touch_address .wp-block-group__inner-container .wp-block-columns .wp-block-column {
        flex: 33.33%;
    }
.get_in_touch_address .wp-block-group__inner-container .wp-block-columns .wp-block-column {
    text-align: center;
    padding: 30px 50px;
	background: #3e879a;
    border-radius: 10px;
    box-shadow: 0 2px 6px 0px #f4f4f4;
	background-color: #fff;
    box-shadow: 0px 0px 20px #00000029;
}
.get_in_touch_address .wp-block-group__inner-container .wp-block-columns .wp-block-column i
 {
    font-size: 23px;
    color: #fff;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #2a4ff6;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    outline: solid 1px #2a4ff6;
    outline-offset: 4px;
    margin-bottom: 15px;
    transition-duration: .4s;
}
.get_in_touch_address .wp-block-columns .wp-block-column h4 {
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: 0px;
    color: #333;
    text-transform: uppercase;
    font-size: 20px;
	font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
}
.get_in_touch_address .wp-block-columns .wp-block-column p {
    padding-bottom: 0;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #333;
    font-size: 18px;
	font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.get_in_touch_address .wp-block-columns .wp-block-column p a 
{
	text-decoration:none;
	color: #333;
	transition:All 0.2s ease;
	-webkit-transition:All 0.2s ease;
}
.get_in_touch_address .wp-block-columns .wp-block-column p a:hover
{
	color: #2a4ff6;
}
.teamsec {
    position: relative;
}
.teamsec figure a:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.teamsec_text a:after
{
	display      : block;
    content      : '';
    border-bottom: solid 5px #fff;
    transform    : scaleX(0);
    transition   : transform 300ms ease-in-out;
}
.teamsec_text a:hover:after {
    transform: scaleX(1);
	transform-origin: 0 50%;
}
.contactpagemains h5 
{
	font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.contactpagemains .wp-block-group__inner-container
{
	max-width: 800px;
    margin: auto;
}
.contactpagemains p
{
	font-size: 16px;
}
.contactpagemains
{
	padding-bottom:70px;
}
.commontext ul
{
	gap: 10px 0px;
    list-style-type: none;
    margin-left: 35px;
    display: flex;
    flex-wrap: wrap;
	display:block;
}
.commontext ul li
{
	position:relative;
	padding-bottom:10px;
}
.commontext ul li:last-child
{
	padding-bottom:0px;
}
.commontext ul li
{
	position:relative;
	padding-left:0px;
	color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
}
.commontext ul li:before
{
	content: "\f101";
    position: absolute;
    left: -17px;
    font: normal normal normal 16px / 1 FontAwesome;
    top: 3px;
}
.commontext ul li a:hover
{
	
}
.commontext ul li ul,
.commontext ol li ol
{
	margin-top:20px;
	margin-bottom:20px;
}

.commontext ol 
{
	gap: 10px 0px;
    list-style-type: decimal;
    margin-left: 35px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 25px;
	display:block;
}
.commontext ol li
{
	position: relative;
    padding-left: 0px;
    color: #333333;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
	padding-bottom:10px;
}
.commontext ol li:last-child 
{
	padding-bottom:0px;
}

.commontext ol li a
{
	text-decoration:none;
	color: #2A4FF6;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}
.commontext ol li a:hover
{
	color: #333333;
}



.teamsec:hover .teamsec_text .btntext
{
	color:#333;
}
.teamsec:hover .teamsec_text h3 a
{
	color: #2A4FF6;
}
.teamsec:hover figure {
    box-shadow: 0px 0px 15px #0000005c;
}

.td-full{
min-height: 250px;
}
.td-left{
	width:100%;
}
.td-right{
	width:250px;
	float: right;
	margin-left:30px;
	margin-bottom:30px;
}
.td-right .td-image img{
    width: 250px;
    height: 250px;
    object-fit: cover;
  box-shadow: 0px 0px 20px 4px #cfcfcf;
  border-radius:50%;	
}
.td-title{
	position: relative;
	padding-left:15px;
		margin-bottom:18px;
}
.td-title:before{
	position: absolute;
	content: '';
	width:3px;
	height:100%;
	background: #3d8699;
	left:0;
	top:0;
}
.td-title h3{
	padding-bottom: 10px;
    font-size: 26px;
    line-height: 1;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    color: #2a4ff6;
}
.td-title p {
	font-style: italic;
	font-weight: 600;
    color: #333;
	font-size:18px;
	font-family: "Montserrat", sans-serif;
}
.team-detail p {
	
}
.td-image p{
	text-align: center;
	margin-top:10px;
}
.ip-team-single {
    padding-top: 70px;
    padding-bottom: 70px;
}
.home_blog_content .btn_text:hover
{
	color:#333;
}
.home_blog_content h2 a:hover
{
	color: #2A4FF6;
}
.blog-detail {
    justify-content: space-between;
	display: flex;
    flex-flow: row wrap;
}
.blog-detail .blog-col-2-75p {
    width: calc(75% - 40px);
}
.blog-detail .blog-col-2-25p {
    width: 25%;
}
.blimg {
    width: 100%;
    box-shadow: 0 3px 6px #00000029;
    margin: 0 0 30px;
    overflow: hidden;
}
.blimg img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
}
.blog-deatail-top h1 {
    font-size: 36px;
    line-height: 1.4;
    margin: 0;
}
.bl-bott-fl {
    display: flex;
    padding: 12px 0 10px;
    flex-flow: row wrap;
    border-bottom: 1px solid #dcdcdc;
}
.bl-bott-fl div {
    display: inline-flex;
    align-items: center;
    width: auto;
}
.bl-bott-fl div {
    margin: 8px 0;
    margin-right: 25px;
}
.bl-bott-fl img {
    width: 22px;
    height: auto;
    margin-right: 12px;
    filter: brightness(0%);
}
.bl-bott-fl span {
    font-size: 16px;
}
.blog-detail-midd {
    padding: 30px 0 0;
}
#sidebar-blog .blogdropdown {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 3px 8px #00000029;
}
#sidebar-blog .blogdropdown h2 {
    font-size: 22px;
    margin: 0 0 25px;
    line-height: 1;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 15px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #333;
}
.blog-col-2-25p ul {
    padding: 0;
    margin: 0;
}
.blog-col-2-25p ul li {
    list-style-type: none;
	position: relative;
    padding-left: 0px;
    margin: 0 0 10px;
	border-bottom: 1px solid #dcdcdc;
}
.wp-block-latest-posts > li {
    position: relative;
    padding-left: 60px;
    margin: 0 0 20px;
}
.wp-block-latest-posts__featured-image {
    position: absolute;
    top: 6px;
    left: 0;
    width: 50px;
    height: auto;
}
.wp-block-latest-posts__featured-image img {
    max-width: 50px !important;
    max-height: 50px !important;
}
.wp-block-latest-posts > li a {
    display: inline-block;
    font-weight: 600;
    margin-top: 0;
    line-height: 1.4;
    white-space: break-spaces;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wp-block-latest-posts > li a:hover
{
	color:#2A4FF6;
}

.wp-block-latest-posts__post-excerpt, .wp-block-latest-posts__post-full-content {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
}
.ptpb
{
	padding-top:70px;
	padding-bottom:70px;
}
.blog-deatail-top h1 
{
	font-size: 38px;
    color: #333333;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
}
.blog-detail-midd.commontext h2
{
	line-height:1.1;
}
.commontext h2 strong,
.commontext h3 strong,
.commontext h4 strong,
.commontext h5 strong,
.commontext h6 strong,
.commontext h1 strong 
{
	font-weight:600;
}
.commontext ul {
    flex-direction: column;
    margin-bottom: 20px;
}
.commontext h3 {
    font-size: 28px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
}
.commontext h4 {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
}
.commontext h5 {
    font-size: 22px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
}
.commontext h6 {
    font-size: 20px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
}
.commontext p a,
.commontext ul li a,
.commontext ol li a 
{
	color: #2A4FF6;
	text-decoration:none;
}
.commontext p a:hover,
.commontext ul li a:hover,
.commontext ol li a:hover
{
	color:#333;
	text-decoration:none;
}
table.has-fixed-layout
{
	margin-bottom:30px;
}
table.has-fixed-layout tr td img {
	display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}
#sidebar-blog .blogdropdown:first-child,
#sidebar-blog .blogdropdown:last-child
{
	display:none !important;
}
.commontext h3,
.blog-detail-midd p:last-child
{
	display:flex;
	flex-wrap:wrap;
}
.commontext h3 img,
.blog-detail-midd p:last-child img
{
	height: 25px;
    object-fit: contain;
    width: auto;
	position: relative;
    top: 5px;
}
.blog-detail-midd p:last-child img
{
    top: 2px;
}
.blog-detail-midd .wp-block-separator{
	margin-bottom: 25px;
    margin-top: 10px;
}
.cpt-service-template-default .blog-detail .blog-col-2-75p
{
	width: calc(100% - 0px);
}
.cpt-service-template-default .blog-detail .blog-col-2-25p
{
	display:none !important;
}
.cpt-service-template-default .blog-detail .blog-deatail-top {
    display: none;
}
.cpt-service-template-default .blog-detail .blog-detail-midd {
    padding: 0px 0 0;
}
.cpt-service-template-default .blog-detail .blog-detail-midd .wp-block-image .alignright,
.commontext .wp-block-image .alignright
{
    width: 40%;
	margin-left:2em !important;
	margin-bottom:2em !important;
}
.cpt-service-template-default .blog-detail .blog-detail-midd .wp-block-image .alignleft,
.commontext .wp-block-image .alignleft
{
    width: 40%;
	margin-right:2em !important;
	margin-bottom:2em !important;
}
.cpt-service-template-default .blog-detail .blog-detail-midd .wp-block-image .alignright img,
.cpt-service-template-default .blog-detail .blog-detail-midd .wp-block-image .alignleft img,
.commontext .wp-block-image .alignright img,
.commontext .wp-block-image .alignleft img
{
	box-shadow: 0px 0px 25px #00000029 !important;
    border-radius: 20px !important;
}
.pdfcontent .wp-block-file a,
.pdfcontent .wp-block-file > a
{
	display:none !important;
}
.teamsec_text h3
{
	margin-bottom:0px !important;
}
.slick-dots li:before
{
	display:none !important;
}
body.page-id-120 .commonspacingtb {
    padding-bottom: 0;
 }
.wpcf7-not-valid-tip {
    position: absolute;
    bottom: 100%;
    background: #e91f25;
    color: #fff !important;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 20px;
    left: inherit;
    right: 0;
    width: max-content;
	font-weight:normal !important;
}
.wpcf7-not-valid-tip:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #e91f25;
    left: 10px;
    top: 27px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}
.innerbanner_inside {
    max-width: 1200px;
	padding-left:30px;
	padding-right:30px;
}
.blog-col-2-25p ul li:last-child 
{
	margin-bottom: 0;
    border-bottom: none;
}
.footer_inside2 ul li a, 
.footer_inside3 ul li a,
.socialinfo p a,
.footer_nav_r ul li a,
.footer_inside1 ul li a img
{
	transition:All 0.2s ease;
	-webkit-transition:All 0.2s ease; 
	-moz-transition:All 0.2s ease;
} 
.footer_inside2 ul li a:hover, 
.footer_inside3 ul li a:hover,
.socialinfo p a:hover,
.footer_nav_r ul li a:hover
{
	color: #5ce1e6;
}
.footer_inside1 ul li a:hover img
{
	opacity: 0.6;
}
.services_grid_odd_even {
    background-color: #F7FAFC;
	border-bottom:25px solid #fff;
}
.services_grid_odd_even:nth-child(even)
{
/* 	background-color: #fff; */
}
.services_grid_odd_even .wp-block-columns
{
	align-items:center !important;
	gap:0px !important;
}
.services_grid_odd_even .commontext 
{
	padding:30px 40px;
	padding-left:40px;
}
.services_grid_odd_even .wp-block-column
{
	flex-basis:initial !important;
	flex:initial !important;
	width:50% !important;
}
.teams_inside .slick-dots {
	margin-left: 0;
}
.wp-block-group.storys_next1.commontext {
    padding-top: 35px;
}
.mobilebannerimage
{
	display:none !important;
}
.wp-block-group.pros_cons_sec {
    padding-top: 60px;
    padding-bottom: 70px;
	width: 100%;
    display: table;
	display: block;
    clear: both; 
	overflow:auto;
}
.pros_cons_sec_l, .pros_cons_sec_2 {
    background-color: #fff;
    box-shadow: 0px 0px 25px #00000029;
    border-radius: 30px;
    padding: 0px;
	padding-bottom:30px;
}
.pros_cons_sec_l > p:first-child
{
	background-color: #00C48C;
    color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 13px 0px;
    margin-bottom: 25px;
	font-family: "Montserrat", sans-serif;
    font-size: 22px;
}
.pros_cons_sec_l ul.wp-block-list,
.pros_cons_sec_2 ul.wp-block-list
{
	padding: 0px 30px;
}
.pros_cons_sec_l ul.wp-block-list li,
.pros_cons_sec_2 ul.wp-block-list li
{
	padding-bottom:0px;
	margin-bottom:10px;
}
.pros_cons_sec_l ul.wp-block-list li:last-child,
.pros_cons_sec_2 ul.wp-block-list li:last-child
{
	padding-bottom:0px;
	margin-bottom:0px;
}

.pros_cons_sec_l ul.wp-block-list li:before,
.pros_cons_sec_2 ul.wp-block-list li:before
{
	width: 30px;
    position: absolute;
    left: -40px;
    font: normal normal normal 15px / 1 FontAwesome;
    top: 50%;
	top: -3px;
    content: "\f164";
    background-color: #00c48c;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
	transform: translateY(0%);
}
.pros_cons_sec_2 ul.wp-block-list li:before
{
	content: "\f165";
	background-color: #FF5B5B;
}

.pros_cons_sec_2 > p:first-child
{
	background-color: #FF5B5B;
    color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 13px 0px;
    margin-bottom: 25px;
	font-family: "Montserrat", sans-serif;
    font-size: 22px;
}
.service_form
{
	padding-top:70px;
	padding-bottom:20px;
}
.service_form h2 
{
	text-align:center;
}
.service_form form 
{
	max-width: 800px;
    margin: auto;
	margin-top:30px;
}
.service_form form p {
    padding-bottom: 0px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 30px;
    position: relative;
}
.service_form form p br 
{
	display:none;
}
.service_form form .wpcf7-form-control-wrap
{
	width:100%;
}
.service_form form .wpcf7-form-control-wrap:nth-child(1), 
.service_form form .wpcf7-form-control-wrap:nth-child(3),
.service_form form .wpcf7-form-control-wrap:nth-child(5),
.service_form form .wpcf7-form-control-wrap:nth-child(7) 
{
    width: calc(50% - 15px);
}
.service_form form .wpcf7-form-control-wrap:nth-child(8) {
    width: calc(100% - 0px);
}
.service_form .btn_blue, 
.service_form form input[type="submit"] {
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    border: none;
	padding-left:20px;
	padding-right:20px;
}
.service_form .btn_blue:hover, 
.service_form form input[type="submit"]:hover
{
    background-color: #2a4ff6;
    color: #fff;
}
.service_form form textarea, 
.service_form form input[type="text"], 
.service_form form input[type="email"],
.service_form form input[type="date"] {
    border: 2px solid #5ce1e6;
    outline: none;
}

.service_form form input[type="text"], 
.service_form form input[type="email"], 
.service_form form input[type="date"], 
.service_form form input[type="email"] {
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0px 12px;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-weight: 500;
    width: 100%;
    font-size: 16px;
}
.service_form form input[type="date"]
{
	text-align:left;
	width: 100%;
    display: block;
    font-family: "Montserrat", sans-serif;
    color: #aca6af;
	font-size: 16px;
	text-transform:uppercase;
}
.service_form form input[type="date"]::placeholder,
.service_form form input[type="date"]:placeholder
{
	text-align:left;
	font-family: "Montserrat", sans-serif;
    color: #aca6af;
    font-weight: 500;
}
.service_form form textarea, 
.service_form form textarea {
    width: 100%;
    height: 135px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0px 12px;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-weight: 500;
    padding-top: 15px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
}
body.postid-91 .services_grid_odd_even:last-child {
    border-bottom: none;
}
body.postid-89 .pros_cons_sec > .wp-block-group__inner-container > .wp-block-columns
{
	padding-bottom:70px;
}
body.postid-89 .pros_cons_sec 
{
	padding-bottom:0px;
}
.service_slidertext1 h3 
{
	font-size:24px;
}
.contactpagemains ul.wp-block-list 
{
	display: flex !important;
    align-items: flex-start;
    justify-content: flex-start !important;
    gap: 0 !important;
    margin-left: 0 !important;
    max-width: 470px;
    margin: auto !important;
} 
.contactpagemains ul li:before 
{
	left: -25px;
    content: "\f164" !important;
	color: #2a4ff6;
}
.cf7-date-field {
  position: relative;
  max-width: 300px;
}

.cf7-date-field .has-label {
  width: 100%;
  padding: 12px 10px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.cf7-date-field .date-placeholder {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #888;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
}

.cf7-date-field input:focus + .date-placeholder,
.cf7-date-field input:not(:placeholder-shown) + .date-placeholder {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: #555;
  background: #fff;
  padding: 0 4px;
}
input[type="date"]::-webkit-datetime-edit {
  text-align: left;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.datesfield
{
/* 	display:none !important; */
}
body.blog .home_blog_inside_1s .home_learnmre
{
	display:none;
}

span.spandate {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 8px 12px;
    color: #fff;
    background-color: #00000082;
    font-size: 14px;
}
.home_blog_inside_1s .home_blog_content .btn_text
{
	position: absolute;
    bottom: 0px;
}
body
{
	overflow-x:hidden;
}
.blog-detail-midd .btn_blue
{
	color: #0F4C5C !important;
}
.blog-detail-midd .btn_blue:hover
{
	color: #fff !important;
}
.get_in_touch_address .wp-block-columns .wp-block-column p span 
{
	text-decoration:none !important;
}
.flatingcontactus
{
	display:none;
}
.flatingcontactus {
    display: flex;
    position: fixed;
    right: -56px;
	right: -86px;
    top: 56%;
	top: 48%;
    transform: translateY(-50%) rotate(-90deg) translateX(0px);
    background-color: #5ce1e6;
	color: #0F4C5C !important;
    padding: 13px 15px;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 0px 0;
    border-radius: 0px;
	z-index:9;
	cursor:pointer;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.flatingcontactus i 
{
	margin-right: 10px;
    font-size: 16px;
    position: relative;
    top: -1px;
}

.flatingcontactus:hover {
        background-color: #2a4ff6 !important;
        color: #fff !important;
    }
.flating_icons_popups
{
	display:none;
	position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: hsl(0deg 0% 0% / 45%);
    z-index: 9999999999999;
	opacity: 0;
}
.flating_icons_popups.active
{
	opacity: 0;
	animation: fadeInss 1s ease-in-out forwards;
	display:block;
	z-index: 9999999999999;
}
@keyframes fadeInss {
	to {
		opacity: 1;
	}
}
.flating_icons_inner
{
	padding: 40px 30px;
	padding-top:60px;
    max-width: 800px;
    height: auto;
    background-color: #fff;
    border-radius: 20px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    max-height: calc(100vh - 100px);
    overflow: hidden;
	height: 800px;
}
.floatclose
{
	position: absolute;
    top: 12px;
    right: 10px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(94%) saturate(7487%) hue-rotate(126deg) brightness(106%) contrast(95%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    object-fit: contain;
	transition:All 0.2s ease;
	-webkit-transition:All 0.2s ease;
	-moz-transition:All 0.2s ease;
}
.floatclose:hover
{
	opacity:0.7;
}
.tagp
{
	text-align: center;
    max-width: 500px;
    margin: auto;
}
.flating_icons_inner .service_form
{
/* 	height: 100vh;
    overflow: auto; */
	padding-top:0px;
	padding-bottom:40px;
}
.flating_icons_inner .service_form .calendly-inline-widget
{
	height: 100vh !important; 
    padding-bottom: 200px;
}
.flating_icons_inner h2 
{
	text-align:center;
}
.flating_icons_inner .service_form form {
    margin-top: 10px;
}
.mobilefloatingicon
{
	display:none;
    position: fixed;
    right: 0px;
    align-items: center;
    justify-content: center;
    gap: 0px 0;
	z-index:9;
	cursor:pointer;
}
.success_stories_slider .slick-prev:hover:after,
.success_stories_slider .slick-prev:hover,
.success_stories_slider .slick-next:hover:after,
.success_stories_slider .slick-next:hover
{
	filter: brightness(0) saturate(100%) invert(22%) sepia(95%) saturate(3210%) hue-rotate(229deg) brightness(97%) contrast(100%);
}
.pros_cons_sec_2.pros_cons_sec_2hide
{
	display:none !important;
}
.pros_cons_sec > .wp-block-group__inner-container > .wp-block-columns:first-child
{
	max-width:650px;
	margin-left:auto !important;
	margin-right:auto !important;
}
.pros_cons_sec_lhalf
{
	max-width:100%;
	margin-left:auto !important;
	margin-right:auto !important;
}
.commontext p:last-child
{
	display:block !important;
}
.our_mission
{
	padding-top:20px;
}
.service_form  .calendly-inline-widget
{
	margin-top: 0px !important;
}
.services_grid_odd_even .btn_blue 
{
	padding-left: 20px !important;
    padding-right: 20px !important;
}
.cky-notice p, .cky-accordion p
{
	padding-bottom:0px !important;
}
.cky-accordion .cky-accordion-chevron i::before
{
	border-color: #000 !important;
}


@media screen and (min-width:769px)
{
	#mega-menu-wrap-main-menu {
        background: transparent !important;
    }
	.header_inside_r ul.mega-menu > li > a {
		font-family: "Montserrat", sans-serif !important;
		font-size: 18px !important;
		line-height: 25px !important;
		color: #fff !important;
		text-decoration: none !important;
		font-weight: 600 !important;
		background-color: transparent !important;
		height:auto !important;
		padding:0px 0px !important;
}
	.header_inside_r ul.mega-menu > li
	{
		margin-left:20px !important;
		margin-right:20px !important;
	}
	
	.header_inside_r .mega-menu-wrap,
	.header_inside_r .mega-menu-wrap ul.mega-menu
	{
		position:static !important;
	}
	.header_inside_r ul.mega-menu > li > ul
	{
		margin-top: 0px !important;
		padding:0px 0px !important;
	}  
	.header.main_menu-fixed .header_inside_r ul.mega-menu > li > ul
	{
		margin-top: 15px !important;
		background: #333 !important;
		padding-top: 12px !important;
		padding-bottom: 12px !important;
	}
	.header .header_inside_r ul.mega-menu > li > ul
	{
		background: #333 !important;
		padding-top: 12px !important;
		padding-bottom: 12px !important;
	}
	.header_inside_r ul.mega-menu > li > ul > li 
	{
/* 		max-width: 1285px !important;
		margin: auto !important;
		padding: 0px 20px !important;
		float: none !important; */
		
/* 		margin: auto !important;
        padding: 0px 0px !important;
        float: none !important;
        width: 300px !important; */
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html
	{
		padding:0px !important;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget
	{
		padding-bottom:0px !important;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h6
	{
		line-height:1;
		padding-bottom: 16px !important;
		min-height:56px;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h6 a
	{
		text-decoration:none;
		color: #333;
		text-transform: capitalize;
		font-size: 18px !important;
		line-height: 1 !important;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h6 a:hover,
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h5 a:hover
	{
		color: #2A4FF6;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html
	{
		padding:0px !important;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget
	{
		padding-bottom:0px !important;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h5
	{
		line-height: 1;
        display: flex;
        flex-wrap: nowrap;
        gap: 0px 8px;
        justify-content: flex-start;
        padding-left: 15px;
        padding-bottom: 15px !important;
        padding-right: 30px;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h5 img
	{
		width: auto;
        height: 30px;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(37%) sepia(91%) saturate(6699%) hue-rotate(230deg) brightness(99%) contrast(94%);
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h5 a
	{
		text-decoration: none;
        color: #333;
        text-transform: capitalize;
        font-size: 16px !important;
        line-height: 1.05 !important;
        font-family: "Montserrat", sans-serif;
	}
	.header_inside_r ul.mega-menu > li > ul > li > ul
	{
		display: flex !important;
		gap: 0px !important;
		align-items: flex-start !important;
		padding-bottom: 20px !important;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h6
	{
		padding-right:20px !important;
	}
	.header_inside_r ul.mega-menu > li > ul > li .widget_custom_html .textwidget h6 a
	{
		line-height: 1.05 !important;
	}
	.header_inside_r ul.mega-menu > li.mega-menu-item-359 a
	{
		min-width: 151px !important;
		height: 50px !important;
		border-radius: 10px !important;
		background-color: #5CE1E6 !important;
		color: #0F4C5C !important;
		font-family: "Montserrat", sans-serif !important;
		font-size: 18px !important;
		font-weight: bold !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		padding: 0px 10px !important;
		transition: All 0.2s ease !important;
		-webkit-transition: All 0.2s ease !important;
		text-decoration: none !important;
	}
	.header_inside_r ul.mega-menu > li.mega-menu-item-359 a:hover
	{
		background-color: #2a4ff6 !important;
    	color: #fff !important;
	}
	
	/* menu stying */
	
	.header_inside_r ul.mega-menu > li .mega-indicator
	{
		display:none !important;
	}
	.header_inside_r ul.mega-menu > li > ul.mega-sub-menu
	{
		width: 300px !important;
		margin-top:10px !important;
	}
	.header_inside_r ul.mega-menu > li > ul.mega-sub-menu > li
	{
		margin: auto !important;
        padding: 0px 0px !important;
        float: none !important;
	}
	.header_inside_r ul.mega-menu > li > ul.mega-sub-menu > li > a
	{
/* 		font-family: "Montserrat", sans-serif !important;
		font-size: 16px !important;
		line-height: 23px !important;
		color: #333 !important;
		font-weight: 600 !important;
		padding: 12px 20px !important;
		border-bottom: 1px solid #333 !important; */
		
		font-family: "Montserrat", sans-serif !important;
        font-size: 16px !important;
        line-height: 23px !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 8px 20px !important;
        border-bottom: 0px solid #333 !important;
        background-color: #333 !important;
	}
	.header_inside_r ul.mega-menu > li > ul.mega-sub-menu > li > a:hover
	{
		opacity: 0.5 !important;
        background-color: transparent !important;
	}
	.header_inside_r ul.mega-menu > li > ul.mega-sub-menu > li:last-child > a
	{
		border-bottom: 0px solid #333 !important;
	}
	.header_inside_r ul.mega-menu > li > a
	{
		position:relative !important;
	}
	.header_inside_r ul.mega-menu > li > a::before
	{
		display      : block !important;
		content      : '' !important; 
		border-bottom: solid 2px #fff !important;
		transform    : scaleX(0) translateY(-1px) !important;
		transition   : transform 300ms ease-in-out !important;
		position: absolute !important;
        width: 100% !important;
        bottom: -2px;
	} 
	.header_inside_r ul.mega-menu > li:hover > a::before,
	.header_inside_r ul.mega-menu > li.mega-current-menu-item > a:before
	{
		 transform: scaleX(1) translateY(-1px) !important;
	}
	.header_inside_r ul.mega-menu > li.mega-menu-item-has-children > a::before,
	.header_inside_r ul.mega-menu > li:last-child > a::before
	{
		display:none !important;
		opacity:0 !important;
	}
	.header_inside_r ul.mega-menu > li.mega-toggle-on.mega-menu-item-has-children > a::after 
	{
		content:'' !important;
		display:block !important;
		opacity:1 !important;
		position: absolute;
        top: 25px;
        left: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #333;
        right: 0;
        margin: auto;
        width: 8px;
	}
	.header.main_menu-fixed .header_inside_r ul.mega-menu > li.mega-toggle-on.mega-menu-item-has-children > a::after 
	{
		top:30px;
	}
	.header_inside_r ul.mega-menu > li > ul.mega-sub-menu > li.mega-current-menu-item > a
	{
		background: transparent !important;
        opacity: 0.5 !important;
	}	
}

@media screen and (min-width:2000px) 
{
	.mystory {
        background-position: 100% 100% !important;
        background-size: 50% !important;
    }
}

@media screen and (min-width: 1600px)
{
	.contactpagemains ul.wp-block-list {
    display: flex !important;
    align-items: flex-start;
    justify-content: flex-start !important;
    gap: 0 !important;
    margin-left: 0 !important;
    max-width: 645px;
    margin: auto !important;
}
	.pros_cons_sec > .wp-block-group__inner-container > .wp-block-columns:first-child
{
	max-width:1024px;
	margin-left:auto !important;
	margin-right:auto !important;
}
	.teamsec figure {
    height: 315px;
}
	span.spandate {
    padding: 10px 12px;
    color: #fff;
    background-color: #00000082;
    font-size: 16px;
}
	.contactpagemains ul li:before
	{
		left: -35px !important;
	}
	.get_in_touch_address .wp-block-group__inner-container .wp-block-columns {
    margin: 0;
    gap: 2em 0;
}
	.get_in_touch_address .wp-block-group__inner-container .wp-block-columns .wp-block-column
	{
		margin-left:3%;
		margin-right:3%;
	}
	.service_slidertext1 h3 {
    font-size: 32px !important;
}
	body.postid-89 .pros_cons_sec > .wp-block-group__inner-container > .wp-block-columns {
    padding-bottom: 80px;
}
	.pros_cons_sec_l > p:first-child,
	.pros_cons_sec_2 > p:first-child
	{   
    padding: 20px 0px;
    margin-bottom: 30px;
    font-size: 26px;
}
	.pros_cons_sec_l, .pros_cons_sec_2 {
    margin-left: 3% !important;
    margin-right: 3% !important;
}
	.pros_cons_sec_l ul.wp-block-list, .pros_cons_sec_2 ul.wp-block-list {
    padding: 0px 40px;
}
	.pros_cons_sec_l ul.wp-block-list li, .pros_cons_sec_2 ul.wp-block-list li {
    padding-bottom: 0px;
    margin-bottom: 15px;
}
	.mystory {
    margin-top: 0px !important;
}
	   .header .header_inside_r ul.mega-menu > li {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }
	.bl-bott-fl span {
    font-size: 18px;
}
	.blog-deatail-top h1 {
    font-size: 42px;
    line-height: 1.3;
}
	.commontext h2 {
    font-size: 40px;
}
	.commontext h3 {
    font-size: 36px;
}
	.commontext h4 {
    font-size: 32px;
}
	.commontext h5 {
    font-size: 28px;
}
	.commontext h3 img, .blog-detail-midd p:last-child img {
    height: 40px;
}
	.commontext ul li, .commontext ol li {    
    font-size: 22px;
    line-height: 30px;
}
	.commontext ul li:before {
    content: "\f101";
    left: -21px;
    font: normal normal normal 22px / 1 FontAwesome;
    top: 3px;
}
	#sidebar-blog .blogdropdown h2 {
    font-size: 30px;
}
	.wp-block-latest-posts > li a {
    padding-bottom: 8px;
    font-size: 20px;
}
	.ptpb {
    padding-top: 80px;
    padding-bottom: 80px;
}
	.blimg img {
    width: 100%;
    height: 600px;
}
	.td-right {
    width: 280px;
}
	.td-right .td-image img {
    width: 280px;
    height: 280px;
}
	.td-title h3 {
    font-size: 30px;
}
	.td-title p {
    font-size: 24px;
}
	.ip-team-single {
    padding-top: 80px;
    padding-bottom: 80px;
}
	.our_story_inside {
    padding-top: 80px;
}
	.commonspacingtb {
    padding-top: 80px;
    padding-bottom: 80px;
}
    .wrapper {
    max-width: 1605px;
    margin: auto;
    padding: 0px 0px;
}
	.pagewrapper .wp-block-group__inner-container { max-width: 1605px; margin:auto; padding-left: 0px !important; padding-right: 0px !important; }

    .header_inside {
    padding-top: 28px;
    padding-bottom: 15px;
}
.header_inside_r ul {
    gap: 0px 60px;
}
.header_inside_r ul li a {
    font-size: 20px;
    line-height: 25px;    
}
.header_inside_r_btn .btn_blue {
    margin-left: 60px;
    height: 61px;
    font-size: 20px;
}
.Banner_inside h1 {
    font-size: 50px;
    margin-bottom: 53px;
}
.Banner_inside h2 {
    font-size: 150px;
}
.Banner_inside p {
    font-size: 24px;
    margin-top: 52px;
}
.Banner_inside .btn_blue {
    margin-top: 50px;
    font-weight: 600;
    height: 63px;
    min-width: 176px;
    font-size: 20px;
}
.Banner_inside {
    max-width: 850px;
}
.carries_inside1 { 
    padding: 30px 30px;
    width: 332px;
}
.carries_inside1.carries_inside1text h2 {
    font-size: 94px;
}
.carries_inside1.carries_inside1text img {
    width: 95px;
    position: relative;
    top: 20px;
    left: 0;
}
.carries_inside1.carries_inside1text p {
    font-size: 20px;
}
.carries_inside1 p {
    font-size: 20px;    
}
.carries_inside1 h2 {
    font-size: 64px;   
}
.carries_inside2text img {
    top: 15px;
    width: 81px;
    position: relative;
    left: 0;
}
.carries_inside1.carries_inside3text img {
    left: 0px;
    width: 87px;
    position: relative;
    top: 16px;
}
.carries_inside1.carries_inside4text img {
    left: -8px;
    width: 79px;
    position: relative;
    top: 17px;
}
.about_main_l img {
    width: 625px;
    display: block;
    margin: auto;
}
.about_main_r h2 {
    font-size: 47px;
    margin-bottom: 40px;
}
.h2clr {
    font-size: 47px;
    margin-bottom: 40px;
}
.about_main_r p {   
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 40px;
}
.btn_blue {
    min-width: 171px;
    height: 63px;
    font-size: 20px;
}
.mystory_inside_1 p {
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 30px;
}
.Banner {
    width: 100%;
    height: 926px;
    padding-top: 0px;
}
.Banner_inside {
    top: 54%
}
.carries_sec {
    padding-top: 80px;
    padding-bottom: 80px;
}
.about_main_r .btn_blue, .btn_bluelarge {
    min-width: 211px;
}
.mystory_inside_r img {
    margin: auto;
    height: 860px;
    width: auto;
}
.mystory
{
/*     background-image: none !important; */
	background-position: 145% 100%;
    background-size: 65%;
}
.mystory_inside_r 
{
    background-repeat: no-repeat;
}
.great_service {
    padding-top: 80px;
    padding-bottom: 80px;
}
.great_service_inner1 {
    gap: 55px 55px;
}
.great_service_inner1s {    
    padding: 40px 10px;
    padding-bottom: 60px;
    width: 360px;
} 
.great_service_inner1s h2 {
    font-size: 22px;
    margin-bottom: 15px;
}
.great_service_inner1s p {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 15px;
}
.great_service_inner1s a {
    font-size: 19px;
    font-weight: bold;
}
.success_stories {
    padding-top: 80px;
    padding-bottom: 80px;
}
.success_stories_slider1 p {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
    max-width: 1014px;
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}
.success_stories_slider1 span {
    font-size: 22px;
    line-height: 30px;
    max-width: 1014px;
    margin-left: auto;
    margin-right: auto;
}
.home_blog {
    padding-top: 80px;
    padding-bottom: 80px;
}
.home_blog_inside_1s figure {
    margin-bottom: 20px;
    height: 313px;
    position: relative;
}
.home_blog_inside_1s figure img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.home_blog_content h2 a {
    font-size: 20px;
}
.home_blog_content p {  
    font-size: 19px;
    line-height: 24px;
}
.btn_text {
    font-size: 20px;
}
.home_learnmre span {  
    font-size: 16px;
    line-height: 22px;
}
.home_forms_inside {
    width: 775px;
    height: auto;
}
.home_forms_inside p {
    font-size: 20px;
    padding-bottom: 25px;
}
.home_forms_inside h2 {   
    font-size: 32px;
    margin-bottom: 25px;
}
.home_forms_inside form input[type="text"], .home_forms_inside form input[type="email"] {
    height: 54px;
    font-size: 18px;
}
.home_forms_inside form textarea {
    width: 100%;
    height: 135px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
}
.footer_inside1 h2, .footer_inside2 h2, .footer_inside3 h2, .footer_inside4 h2 {
    font-size: 30px;
    margin-bottom: 20px;
}
.footer_inside1 ul li a img {
    width: 50px;
    height: 50px;
}
.footer_inside2 ul li a, .footer_inside3 ul li a {
    font-size: 20px;
}
.socialinfo p {
    font-size: 20px;
}
.socialinfo p a {
    font-size: 20px;
}
.whatspp a {
    height: 55px;
    font-size: 19px;
    min-width: 305px;
}
.footer_nav_l p {
    font-size: 18px;
}
.footer_nav_r ul li a {
    font-size: 18px;
}
.innerbanner {
    width: 100%;
    height: 699px;
}
.innerbanner_inside
{
    max-width: 1285px;
    margin: auto;
}
.innerbanner_inside h1 {
    font-size: 75px;
}
.our_vision {
    padding-top: 80px;
    padding-bottom: 80px;
}
.commontext h6 {
    font-size: 25px;
    margin-bottom: 25px;
}
.commontext p {
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 25px;
}
.our_story_inside_r img {
    height: 800px;
    width: auto;
    display: block;
    margin: auto;
}
.teamsec_text h3 a {
    font-size: 22px;
}
.teamsec_text p {
    font-size: 19px;
    padding-bottom: 15px;
    padding-top: 15px;
}
.teamsec figure {
    margin-bottom: 20px;
}
.teamsec_text .btntext {
    display: block;
    font-size: 19px;
}
.industries_text p {
    font-size: 22px;
    padding-bottom: 10px;
}
.industriessec figure {
    margin-bottom: 60px;
    height: 150px;
}
.industriessec figure a img {
    transform: scale(1);
}

}

@media screen and (min-width:1600px) and (max-width:1699px)
{
    .wrapper {
        max-width: 100% !important;
        margin: auto;
        padding: 0px 40px !important;
    }
	.pagewrapper .wp-block-group__inner-container { max-width: 100%; margin:auto; padding-left: 40px !important; padding-right: 40px !important; }
    .carries_inside {
    gap: 0px 30px;
}
.carries_inside1 {
        padding: 30px 30px;
        width: initial;
        flex: 1;
    }
  .great_service_inner1s {
        width: calc(25% - 55px);
    }

}

@media screen and (max-width:1350px)
{
    .Banner_inside {
    top: 50%;
}
.Banner {
    height: 700px;
    padding-top: 0;
    position: relative;
}
.mystory_inside_r 
{
    background-size: cover;
}
.mystory
{
    background-image: none !important;
}
}


@media screen and (max-width:1300px)
{
    .wrapper {
    padding: 0px 30px;
}
	.pagewrapper .wp-block-group__inner-container  {
    padding: 0px 30px;
}
    .Banner_inside h1 {
    margin-bottom: 35px;
}
.Banner_inside p {
    margin: 0;
    margin-top: 35px;
}
.Banner_inside .btn_blue {
    margin-top: 40px;
}
 .Banner_inside {
    top: 58%;
}
.carries_inside1 {
    width: auto;
    flex: 1;
}
.great_service_inner1s {
    width: 30%;
}

}

@media screen and (max-width:1200px)
{
    .carries_inside {
    width: 100%;
    gap: 0px 35px;
    justify-content: space-between;
}
    .carries_inside1 {
        width: initial;
        flex: 1;
        min-height: 139px;
    }
    .whatspp a {
    min-width: auto;
    padding: 0px 30px;
}
}

@media screen and (max-width:1100px)
{
	.services_grid_odd_even .wp-block-columns {
/*     border-bottom: 40px solid #fff; */
}
    .home_blog_inside_1 {
    gap: 0px 40px;
}
.footer_inside3 {
    width: 30%;
}
.footer_inside4 {
    width: 26%;
}
}

@media screen and (min-width:1200px) 
{
	.blog .home_blog.blogpage
	{
		padding-bottom:40px;
	}
	.postid-101 .blog-single .service_form,
	.postid-99 .blog-single .service_form,
	.postid-97 .blog-single .service_form,
	.postid-95 .blog-single .service_form,
	.postid-93 .blog-single .service_form,
	.postid-91 .blog-single .service_form-,
	.postid-89 .blog-single .service_form
	{
    padding-top: 45px;
}
	.postid-101 .blog-single,
	.postid-99 .blog-single,
	.postid-97 .blog-single,
	.postid-95 .blog-single,
	.postid-93 .blog-single,
	.postid-91 .blog-single,
	.postid-89 .blog-single
	{
    padding-bottom: 15px;
}
	.mystory {
    margin-top: 40px;
}
	.header .logo img
	{
		height: 90px;
	}
	.header.main_menu-fixed .logo img
	{
		height: 65px;
	}
}

@media screen and (min-width:1025px) and (max-width:1099px)
{
	 .carries_inside {
        gap: 0px 20px;
    }
}

@media screen and (min-width:1025px) and (max-width:1049px)
{
	.footer_inside3 {
        width: 28%;
    }
	    .footer_inside4 {
        width: 28%;
    }
}

@media screen and (min-width:1025px)
{
	.service_form  .calendly-inline-widget
{
	margin-top: -50px !important;
}
	.flating_icons_popups .service_form  .calendly-inline-widget
{
	margin-top: 0px !important;
}
}

@media screen and (max-width:1024px)
{
	.innerbanner_inside {
        padding-left: 30px;
        padding-right: 30px;
    }
	.blog-detail .blog-col-2-75p {
    width: calc(100% - 0px);
padding-bottom:30px;
}
	.blog-detail .blog-col-2-25p {
    width: 100%;
}
    .header .header_inside_r ul.mega-menu > li {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
    .our_story_inside_r img {
    height: auto;
    width: auto;
    display: block;
    margin: auto;
}
    .innerbanner_inside {
    top: 54%
}
    .home_blog_content h2 a {
    line-height: 1.6;
    display: block;
}
   .carries_inside1 {
        width: 245px;
        flex: initial;
        min-height: 139px;
    }
    .carries_inside {
        width: 100%;
        gap: 35px 35px;
        justify-content: center;
    }
    .footer_inside1 {
    width: 50%;
    padding-right: 40px;
    }
    .footer_inside2 {
    width: 50%;
    padding-right: 40px;
    }
    .footer_inside3 {
    width: 50%;
    padding-top: 25px;
    }
    .footer_inside4 {
        padding-top: 25px;
    width: 50%;
    }

}

@media screen and (min-width: 951px) and (max-width: 990px)
{
    .header_inside_r ul {
    gap: 0px 30px;
}
.header_inside_r_btn .btn_blue {
    margin-left: 30px;
}
}

@media screen and (max-width: 950px)
{
	.service_slider {
    width: 100%;
    gap: 30px 0px;
}
	.service_slidertext {
    width: calc(100% - 0px);
}
    a.logo img {
    height: 65px;
}
.header_inside {
    padding-top: 15px;
    padding-bottom: 15px;
}
    .header_inside_r ul,
    .header_inside_r .header_inside_r_btn 
    {
        display: none;
    }
    .mobileicons
    {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        position: relative;
    }
    img.openimage {
    position: relative;
    right: 0;
    width: 30px;
    height: 24px;
    top: 0;
    display: block;
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2769%) hue-rotate(40deg) brightness(107%) contrast(92%);
}
img.closeimage {
    position: absolute;
    right: 0;
    width: 30px;
    display: none;
}
.mobilenav
    {
/*         display: block;
        position: fixed;
        width: 100%;
        left: 0px;
        height: 100%;
        background: #2b6e7f;
        z-index: 1;
        padding: 30px 20px;
        top: 90px;
        display: none; */
    }
.mobilenav ul {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px 0px;
        flex-direction: column;
        margin-bottom: 13px;
    }
    .mobilenav a {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.header.active .mobilenav {
        display: block;
    }
    body.actives 
    {
        overflow: hidden !important;
    }
   .header.active  img.openimage {
        display: none;
    }
   .header.active  img.closeimage {
        position: relative;
        display: block;
    }
        .Banner_inside h1,
        .Banner_inside h2,
        .Banner_inside p 
        {
        text-shadow: 0px 0px 5px #000;
    }
.Banner_inside p {
    font-size: 22px;
    line-height: 1.3;
}

}

@media screen and (max-width:781px)
{
	.services_grid_odd_even .wp-block-columns .commontext {
    order: 1;
}
	.our_vision_inside_l {
    padding-right: 0px;
    padding-bottom: 30px;
}
	.our_vision_inside_r {
    width: 100%;
}
	.our_story_inside_r {
    width: 100%;
}
	.our_story_inside_l {
    padding-left: 0px;
    padding-top: 35px;
}
}

@media screen and (min-width:768px) and (max-width:990px)
{
	.flating_icons_inner { 
		max-width: calc(100% - 40px);
		height:680px;
	}
	.contactpagemains .wp-block-group__inner-container {
    padding-left: 30px;
    padding-right: 30px;
}
	.commontext h2 {
    line-height: 1.1;
}
	.header .header_inside_r ul.mega-menu > li.mega-menu-item-84
	{
		display:none !important;
	}
	.header .header_inside_r ul.mega-menu > li {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
	.header .logo img {
    height: 65px;
}
	.home_blog_inside_1s {
    flex: initial;
    width: calc(50% - 15px);
    margin-bottom: 30px;
}
    .blogpage .home_blog_inside_1 {
    gap: 20px 20px;
    padding-bottom: 45px;
}
.blogpage .home_blog_inside_1s {
    flex: initial;
    width: calc(50% - 20px);
}
    .success_stories_slider1 {
    padding-left: 50px;
    padding-right: 50px;
}
    .innerbanner {
    width: 100%;
    height: 400px;
}
    .about_main_inner {
    gap: 0px 40px;
}
    .about_main
    {
        padding-bottom: 55px;
    }
    .mystory_inside_r img {    
    height: 500px;
}
.great_service_inner1s {
        width: calc(50% - 40px);
    }
        .home_blog_inside_1 {
        gap: 0px 30px;
    }
    .wrapper {
        padding: 0px 20px;
    }
	 .pagewrapper .wp-block-group__inner-container  {
        padding: 0px 20px;
    }

}

@media screen and (max-width: 767px)
{
	.flatingcontactus {
    display: none !important;
}
.about_main, .mystory
	{
		overflow:hidden;
	}
	.wp-block-file__button.wp-block-file__button.wp-element-button 
	{
		min-width: 151px !important;
		height: 50px !important;
		border-radius: 10px !important;
		background-color: #5CE1E6 !important;
		color: #0F4C5C !important;
		font-family: "Montserrat", sans-serif !important;
		font-size: 16px !important;
		font-weight: bold !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		padding: 0px 10px !important;
		transition: All 0.2s ease !important;
		-webkit-transition: All 0.2s ease !important;
		text-decoration: none !important;
		margin-left:0px !important;
	}
	.wp-block-file__button.wp-block-file__button.wp-element-button:hover
	{
		background-color: #2a4ff6 !important;
		color: #fff !important;
	}
	.teamsec figure {
    height: 288px;
}
	.great_service_inner1s a:hover-,
	.home_blog_inside_1s .home_blog_content .btn_text:hover-,
	.great_service_inner1s:hover a
	{
/* 		color: #2A4FF6 !important; */
	}
	.great_service_inner1s a:hover,
	.home_blog_inside_1s .home_blog_content .btn_text:hover
	{
/* 		color: #333 !important; */
	}
	.mobilefloatingicon
{
	display:none;
    bottom: 65%;
	position: fixed;
	right: 5px;
	top: initial;
	transform: translateY(-50%);
	align-items: center;
	justify-content: center;
	z-index: 9;
}
	.mobilefloatingicon img 
	{
		width:65px;
	}
	.flating_icons_inner h2
	{
		margin-bottom:15px;
	}
	.flating_icons_inner .tagp
	{
		padding-bottom:15px;
	}
	.flating_icons_inner { 
		max-width: calc(100% - 40px);
		height:680px;
	}
	.flating_icons_inner 
	{
		padding-left:20px;
		padding-right:20px;
		padding-top: 65px;
	}
	.flatingcontactus {
    top: 40%;
}
	input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
	.contactpagemains ul.wp-block-list {
    margin-left: 35px !important;
}
	.Banner
	{
		background-image:none !important;
	}
	.mobilebannerimage {
    display: block !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
	body.postid-89 .pros_cons_sec > .wp-block-group__inner-container > .wp-block-columns {
    padding-bottom: 45px;
}
	.services_grid_odd_even:last-child {
    border-bottom: 0px solid #fff;
}
	.service_form form p {
    padding-bottom: 0px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 0px;
    position: relative;
}
.service_form {
    padding-top: 35px;
    padding-bottom: 22px;
}

.service_form form .wpcf7-form-control-wrap
{
	width:100%;
}
.service_form form .wpcf7-form-control-wrap:nth-child(1), 
.service_form form .wpcf7-form-control-wrap:nth-child(3),
.service_form form .wpcf7-form-control-wrap:nth-child(5),
.service_form form .wpcf7-form-control-wrap:nth-child(7) 
{
    width: calc(100% - 0px);
}
.service_form form .wpcf7-form-control-wrap:nth-child(8) {
    width: calc(100% - 0px);
}
	.pros_cons_sec_l ul.wp-block-list, .pros_cons_sec_2 ul.wp-block-list {
		padding: 0px 30px;
		padding-right: 20px;
		margin-left: 26px;
}
	.pros_cons_sec_l > p:first-child,
	.pros_cons_sec_2 > p:first-child
	{
    font-size: 20px;
}
	.wp-block-group.pros_cons_sec {
    padding-top: 20px;
    padding-bottom: 40px;
    width: 100%;
    display: table;
}
	.wp-block-group.storys_next1.commontext {
    padding-top: 0px;
}
	.services_grid_odd_even .wp-block-columns {
/*     border-bottom: 20px solid #fff; */
}
	.services_grid_odd_even .commontext {
    padding: 30px 20px;
    padding-left: 20px;
    padding-bottom: 10px;
}
    .innerbanner {
    width: 100%;
    height: 300px;
}
    .home_forms_inside {
    width: 100%;
}
    .wrapper {
        padding: 0px 20px;
    }
	.pagewrapper .wp-block-group__inner-container  {
        padding: 0px 20px;
    }
    .carries_sec {
    padding-top: 35px;
    padding-bottom: 35px;
}
.carries_inside1 {
        width: 100%;
        flex: initial;
        min-height: 139px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .carries_inside1.carries_inside1text img {
    width: auto;
    position: relative;
    top: 0;
    left: 0;
}
.carries_inside1 p {
    font-size: 16px;    
}
.carries_inside2text img {
    top: 0;
    width: auto;
    position: relative;
    left: 0;
}
.carries_inside2text p {
    width: auto;
}
.carries_inside1.carries_inside3text img {
    left: 0;
    width: auto;
    position: relative;
    top: 0;
}
.carries_inside1.carries_inside4text img {
    left: 0;
    width: auto;
    position: relative;
    top: 0;
}
.carries_inside1 p br 
{
    display: none;
}
.about_main_inner {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: justify-content;
    flex-wrap: wrap;
    gap: 30px 0px;
    flex-wrap: wrap;
    flex-direction: column;
}
.about_main_r h2 {
    font-size: 26px;
}
.about_main_r p {    
    font-size: 16px;
    line-height: 1.45;
}
section.about_main {
    padding-bottom: 35px;
}
.mystory_inside {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px 0px;
    flex-direction: column;
}
.mystory_inside_1 {
    flex: 1;
    order: 2;
}
.mystory_inside_r {
    flex: 1;
    order: 1;
}
.mystory_inside_r img {
    display: block;
    margin: auto;
    height: auto;
    width: auto;
}
.mystory_inside_r {
        background-size: contain;
    }
    .h2clr {
     font-size: 26px;
}
.mystory_inside_1 p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.45;
}
.great_service {
    padding-top: 35px;
    padding-bottom: 35px;
}
.home_blog_inside_1 {
        gap: 35px 30px;
    }
    .home_blog_inside_1s {
    flex: initial;
   width: calc(50% - 30px);
}
    .great_service_inner1s {
        width: calc(50% - 30px);
    }
    .great_service_inner1 {
    display: flex;
    gap: 35px 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 35px;
}
.great_service_inner1s h2 {
    font-size: 20px;
}
.great_service_inner1s p {
    font-size: 16px;
    line-height: 1.45;
}
.great_service_inner1s a {
    font-size: 18px;
}
.success_stories {
    padding-top: 35px;
    padding-bottom: 35px;
}
.success_stories_inside h2 {
    margin-bottom: 20px;
}
.success_stories_slider1 {
    padding-left: 30px;
    padding-right: 30px;
}
.home_blog {
    padding-top: 35px;
    padding-bottom: 35px;
}
.home_blog_content h2 a {
    font-size: 18px;
}
    .home_blog_content h2 a {
        line-height: 1.4;
    }
    .home_blog_content p {
    font-size: 16px;
    line-height: 1.45;
}
.home_learnmre span {
    font-size: 14px;
}
.home_blog_inside_1 {
    padding-bottom: 35px;
}
.home_forms {
    padding-top: 35px;
    padding-bottom: 35px;
}
.home_forms_inside p {
    font-size: 18px;
    line-height: 1.3;
}
.home_forms_inside h2 {
    font-size: 26px;
}
.home_forms_inside form input[type="text"], .home_forms_inside form input[type="email"] {
    font-size: 16px;
}
.home_forms_inside form {
    gap: 15px 0px;
}
.home_forms_inside form textarea {
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 16px;
}
.footer {
    padding-top: 35px;
}
.footer_inside1 {
        width: 100%;
        padding-right: 0px;
    }
    .footer_inside1 a.footerlogo {
    margin-bottom: 50px;
}
.footer_inside1 h2, .footer_inside2 h2, .footer_inside3 h2, .footer_inside4 h2 {
    font-size: 24px;
}
.footer_inside2 {
        width: 100%;
        padding-right: 0px;
          padding-top: 25px;
    }
    .footer_inside3 {
        width: 100%;
        padding-right: 0px;
    }
.footer_inside4 {
        padding-top: 25px;
        width: 100%;
    }
    .footer_nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    gap: 15px 0px;
}
.footer_nav_r ul {
    display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px 20px;
        flex-wrap: wrap;
}
    a.logo img {
        height: 50px;
    }
    .header_inside {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    img.openimage {
        width: 22px;
        height: auto;
    }
    .Banner {
        height: 100vh;
        background-size: cover;
        background-position: right center;
    }
    .Banner_inside {
        top: 56%;
        left: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .Banner_inside h1 {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .Banner_inside h2 {
    font-size: 46px;
}
.Banner_inside p {
        font-size: 18px;
        line-height: 1.3;
        margin-top: 25px;
    }
    .Banner_inside .btn_blue {
        margin-top: 20px;
    }
    .header.main_menu-fixed .logo img {
    height: 50px;
}
.header.active .mobilenav {
        top: 75px;
    }
    .footer_nav_l {
    text-align: center;
}
.footer_nav_l p {
    line-height: 1.2;
}
.innerbanner_inside h1 {
    font-size: 32px;
}
.our_vision {
    padding-top: 35px;
    padding-bottom: 35px;
}
.our_vision_inside {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
}
.our_vision_inside_l {
    flex: 1;
    padding-right: 0px;
}
.commontext h6 {
    line-height: 1.2;
    font-size: 18px;
    margin-bottom: 20px;
}
.our_vision_inside_r {
    width: 100%;
}
.our_vision_story {
    padding-top: 0px;
    padding-bottom: 35px;
    gap: 25px 0px;
}
.our_story_inside_r img {
        height: 300px;
        width: auto;
        display: block;
        margin: auto;
    }
    .our_story_inside_r {
    width: 100%;
    text-align: center;
}
.our_story_inside_l {
    flex: 1;
    padding-left: 0px;
}
.teams_inside h2 {
    line-height: 1.2;
}
.teamsec_text h3 a {
    font-size: 20px;    
}
.teamsec_text p {
    font-size: 18px;
    padding-bottom: 15px;
    padding-top: 15px;
}
.teamsec_text .btntext {
    font-size: 18px;   
}
.teamsec figure {
    margin-bottom: 18px;
}
.teams_inside_slider.slick-dotted.slick-slider {
    margin-bottom: 35px;
}
.industries_slider.slick-dotted.slick-slider {
    margin-bottom: 35px;
}
.teams_inside .slick-dots {
    bottom: -55px;
}
.industries_inside .slick-dots {
    bottom: -30px;
}
.success_stories_slider1 {
    padding-left: 50px;
    padding-right: 50px;
}
.home_blog_inside .h2clr {
    line-height: 1.2;
}
.industries {
    padding-bottom: 35px;
    padding-top: 35px;
}
 .blogpage .home_blog_inside_1 {
    gap: 30px 30px;
    padding-bottom: 45px;
}
.blogpage .home_blog_inside_1s {
    flex: initial;
    width: calc(50% - 30px);
}
	.mystory_inside_1 h2.h2clr
	{
		line-height:1.2;
	}
	.home_forms_inside form .wpcf7-form-control-wrap:nth-child(1), .home_forms_inside form .wpcf7-form-control-wrap:nth-child(3), .contactpagemains form .wpcf7-form-control-wrap:nth-child(1), .contactpagemains form .wpcf7-form-control-wrap:nth-child(3) {
    width: calc(100% - 0px);
    margin-bottom: 0px;
}
	.home_forms_inside form .wpcf7-form-control-wrap:nth-child(1),
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(3),
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(5),
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(7),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(1),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(3),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(5),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(7)
{
	width: calc(100% - 0px);
}
.home_forms_inside form .wpcf7-form-control-wrap:nth-child(9),
.contactpagemains form .wpcf7-form-control-wrap:nth-child(9)
{
	width: calc(100% - 0px);
}
	.home_forms {
    background-position: center;
}
	.home_forms_inside .btn_blue, .home_forms_inside form input[type="submit"], .contactpagemains form input[type="submit"] {
    margin-top: 0px !important;
}
	.commonspacingtb {
    padding-top: 35px;
    padding-bottom: 35px;
}
	.commontext h2 {
    font-size: 26px;
    line-height: 1.2;
}
	.commontext h3 {
    font-size: 24px;
}
	.commontext h4 {
    font-size: 22px;
}
	.commontext h5 {
    font-size: 20px;
}
	.commontext h6 {
        line-height: 1.2;
        font-size: 19px;
    }
	.our_vision_inside_l {
        padding-right: 0px;
        padding-bottom: 20px;
    }
	.teams {
    padding-top: 20px;
}
	.teams_inside .h2clr {
    margin-bottom: 15px;
}
	.td-right {
    width: 250px;
    float: none;
    margin-left: 0px;
    margin-bottom: 30px;
    margin: auto;
	margin-bottom: 30px;
}
	.td-title h3 {
    font-size: 26px;
}
	.ip-team-single {
    padding-top: 45px;
    padding-bottom: 35px;
}
	.home_blog.blogpage
	{
        padding-top: 45px;
        padding-bottom: 10px;
    }
	.ptpb {
    padding-top: 40px;
    padding-bottom: 40px;
}
	.blog-deatail-top h1
 {
    font-size: 30px;
}
	.blimg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
	.service_grup_html_main {
    padding-top: 35px;
    padding-bottom: 0px;
}
	.service_slidertext {
    width: calc(100% - 0px);
    gap: 15px 15px;
    flex-direction: column-reverse;
}
	.commontext .service_slidertext1 h3 {
    font-size: 24px;
	margin-bottom: 15px;
}
	.success_stories_inside h2 {
        line-height: 1.2;
    }
	.contactpagemains .wp-block-group__inner-container {
    padding-left: 20px;
    padding-right: 20px;
		width:100%;
}
	.get_in_touch_address {
    padding-bottom: 35px;
}
	.contactpagemains form textarea, .contactpagemains form input[type="text"], .contactpagemains form input[type="email"] {
    margin-top: 0px;
    margin-bottom: 0;
}
	.contactpagemains {
    padding-bottom: 35px;
}
	.iframemaps iframe
	{
		height:350px;
	}
	.commontext h3 {
    flex-wrap: nowrap;
    gap: 0px 5px;
}
	.wp-block-table .has-fixed-layout {
    min-width: 800px;
}
	.cpt-service-template-default .blog-detail .blog-detail-midd .wp-block-image .alignright, .commontext .wp-block-image .alignright {
    width: 100%;
    margin-left: 0em !important;
    margin-bottom: 30px !important;
}
	.commontext h3 {
    font-size: 24px;
	}
	.cpt-service-template-default .blog-detail .blog-col-2-75p {
        padding-bottom: 0px;
    }
   .cpt-service-template-default .ptpb {
        padding-bottom: 20px;
    }
	.innerbanner_inside {
        padding-left: 20px;
        padding-right: 20px;
    }
	.home_forms_inside .wpcf7-form.invalid
	{
		
	}
	.home_forms_inside .wpcf7-form.invalid .wpcf7-form-control-wrap:nth-child(1), 
	.home_forms_inside .wpcf7-form.invalid .wpcf7-form-control-wrap:nth-child(3), 
	.contactpagemains .wpcf7-form.invalid .wpcf7-form-control-wrap:nth-child(1), 
	.contactpagemains .wpcf7-form.invalid .wpcf7-form-control-wrap:nth-child(3)
	{
		margin-bottom:0px;
	}
	.Banner {
        height: calc(100vh - 55px);
/* 		 height: calc(100vh - 0px); */
    }
	.Banner_inside {
        width: 100%;
        max-width: 100%;
    }
	.Banner_inside {
        padding-top: 30px;
        bottom: 0;
        left: 0;
        padding-left: 20px;
        padding-right: 20px;
        background-color: hsl(0deg 0% 0% / 40%);
        padding-bottom: 30px;
        top: initial;
        transform: translateY(0px) !important;
		opacity:0;
    }
	.Banner_inside.active  
	{
		opacity: 0;
		animation: fadeIns 2s ease-in-out forwards;
	}
	@keyframes fadeIns {
	  to {
		opacity: 1;
	  }
}
	.home_forms_inside {
    padding: 25px 20px;
}
	.success_stories_slider .slick-prev,
	.success_stories_slider .slick-next
	{
    width: 35px;
    height: 35px;
    background-size: 35px !important;
}
	.success_stories_slider .slick-prev:after {
    content: '';
    width: 20px;
    height: 20px;
    background-size: 14px !important;
    left: 9px;
    top: 8px;
}
	.success_stories_slider .slick-next:after {
    content: '';
    width: 20px;
    height: 20px;
    background-size: 14px;
    right: 3px;
    top: 8px;
}
	.Banner
	{
/* 		background-image:url('https://wpcustom.ezzysales.com/nwerp/wp-content/uploads/2025/06/Mobile-2.png') !important;
		background-position:center; */
	}
	    .commontext .service_slidertext1 h3 {
        font-size: 20px;
    }
	
}

@media screen and (max-width:768px)
{
	.mega-toggle-block {
    margin: 0px !important;
    background-color: transparent !important;
}
	    #mega-menu-wrap-main-menu .mega-menu-toggle {
        background: transparent !important;
    }
	#mega-menu-wrap-main-menu .mega-toggle-animated-inner,
	#mega-menu-wrap-main-menu .mega-toggle-animated-inner:before,
	#mega-menu-wrap-main-menu .mega-toggle-animated-inner:after
	{
		background-color:#fff !important;
	}
	#mega-menu-wrap-main-menu .mega-menu-toggle.mega-menu-open + #mega-menu-main-menu
	{
		background-image: url(../images/bannerimage.png);
    	background-size: cover;
	}
	.header_inside_r ul li a {
    font-family: "Montserrat", sans-serif !important;
}
	#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-current-menu-item a.mega-menu-link
	{
		background: #dddddd;
		color: #666;
	}
	#mega-menu-wrap-main-menu
	{
		display:none !important;
	}
	.header.active img.openimage {
        display: block;
    }
	img.openimage {
        width: 25px;
        height: auto;
    }
	.mobilenav
	{
		position: fixed;
        left: -100%;
        top: 0;
        z-index: 99999999999999;
        width: auto;
        padding: 0px 0px;
        height: 100%;
        transition: all .5s linear;
/*         transform: scaleX(0); */
        transform-origin: left;
		background-image: url('../images/bannerimage.png') !important;
		display:block !important;
		background-size:cover;
		overflow:auto;
	}
	.mobilenav.expand-nav
	{
/* 		transform: scaleX(1); */
        transition: all .2s linear;
		width:100%;
		left: 0%;
	}
	.mobilenav_left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}
	.mobilenav_left a.logo img {
        height: 55px;
    }
	
	img.closeimage {
    position: static;
    right: 0;
    width: 30px;
    display: block;
}
	.mobilenav_center #mega-menu-wrap-main-menu
	{
		display:block !important;
	}
	.mobilenav_center #mega-menu-wrap-main-menu .mega-menu-toggle {
        background: transparent !important;
        display: none !important;
    }
	.mobilenav_center #mega-menu-main-menu
	{
		position: static !important;
		width: 100% !important;
		height: auto !important;
		max-height: initial !important;
		visibility: visible !important;
		transition: none !important;
		background-color: transparent !important;
		gap:0px !important;
	}
	.mobilenav_center {
    width: 100% !important;
    padding: 30px 20px !important;
}
	  .mobilenav_center  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item {
        width: 100% !important;
		padding-left:0px !important;
    }
	body
	{
		overflow-x:hidden;
	}
	.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link, 
	.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link, 
	.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
        color: #ffffff !important;
        background: transparent !important;
        font-size: 18px !important;
        border-bottom: 1px solid #fff !important;
		 font-family: "Montserrat", sans-serif !important;
		padding-left:7px !important;
		padding-right:7px !important;
		border-bottom: 1px solid hsl(0deg 0% 100% / 30%) !important;
		height:45px !important;
    }
	#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu  
	{
		 background: transparent !important;
		 padding-left:10px !important;
		padding-right:10px !important;
	}
	#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item 
	{
		 background: transparent !important;
	}
	#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    background: transparent !important;
        color: #fff !important;
        font-size: 18px !important;
        padding: 11.25px 10px !important;
        height: auto !important;
        border-bottom: 1px solid hsl(0deg 0% 100% / 30%) !important;
        font-family: "Montserrat", sans-serif !important;
        line-height: 1.2 !important;
}
	#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a.mega-menu-link { 
		border-bottom: 0px solid hsl(0deg 0% 100% / 30%) !important;
	}
	.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:last-child > a.mega-menu-link, 
	.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:last-child > a.mega-menu-link, 
	.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item:last-child > a.mega-menu-link
	{
		border-bottom: 0px solid hsl(0deg 0% 100% / 30%) !important;
}
	.mobilenav_bottom
	{
		width:100%;
		padding:0px 20px;
	}
	.mobilenav_bottom p 
	{
		color:#fff;
		font-size:20px;
		padding-bottom:12px;
		margin-bottom:0px;
		font-family: "Montserrat", sans-serif !important;
	}
	.mobilenav_bottom ul 
{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0px 12px;
	flex-direction:row;

}
.mobilenav_bottom ul li
{
    position: relative;
}
.mobilenav_bottom ul li a
{
    text-decoration: none;
}
.mobilenav_bottom ul li a img
{
    width: 35px;
    height: 35px;
	object-fit:contain;
}
.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link, 
.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link, 
.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link
	{
		transition: All 0.2s ease;
		-webkit-transition: All 0.2s ease;
		-moz-transition: All 0.2s ease;
	}
.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover, 
.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover, 
.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
	#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-current-menu-item a.mega-menu-link,
	.mobilenav_center #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-current-menu-item > a.mega-menu-link
	{
		color: #5ce1e6 !important;
	}
	    .mobilenav_bottom ul li a img
	{
		transition: All 0.2s ease;
		-webkit-transition: All 0.2s ease;
		-moz-transition: All 0.2s ease;
	}
	.mobilenav_bottom ul li a:hover img
	{
		opacity:0.7;
	}
	#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
    font-size: 26px !important;
}
	.mac #mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
        font-size: 30px !important;
    }
	
}

@media screen and (max-width:499px)
{
	#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
    font-size: 26px !important;
}
	.mac #mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
        font-size: 30px !important;
    }
	.services_grid_odd_even .btn_blue {
  
    font-size: 16px;
}
	.home_forms {
        background-position: left;
    }
	.get_in_touch_address .wp-block-columns .wp-block-column p span
	{
		display:block;
	}
        .innerbanner {
        width: 100%;
        height: 250px;
    }
     .great_service_inner1s {
        width: 100%;
    }
    .great_service_inner1 {
    display: flex;
    gap: 25px 0px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 35px;
}
.home_blog_inside_1 {
        gap: 25px 30px;
    }
    .home_blog_inside_1s {
    flex: initial;
   width: calc(100% - 0px);
}
.blogpage .home_blog_inside_1 {
    gap: 20px 0px;
    padding-bottom: 45px;
}
.blogpage .home_blog_inside_1s {
    flex: initial;
    width: calc(100% - 0px);
}
.home_blog_inside_1s figure {
    height: 245px;
}
	.teamsec_text p {
        font-size: 16px;
        padding-bottom: 13px;
        padding-top: 10px;
    }
	.commontext .teamsec_text h3 {
        font-size: 20px;
    }
	.teamsec_text .btntext {
        font-size: 16px;
    }
	.service_form form input[type="date"]
{
    display: inline-flex;
	min-width: 94.2% !important;
	justify-content:flex-start !important;
}

}

@media screen and (max-width:365px)
{
	 .blog-detail-midd.commontext h2 {
        margin-bottom: 15px;
    }
	.bl-bott-fl span {
    font-size: 14px;
}
	.blog-deatail-top h1 {
        font-size: 26px;
    }
	.commontext h1 {
       font-size: 26px;
       line-height: 1.1;
    }
	.innerbanner_inside h1 {
        font-size: 26px;
        line-height: 1.1;
    }
	.blog-detail-midd.commontext h2 {
    line-height: 1.2;
}
	.commontext h2 {
        font-size: 22px;
    }
	.commontext h3 {
        font-size: 20px;
    }
	.commontext h4 {
        font-size: 19px;
    }
	.commontext h5 {
        font-size: 18px;
    }
	.commontext h6 {
        font-size: 17px;
    }
}