/* @import url('http://example.com/example_style.css'); */



@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/**
 * CSS @imports must be at the top of the file.      
 * Add them above this section.                             
 */

/* ==========================================================================


   1. BASE STYLES                                             


   ========================================================================== */


/** 
 * Box Sizing
 * 
 * Applies a natural box layout model to all elements so that width and padding 
 * are essentially combined, making responsive styles easier to manage.
 */

*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box;
}

:root{
	--containerw: calc((100vw - 1440px) / 2);
}

html{
	font-size: 1rem;
}
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
} 

/* Website background color and default font styles */
body {
	background: #fff;
	color: #040404;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 26px;
}

/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

.container {
	float: none;
	max-width: 1430px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

img{
    max-width: 100%;
    height: auto;
}

a { 
    text-decoration: none;
    outline: none;
    color: #000;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
a:hover, a:focus { 
    text-decoration: none;
    outline: none;
    color: #8DC63F; 
}

hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #8DC63F;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #8DC63F;
  text-shadow: none;
}


/* ==========================================================================
   Typography
   ========================================================================== */


/* Basic text */
p {
    margin: 0 0 15px;
} 
p:last-child{
    margin: 0;
}
small {}
strong {
    font-weight: 700;
}
em {}
cite {}
code {}
pre {}

sup, sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin: 0px 0 15px;
    font-weight: 700;
    font-family: "Work Sans", sans-serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}


h1 {
    font-size: 48px;
	line-height: 1.2;
}
h2 {
	font-size: 42px;
	line-height: 1.2;
}
h3 {
    font-size: 36px;
	line-height: 1.2;
}
h4 {
    font-size: 32px;
	line-height: 1.2;
}
h5 {
    font-size: 30px;
	line-height: 1.2;
}
h6 {
    font-size: 20px;
	line-height: 1.4;
}

/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}

ul.unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Quotes */
blockquote {}
blockquote p {}
blockquote small {}
blockquote small:before {}

q:before, q:after, blockquote:before, blockquote:after {}


.cmn_padd{
    padding-top: 95px;
    padding-bottom: 95px;
}
.cmn_padd_top{
	padding-top: 95px;
	padding-bottom: 0;
}
.cmn_padd_bottom{
	padding-bottom: 95px;
	padding-top: 0;
}
a.cmn_btn {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
    background-color: transparent;
    display: inline-block;
    padding: 15px 50px;
	line-height: 1;
    position: relative;
	text-align: center;
	white-space: normal;
	overflow: hidden;
	z-index: 1;
	border: 1px solid #FFF;
	background: #FFF;
	border-radius: 50px;
}
a.cmn_btn:hover{
	background-color: #F5B945;
	color: #fff;
}
a.cmn_btn:before,
a.cmn_btn:after {
    content: "";
    position: absolute;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: #F5B945;
	z-index: -1;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
a.cmn_btn:before {
    top: -50%;
}
a.cmn_btn:hover:before {
	top: 0;
}
a.cmn_btn:after {
    bottom: -50%;
}
a.cmn_btn:hover:after {
	bottom: 0;
}

a.cmn_btn.cmnyell{
	background: #F5B945;
	color: #fff;
	border-color: #F5B945;
} 
a.cmn_btn.cmnyell:hover{
	background-color: #fff;
	color: #000;
}
a.cmn_btn.cmnyell:before,
a.cmn_btn.cmnyell:after {
    background-color: #fff;
}

a.cmn_btn.cmn_btn_blk{
	background: #1E1A1A;
	color: #fff;
	border: 1px solid #1E1A1A;
} 
a.cmn_btn.cmn_btn_blk:hover{
	background-color: #F5B945;
	color: #fff;
}
a.cmn_btn.cmn_btn_blk:before,
a.cmn_btn.cmn_btn_blk:after {
    background-color: #F5B945;
}

a.cmn_btn.cmn_btn_gr{
	background: transparent;
	color: #57585A;
	border: 1px solid #57585A;
} 
a.cmn_btn.cmn_btn_gr:hover{
	background-color: #FCE620;
	color: #fff;
}
a.cmn_btn.cmn_btn_gr:before,
a.cmn_btn.cmn_btn_gr:after {
    background-color: #FCE620;
}


.ubhide {
  display: none;
}
.ubhidden_item{
	display: none !important;
}
.ub_graybg{
	background-color: #f5f5f5;
}
.pg_cntwrap {
    color: #000;
}

/* ==========================================================================
   Header
   ========================================================================== */

.masterheader {
    position: relative;
    z-index: 20;
}
.custom_header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 20px 0;
    box-shadow: 0px 0px 15px rgba(0 0 0 / 10%);
	transition: all 0.5s ease;
}
.sticky .custom_header {
    position: fixed;
    background: #fff;
	padding: 10px 0;
}
.custom_header .row {
    align-items: center;
}
.custom_header .hright {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.custom_header .hright .conbtn {
    margin-right: 35px;
}
.conbtn a {
    border: 3px solid #0F3687;
    padding: 15px 35px 15px 34px;
    border-radius: 50px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    font-family: "Work Sans", sans-serif;
    color: #0F3687;
	background-color: transparent;
}
.conbtn a:hover{
    background-color: #8DC63F;
	color: #fff;
}
.conbtn a span {
    position: relative;
    top: 2px;
}
.bookbtn a {
    border: 3px solid #8DC63F;
    padding: 15px 35px 15px 34px;
    border-radius: 50px;
    display: flex;
	align-items: center;
	justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Work Sans", sans-serif;
    color: #0F3687;
	background-color: #8DC63F;
}
.bookbtn a:hover{
    background-color: transparent;
	color: #8DC63F;
}
.bookbtn a span {
    position: relative;
    top: 0;
    margin-right: 10px;
}



/* ==========================================================================
   Footer
   ========================================================================== */


footer#mainfooter {
    background: #F0F0F0;
	padding-bottom: 25px;
}
.footertop {
    padding: 50px 0;
	text-align: center;
}
.footer_logo {
    margin-bottom: 17px;
}
.footer_logo img.logo {
    max-width: 320px;
    width: 100%;
}
.foo_widgets .foo_des {
    margin-bottom: 30px;
}
.fw_title h6 {
    color: #0F3687;
    font-weight: 600;
    margin-bottom: 25px;
}
.fmenu_item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.fmenu_item ul > li {
    margin: 0 0 10px;
}
.fmenu_item ul > li a {
    color: #0F3687;
}
.fmenu_item ul > li.current-menu-item a,
.fmenu_item ul > li a:hover {
    color: #8DC63F;
}
ul.social_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.foo_socialicons li {
    list-style: none;
    margin: 0 7px 0 0;
    padding: 0;
    display: inline-block;
    vertical-align: top;
}
.foo_socialicons li:last-child{
	margin-right: 0;
} 
.foo_socialicons li a {
    height: 30px;
    width: 30px;
    background: #0F3687;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 18px;
    justify-content: center;
}
.foo_socialicons li a:hover{
	background: #8DC63F;
}
.footer_copyright {
    padding-bottom: 0;
    text-align: center;
    position: relative;
}
.footer_copyright .copyright {
    max-width: 600px;
    margin: 0 auto;
    background: #F0F0F0;
    position: relative;
	padding: 0 30px;
}
.footer_copyright:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background: #8DC63F;
}
.foo_widgets .fcon_item {
    margin: 0 10px 10px;
}
.foo_widgets .fcon_item p span {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    vertical-align: middle;
    color: #89C545;
    text-align: center;
    padding: 0px;
    margin-right: 5px;
}
.foo_widgets .fcon_item p {
    display: flex;
    align-items: center;
    color: #0F3687;
}
.foo_widgets .fcon_item p a {
    color: #0F3687;
}
.foo_widgets .fcon_item p a:hover {
    color: #8DC63F;
}

.fcitem_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_map {
    position: relative;
    padding-bottom: 30%;
}
.footer_map iframe{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}


/* ==========================================================================
   Forms
   ========================================================================== */
   
 
   
   


/* All Global Forms
   ========================================================================== */


/* Labels */

body label {
    margin: 0 0 10px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}



/* One Line Inputs */


body input[type="text"],
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"],
body input[type="file"],
body textarea,
body select {
    width: 100%;
    background-color: transparent;
    padding: 10px 15px;
    height: auto;
    min-height: auto;
    line-height: 1;
    border: 1px solid #000000;
    margin-bottom: 20px;
    border-radius: 0;
    color: #000;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
    outline: none;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}


body textarea.form-control{
    height: 145px;
    resize: none;
	border-radius: 0;
	background-color: transparent;
}
body select.form-control {
    appearance: auto;
    -moz-appearance: auto;
    -ms-appearance: auto;
    -o-appearance: auto;
    -webkit-appearance: auto;
}

body input[type="text"]:focus,
body input[type="password"]:focus, 
body input[type="datetime"]:focus, 
body input[type="datetime-local"]:focus, 
body input[type="date"]:focus, 
body input[type="month"]:focus, 
body input[type="time"]:focus, 
body input[type="week"]:focus, 
body input[type="number"]:focus, 
body input[type="email"]:focus, 
body input[type="url"]:focus, 
body input[type="search"]:focus, 
body input[type="tel"]:focus, 
body input[type="color"]:focus,
body input[type="file"]:focus,
body textarea:focus,
body select:focus {
    border-color: #000;
}

/* Separate Styles for Multiple Line Inputs */
body textarea {}
body textarea:focus {}

/* Separate Styles for Drop Downs */
body select {}
body select:focus {}

/* Multiple Selection Inputs */

body input[type="radio"] {}
body input[type="checkbox"] {}





/* Placeholder Text */
.form-control::-webkit-input-placeholder { /* Webkit Browsers */
   color: #999999 !important;
   opacity: 1; 
}
.form-control:-moz-placeholder { /* Firefox 18- */
   color: #999999 !important;
   opacity: 1;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
   color: #999999 !important;
   opacity: 1;
}
.form-control:-ms-input-placeholder { /* IE10 */
   color: #999999 !important;
   opacity: 1;
}

.bann_form .main_form form label.error {
    position: relative;
    top: -8px;
    color: #f00;
}

/* ==========================================================================
   Buttons                                              
   ========================================================================== */


/* All Global Buttons (Excluding CTAs)
   ========================================================================== */

.alm-btn-wrap button.blogload_more,
body input[type="submit"],
body input[type="button"] {
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 0;
    width: auto;
    background-color: #0F3687;
    padding: 20px 60px;
    height: auto;
    min-height: auto;
    line-height: 1;
    border: none;
    border-radius: 8px;
    color: #fff;
	font-style: normal;
	font-weight: 600;
	font-size: 26px;
    outline: none;
	display: inline-block;
	text-transform: uppercase;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}

.alm-btn-wrap button.blogload_more:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {
    background: #8DC63F;
    color: #fff;
}

.alm-btn-wrap button.blogload_more:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {
    background: #8DC63F;
    color: #fff;
}

.alm-btn-wrap button.blogload_more{
	display: inline-block;
	background: #38B6FF !important;
	font-size: 1.125rem;
}
.alm-btn-wrap button.blogload_more:hover{
	background: #145CA4 !important;
}


.wpcf7-not-valid-tip {
    position: relative;
    top: -12px;
}
.wpcf7 form.failed .wpcf7-response-output, 
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 0 none;
    color: #f00;
    margin: 20px 0 30px;
    padding: 0;
}

.cc_banner_sec .form_wrapper .mainform .btn_grp {
    text-align: center;
    position: relative;
}

.cc_banner_sec .form_wrapper .mainform .btn_grp span.wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}


/*=== Title Wrap Css ===*/

.title_wrap {
    margin-bottom: 50px;
}
.title_wrap h6 {
    color: #1195FF;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.title_wrap h3 {
    line-height: normal;
    margin: 0;
    color: #555555;
	text-transform: uppercase;
}

/*=== Banner Section Css ===*/

.cc_banner_sec{
	background-image: url(../images/banner-bg.png);
	background-color: #fff;
	background-size: cover;
	background-position: center center;
	padding-top: 175px;
}
.cc_banner_sec .banncnt_wrap{
	padding-bottom: 60px;
}
.cc_banner_sec h6 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #292929;
    text-transform: uppercase;
    margin: 0;
}
.cc_banner_sec h1 {
    line-height: 50px;
    color: #0F3687;
    margin-bottom: 10px;
}
.cc_banner_sec h1 strong {
    color: #89C545;
}
.cc_banner_sec .sale_txt{
	/*background-image: url(../images/gbg.png);
	background-size: cover;
	background-position: center center;*/
	background-color: #89C545;
	padding: 10px 20px;
	margin-bottom: 30px;
}
.cc_banner_sec .sale_txt p {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
}
.cc_banner_sec .form_wrapper {
    background: #fff;
    padding: 36px 20px 57px 20px;
    border: 2px solid #DBDBDB;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0 0 0 /23%);
}
.cc_banner_sec .form_wrapper .formtitle_wrap {
    margin-bottom: 30px;
    text-align: center;
}
.cc_banner_sec .form_wrapper .formtitle_wrap h4 {
    color: #000000;
    font-weight: 600;
}
.cc_banner_sec .form_wrapper .formtitle_wrap h4 strong {
    font-weight: 600;
    color: #0F3687;
}
.cc_banner_sec .form_wrapper .formtitle_wrap p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
}
.cc_banner_sec .form_wrapper .mainform .form_grp {
    position: relative;
	padding-top: 10px;
}
.cc_banner_sec .form_wrapper .mainform .form_grp .form-control {
    border: 1px solid #D2D5DA;
    border-radius: 8px;
    height: 46px;
    padding: 10px 15px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
	color: #999999;
	box-shadow: 0px 2px 5px 0px rgba(0 0 0 / 10%) !important;
}
.cc_banner_sec .form_wrapper .mainform .form_grp select.form-control{
	appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
	font-size: 12px;
    line-height: 18px;
    font-weight: 300;
	color: #999999;
}
.cc_banner_sec .form_wrapper .mainform .form_grp label {
    position: absolute;
    top: 0;
    left: 12px;
    background: #FFFFFF;
    z-index: 1;
    padding: 0 5px;
    font-size: 12px;
    color: #121826;
    font-weight: 600;
	margin: 0;
	transition: all 0.5s ease-in-out;
}
.cc_banner_sec .form_wrapper .mainform .form_grp.focused label{
	top: -15px;
	background: transparent;
}
.cc_banner_sec .form_wrapper .mainform .form_grp textarea.form-control{
	height: 90px;
}
.cc_banner_sec .bright_col {
    position: relative;
}
.cc_banner_sec .bright_col .gimg {
    position: absolute;
    bottom: 0;
    right: 0;
}
.cc_banner_sec .bright_col .calltxt {
    position: relative;
    bottom: auto;
    right: auto;
    z-index: 1;
	/*background-image: url(../images/bgs.png);
    background-size: cover;
    background-position: center center;*/
    padding: 10px 20px;
    background-color: #89C545;
	
}
.blinktxt{
    animation: blink 1s linear infinite;
}
.cc_banner_sec .bright_col .calltxt p{
	font-size: 22px;
    color: #fff;
    font-weight: 500;
}
@keyframes blink {
  0%, 100% {background-color:#89C545;}
  50% {background-color: #0F3687;}
}

/*=== Specification Section Css ===*/

.cc_specification_sec {
    background: #0F3687;
	padding: 50px 0;
    color: #fff;
}
.cc_specification_sec .spes_inn {
    display: flex;
    align-items: center;
    border-right: 1px solid #fff;
    padding-left: 50px;
}
.cc_specification_sec .spes_inn .icon {
    margin-right: 15px;
}
.cc_specification_sec .spes_item:last-child .spes_inn {
    border: 0 none;
}
.cc_specification_sec .spes_item:first-child .spes_inn {
    padding-left: 0;
}
.cc_specification_sec .spes_inn .cnt .number {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
}
.cc_specification_sec .spes_inn .cnt .txt {
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
}

/*=== Process Section Css ===*/

.cc_process_sec {
    background: #fff;
    padding: 100px 0;
}
.cc_process_sec .title_wrap {
    text-align: center;
}
.cc_process_sec .title_wrap h2 {
    color: #0F3687;
}
.cc_process_sec .title_wrap h2 strong {
    color: #8DC63F;
}
.cc_process_sec .title_wrap p {
    font-size: 18px;
    line-height: 26px;
}
.cc_process_sec .method_img {
    text-align: center;
    margin-bottom: 50px;
}
.cc_process_sec .process_cnt_wrap .process_cnt h6 {
    color: #8DC63F;
    line-height: 23px;
    font-weight: 500;
    margin: 0 0 10px;
}
.cc_process_sec .process_cnt_wrap .process_cnt h4 {
    font-size: 30px;
    line-height: 36px;
    color: #0F3687;
    margin-bottom: 12px;
}
.cc_process_sec .process_cnt_wrap .process_cnt p {
    font-size: 18px;
    line-height: 25px;
    margin: 0 0 25px;
}
.cc_process_sec .process_cnt_wrap .process_cnt ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cc_process_sec .process_cnt_wrap .process_cnt ul li {
    font-size: 20px;
    line-height: 1.5;
    color: #292929;
    font-weight: 500;
    margin-bottom: 10px;
}
.cc_process_sec .process_cnt_wrap .process_cnt ul li:last-child {
    margin: 0;
}
.cc_process_sec .process_cnt_wrap .process_cnt ul li strong {
    color: #0F3687;
}

/*=== Recent Work Section Css ===*/

.cc_recentwork_sec {
    padding-bottom: 95px;
}
.cc_recentwork_sec .title_wrap {
    text-align: center;
}
.cc_recentwork_sec .rw_items {
    margin-bottom: 20px;
}
.cc_recentwork_sec .rw_items img {
    height: 335px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}
.cc_recentwork_sec .rw_title {
    padding: 0 20px;
    text-align: center;
}
.cc_recentwork_sec .rw_title h6 {
    font-size: 29px;
    line-height: 34px;
    margin: 0;
}
.cc_recentwork_sec .rw_title h6 a.rw_title_link:hover {
    color: #0F3687;
}
.cc_recentwork_sec .rw_title h6 a.rw_title_link {
    color: #555555;
}

/*=== Why Choose Us Section Css ===*/


.cc_wcu_sec{
	position: relative;
    padding-bottom: 30px;
}
.cc_wcu_sec:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 30px;
	width: 100%;
	background-image: url(../images/border-line.png);
	background-size: cover;
	background-position: center center;
}
.cc_wcu_sec .top_title {
    text-align: center;
    margin-bottom: 35px;
}
.cc_wcu_sec .top_title h2 {
    color: #0F3687;
}
.cc_wcu_sec .wcu_inner {
    padding-left: 350px;
	padding-bottom: 60px;
	background-color: #fff;
	position: relative;
}
.cc_wcu_sec .man_img {
    position: absolute;
    bottom: 0;
    left: -270px;
}
.wcu_inner .wcu_item .inn_wcu {
    display: flex;
    align-items: center;
}
.wcu_inner .wcu_item .inn_wcu .title {
    width: calc(50% - 65px);
}
.wcu_inner .wcu_item .inn_wcu .vs_icon {
    width: 130px;
    background: #F4F8FF;
    text-align: center;
    padding: 10px 10px;
}
.wcu_inner .wcu_item .inn_wcu .vs_icon.vs_icon_img {
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 60px 60px 0px 0px;
	padding-top: 7px;
}
.wcu_inner .wcu_item .inn_wcu_top .vs_icon.vs_icon_img span {
    background: #8DC63F;
    height: 115px;
    width: 115px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    font-weight: 700;
}
.wcu_inner .wcu_item .inn_wcu.inn_wcu_top {
    align-items: center;
}
.wcu_inner .wcu_item .inn_wcu.inn_wcu_top h4{
	margin: 0;
}
.wcu_inner .wcu_item .inn_wcu .title.tleft {
	text-align: right;
	padding-right: 25px;
}
.wcu_inner .wcu_item .inn_wcu .title.tright {
    padding-left: 25px;
}
.wcu_inner .wcu_item .inn_wcu .title p {
    font-size: 33px;
    line-height: 36px;
    color: #0F3687;
}
.wcu_inner .wcu_item .inn_wcu:last-child .vs_icon {
    border-radius: 0px 0px 60px 60px;
    padding-bottom: 30px;
}

/*=== Our Latest Work Section ===*/

.cclatestwork_sec {
    padding-top: 100px;
}
.cclatestwork_sec.cclatestwork_sec_dpadd {
    padding-top: 0;
}
.cclatestwork_sec .top_title {
    margin-bottom: 40px;
    text-align: center;
}
.cclatestwork_sec .top_title h3 {
    color: #0F3687;
}
.cclatestwork_sec .ourwork_gall {
    display: flex;
    flex-wrap: wrap;
}
.ourwork_gall .grid-sizer, 
.ourwork_gall .gall_item {
    width: 33.333333%;
}
/* .ourwork_gall .gall_item .gitem{
	border: 5px solid #fff;
} */

/*=== Testimonial Section Css ===*/

.cc_testimonail_sec {
    padding: 120px 0;
}
.review_slider .cc_items_wrap {
    padding-top: 50px;
    position: relative;
}
.review_slider .cc_items_wrap .cr_items {
    background: #8DC63F;
    color: #000;
    padding: 60px 30px 30px;
	border-radius: 8px;
	text-align: center;
}
.review_slider .owl-item:nth-child(odd) .cc_items_wrap .cr_items {
	background: #0F3687;
	color: #fff;
}
.review_slider .cc_items_wrap .author_img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.review_slider .cc_items_wrap .author_img img {
    height: 80px;
    width: 80px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}
.review_slider .cc_items_wrap h5 {
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 2px;
}
.review_slider .cc_items_wrap .post_title p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
}
.review_slider .cc_items_wrap .cr_des {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
}
.review_slider .cc_items_wrap .star_reviews {
    color: #FFD782;
    font-size: 20px;
}
.review_slider .cc_items_wrap .star_reviews i.fa-star{
	color: #FFD782;
}
.review_slider .cc_items_wrap .star_reviews i.fa-star-o{
	color: #fff;
}
.review_slider .cc_items_wrap .star_reviews i {
    margin: 0 5px;
}
.review_slider .owl-dot.active span {
    position: relative;
    background: #1195FF !important;
}
.review_slider .owl-dot.active span:before {
    content: "";
    height: 17px;
    width: 17px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #1195FF;
    border-radius: 100%;
}

/*=== Contact Stripe Css ===*/

.cc_contactstripe_sec {
    background: #8DC63F;
    text-align: center;
    padding: 40px 0;
}
.cc_contactstripe_sec p {
    font-size: 26px;
    line-height: 30px;
    color: #0F3687;
    font-weight: 700;
}
.cc_contactstripe_sec p a {
    color: #0F3687;
}
.cc_contactstripe_sec p a:hover {
    color: #fff;
}

/*=== Special Offer Section ===*/

.cc_specialoffer_sec {
    background: #0F3687;
    padding: 35px 0;
    text-align: center;
    color: #fff;
}
.cc_specialoffer_sec h3 {
    font-weight: 600;
    margin-bottom: 15px;
}
.cc_specialoffer_sec .cc_specialoffer_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc_specialoffer_sec .cc_specialoffer_wrap .offer_item {
    padding: 0 15px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
}
.cc_specialoffer_sec .cc_specialoffer_wrap .offer_item p span.icon {
    margin: 0 10px 0 0;
    position: relative;
    top: -2px;
}
.bookbtn.cntbookbtn {
    text-align: center;
}
.bookbtn.cntbookbtn a.bookbtn_link {
    display: inline-block;
}
/*
.process_cnt_wrap {
    padding-top: 50px;
}
*/
.conbtn.cntconbtn {padding-top: 35px;text-align: center;}
.recentwork_wrap {
    margin-bottom: 35px;
}