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



@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;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: #464646;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	line-height: 27px;
	position: relative;
}


/**
 * 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: #44D2F2; 
}

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

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background:#44D2F2;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #44D2F2;
  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;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}


h1 {
    font-size: 60px;
	line-height: 1.2;
	font-weight: 800;
}
h2 {
	font-size: 48px;
	line-height: 1.2;
}
h3 {
    font-size: 36px;
	line-height: 1.2;
}
h4 {
    font-size: 30px;
	line-height: 1.2;
}
h5 {
    font-size: 24px;
	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: 50px;
    padding-bottom: 50px;
}
.cmn_padd_top{
	padding-top: 50px;
	padding-bottom: 0;
}
.cmn_padd_bottom{
	padding-bottom: 50px;
	padding-top: 0;
}
a.cmn_btn {
	color: #000;
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	text-transform: uppercase;
    display: inline-block;
    padding: 15px 50px;
    position: relative;
	text-align: center;
	white-space: normal;
	overflow: hidden;
	z-index: 1;
	border-radius: 8px;
	background: #44D2F2;
}
a.cmn_btn.blue{
	background: #002E6A;
	color: #fff;
}
a.cmn_btn span{
	display: flex;
	align-items: center;
}
a.cmn_btn svg {
    height: 15px;
    width: 15px;
    margin-left: 10px;
}
a.cmn_btn:hover svg path {
    stroke: #fff;
}
a.cmn_btn:hover{
	background-color: #000;
	color: #fff;
}
a.cmn_btn:before,
a.cmn_btn:after {
    content: "";
    position: absolute;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: #000;
	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.cmn_btn_dark{
	background: #906F70;
	color: #fff;
	border-color: #906F70;
} 
a.cmn_btn.cmn_btn_dark:hover{
	background-color: #000;
	color: #fff;
}
a.cmn_btn.cmn_btn_dark:before,
a.cmn_btn.cmn_btn_dark:after {
    background-color: #000;
}

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;
}
.wc_btn {
    margin-top: 50px;
}
a.cmn_btn.border {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    border: 3px solid #44D2F2 !important;
    background: transparent;
    color: #fff;
}
a.cmn_btn.border svg path {
    stroke: #fff;
}


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

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

.custom_header {
    padding: 24px 0;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}
.custom_header .row {
    align-items: center;
}
.custom_header .connum {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.custom_header .connum p {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
	margin: 0;
    padding: 0 15px;
    border-right: 1px solid #fff;
}
.custom_header .connum p:last-child{
	border: 0 none;
	padding-right: 0;
}
.custom_header .connum p:last-child i{
	top: 0;
}
.custom_header .connum p a {
    color: #fff;
}
.custom_header .connum p a:hover {
    color: #44D2F2;
}
.custom_header .connum p i {
    position: relative;
    top: 3px;
}

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


.footer_map {
    position: relative;
    padding-bottom: 37%;
}
.footer_map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.site_mainfooter {
    background-size: cover;
    background-position: center center;
    position: relative;
	color: #fff;
}
.site_mainfooter:before {
    content: "";
    background: rgba(20, 33, 41, 0.90);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.site_mainfooter > div {
    position: relative;
    z-index: 1;
}
.footer_contact {
    padding: 75px 0;
}
.footer_copyright .copyright {
    padding: 40px 0;
    border-top: 1px solid #D8D8D8;
    text-align: center;
}
.footer_copyright .copyright p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}
.footitle {
    text-align: center;
}
.footitle h2 {
    color: #FFF;
    line-height: normal;
    display: inline-block;
    margin-bottom: 95px;
    padding-bottom: 15px;
    position: relative;
}
.footitle h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 160px;
    height: 2px;
    background: #44D2F2;
    transform: translateX(-50%);
}
.footer_contact .fcon_item {
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}
.footer_contact .fcon_item .fcon_icon {
    margin-bottom: 30px;
}
.footer_contact .fcon_item .fcon_txt p strong {
    color: #44D2F2;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.footer_contact .fcon_item .fcon_txt p a {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
}
.footer_contact .fcon_item .fcon_txt p a:hover{
	color: #44D2F2;
} 


/* ==========================================================================
   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: #c8c8c8 !important;
   opacity: 1; 
}
.form-control:-moz-placeholder { /* Firefox 18- */
   color: #c8c8c8 !important;
   opacity: 1;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
   color: #c8c8c8 !important;
   opacity: 1;
}
.form-control:-ms-input-placeholder { /* IE10 */
   color: #c8c8c8 !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;
    background-color: #FFF;
    border-radius: 0;
    width: auto;
    padding: 15px 40px 16px;
	font-style: normal;
	color: #F6A209;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
    white-space: normal;
	text-transform: uppercase;
    border: 0 none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
	display: inline-block;
	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: #000;
    color: #fff;
}

.alm-btn-wrap button.blogload_more:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {
    background: #000;
    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;
}


/*=== Home Page Css ===*/

.ct_threewrap{
	position: relative;
	background-image: url(../images/bgss.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.ct_threewrap > div{
	position: relative;
	z-index: 1;
}
.banner_sec {
    padding-top: 165px;
    position: relative;
    padding-bottom: 60px;
}
.ct_threewrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 500px;
    width: 100%;
    background: #002E6A;
}
.ct_threewrap:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    min-height: 900px;
    width: 100%;
	background: #142129;
}
.banner_inner {
    background: #fff;
}
.banner_sec > .container {
    position: relative;
}
.banner_inner .bann_right {
    padding: 35px 100px 20px 35px;
}
.banner_inner .bann_right .bann_formtop_text p {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
	margin-bottom: 10px;
}
.bann_sliderwrap {
    position: relative;
}
.bann_sliderwrap .bannslider_item {
    height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center center;
}
.banner_inner .bann_right .bluebann_text {
    background: #002E6A;
    padding: 10px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 15px;
	animation: colorChange 2s infinite alternate;
}
@keyframes colorChange {
	0% { background-color: #002E6A; }
	100% { background-color: #44D2F2; }
}
.banner_inner .bann_right .hnormaltxt {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 30px;
    font-size: 18px;
}
.banner_inner .bann_right .banner_form {
    background: #44D2F2;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.42);
    padding: 40px 20px;
}
.banner_inner .bann_right .banner_form .form_title h2 {
    color: #243891;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}
.banner_inner .bann_right .banner_form .main_form .form_grp .form-control {
    padding: 15px;
    background: #FFF;
    border: 0 none;
    color: #6B6B6B;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    border-radius: 0px;
}
.banner_inner .bann_right .banner_form .main_form .form_grp textarea.form-control {
    height: 190px;
}
.banner_inner .bann_right .banner_form .main_form  .btn_grp {
    text-align: center;
    position: relative;
}
.banner_inner .bann_right .banner_form .main_form .btn_grp input.form_btn {
    border-radius: 8px;
    background: #002E6A;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    padding: 15px 40px;
    text-transform: none;
}
.banner_inner .bann_right .banner_form .main_form .btn_grp input.form_btn:hover {
    background: #000;
}
.banner_inner .bann_right .banner_form .main_form .btn_grp span.wpcf7-spinner {
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.bann_sliderwrap .banner_nav_wrap {
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bann_sliderwrap .banner_nav_wrap a.banner_nav {
    background: #002E6A;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bann_sliderwrap .banner_nav_wrap a.banner_nav svg {
    fill: #fff;
}
.bann_sliderwrap .banner_nav_wrap a.banner_nav:hover {
    background: #44D2F2;
}
.bann_left .banner_cnt {
    padding: 30px 0 0;
}
.bann_left .banner_cnt h1 {
    color: #000;
    font-weight: 700;
    line-height: normal;
    font-size:32px;
}
.bann_left .banner_cnt h3 {
    color: #243891;
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.bann_left .banner_cnt .banndes p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}
.bann_left .bann_spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
	padding: 30px 0;
}
.bann_left .bann_spec .bs_item {
    width: 33.333%;
    display: flex;
    align-items: center;
    padding-right: 10px;
}
.bann_left .bann_spec .bs_item .bicon {
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #002E6A;
    margin-right: 10px;
}
.bann_left .bann_spec .bs_item .btext p {
    color: #243891;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

/*=== Other Specification Section ===*/

.ct_otherspec_sec {
    padding: 90px 0;
}
.ct_otherspec_sec .ospec_item .ospec_icon {
    margin-bottom: 5px;
}
.ct_otherspec_sec .ospec_item .ospec_title {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}
.ct_otherspec_sec .ospec_item .ospec_title span.num {
    position: absolute;
    left: 0;
    top: 5px;
    height: 30px;
    width: 30px;
    background: #44D2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 27px;
}
.ct_otherspec_sec .ospec_item .ospec_title h6 {
    color: #002E6A;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.ct_otherspec_sec .ospec_item .ospec_cnt p {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.ospec_item {
    text-align: center;
}

/*=== Top Movers Section ===*/


.ct_topmovers_sec .tm_left .tm_title h6 {
    color: #343434;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 0 5px;
    position: relative;
    margin: 0 0 10px;
}
.ct_topmovers_sec .tm_left .tm_title h6:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #44D2F2;
}
.ct_topmovers_sec .tm_left .tm_title h2 {
    color: #000;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 45px;
}
.listimg img {
    max-height: 210px;
    width: 100%;
    object-fit: contain;
}

.tm_img img {
    max-height: 100%;
    height: 570px;
    object-fit: cover;
}
.ct_topmovers_sec .tm_left .tm_title h2 strong {
    display: block;
}
.ct_topmovers_sec .rmright_cnt {
    padding-left: 20px;
}
.ct_topmovers_sec .rmright_cnt .tmdes p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 30px;
}
.ct_topmovers_sec .rmright_cnt .tm_listimg {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.ct_topmovers_sec .rmright_cnt .tm_listimg > div {
    width: 50%;
	padding-right: 10px;
}
.ct_topmovers_sec .rmright_cnt .tm_listimg ul {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}
.ct_topmovers_sec .rmright_cnt .tm_listimg ul li {
    padding-left: 45px;
    position: relative;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
	margin-bottom: 20px;
	margin-top: 5px;
}
.ct_topmovers_sec .rmright_cnt .tm_listimg ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: -3px;
    height: 28px;
    width: 28px;
	background-image: url(../images/dots.png);
	background-size: cover;
}
.ct_topmovers_sec .rmright_cnt .ct_ourmission_vision {
    display: flex;
    flex-wrap: wrap;
    padding-top: 70px;
}
.ct_topmovers_sec .rmright_cnt .ct_ourmission_vision .mission_vision {
    width: 50%;
    padding-right: 20px;
}
.ct_topmovers_sec .rmright_cnt .ct_ourmission_vision .mission_vision h6 {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}
.ct_topmovers_sec .rmright_cnt .ct_ourmission_vision .mission_vision h6:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 3px;
    background: #44D2F2;
}
.ct_topmovers_sec .rmright_cnt .ct_ourmission_vision p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

/*=== Faq Section ===*/

.ct_faq_sec .top_title {
    text-align: center;
    margin-bottom: 75px;
}
.ct_faq_sec .top_title h2 {
    color: #000;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.ct_faq_sec .top_title h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 3px;
    transform: translateX(-50%);
    background: #44D2F2;
}
.ct_faq_sec {
    padding: 75px 0;
	background-image: url(../images/faq-bg.png);
	background-size: cover;
	background-position: center center;
}
.loc_faqsec .faq_toptitle {
	text-align: center;
	margin-bottom: 35px;
}
.ct_accordion_wrap .ct_accitem {
	margin-bottom: 15px;
	border: 1px solid #D9D9D9;
}
.ct_accordion_wrap .ct_accitem .ct_acctitle {
	padding: 15px 80px 15px 15px;
	cursor: pointer;
	position: relative;
	background: #transparent;
}
.ct_accordion_wrap .ct_accitem .ct_acctitle .icon {
	position: absolute;
	top: 4px;
	right: 15px;
}
.ct_accordion_wrap .ct_accitem .ct_acctitle .icon span.plus {
	transition: all 0.5s ease-in-out;
	opacity: 1;
	position: relative;
	top: 10px;
}
.ct_accordion_wrap .ct_accitem .ct_acctitle .icon span.minus {
	position: absolute;
	right: -3px;
	top: 8px;
	transition: all 0.5s ease-in-out;
	opacity: 0;
}
.ct_accordion_wrap .ct_accitem.item_active .ct_acctitle .icon span.minus {
	opacity: initial;
}
.ct_accordion_wrap .ct_accitem.item_active .ct_acctitle .icon span.plus {
	opacity: 0;
}
.ct_accordion_wrap .ct_accitem .ct_acctitle h5 {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 27px;
	margin: 0;
}
.ct_accordion_wrap .ct_accitem.item_active .ct_acctitle{
	background: #F5F5F5;
	border-bottom: 1px solid #D9D9D9;
}
.ct_accordion_wrap .ct_accitem.item_active .ct_acctitle h5 {
	color: #000;
}
.ct_accordion_wrap .ct_accitem .ct_acccnt {
	padding: 15px 20px;
	background: #F5F5F5;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 27px;
	display: none;
} 


/*=== Gallery Section Css ===*/

.ct_gallery_sec {
    background: #44d2f263;
    padding: 75px 0;
}

.ct_gallery_sec .top_title {
    margin-bottom: 75px;
    text-align: center;
}
.ct_gallery_sec .top_title h6 {
    color: #343434;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 10px;
    position: relative;
}
.ct_gallery_sec .top_title h6:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 170px;
    height: 3px;
    transform: translateX(-50%);
    background: #44D2F2;
}
.ct_gallery_sec .top_title h2 {
    color: #000;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.ct_gallery_sec .gall_img {
    height: 325px;
    overflow: hidden;
    margin-bottom: 25px;
}
.ct_gallery_sec .gall_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
}
.ct_gallery_sec .gall_img:hover img {
    transform: scale(1.2);
}
.ct_fullwidthimg_sec img.img-fluid {
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/*=== Services Section Css ===*/


.ctserrev_sec{
	background-image: url(../images/ff.png);
	background-size: cover;
	background-position: center center;
	padding-bottom: 50px;
}
.ct_service_sec {
    padding: 75px 0;
}
.ct_service_sec .top_title {
    margin-bottom: 50px;
}
.ct_service_sec .top_title h6 {
    color: #343434;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}
.ct_service_sec .top_title h6:after{
	content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #44D2F2;
}
.ct_service_sec .top_title h2 {
    color: #000;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.ct_review_sec .rev_limg {
    position: relative;
}
.ct_review_sec .rev_limg img.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.ct_review_sec .rev_limg .exp_cnt {
    background: #002E6A;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 40px;
    max-width: 200px;
}
.ct_review_sec .rev_limg .exp_cnt p {
    color: #FFF;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    line-height: normal;
}
.ct_review_sec .rev_limg .exp_cnt strong {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}
.rev_rightcnt {
    padding: 70px 50px;
}
.rev_rightcnt .title_googlelogo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.rev_rightcnt .title_googlelogo .title_wrap {
    width: calc(100% - 150px);
    padding-right: 15px;
}
.rev_rightcnt .title_googlelogo .google_logo {
    width: 150px;
}
.rev_rightcnt .title_googlelogo .title_wrap h6 {
    color: #343434;
    font-size: 19px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}
.rev_rightcnt .title_googlelogo .title_wrap h2 {
    color: #000;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.rev_rightcnt .title_googlelogo .title_wrap h2 strong {
    display: block;
}

.rev_rightcnt .review_slderwrap .revslider_item .rating_txt {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.rev_rightcnt .review_slderwrap .revslider_item .rating_txt .rating {
    color: #44D2F2;
    font-size: 30px;
    margin-right: 20px;
}
.rev_rightcnt .review_slderwrap .revslider_item .rating_txt .txt {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 27px;
}
.rev_rightcnt .review_slderwrap .revslider_item .rev_des {
    margin-bottom: 60px;
}
.rev_rightcnt .review_slderwrap .revslider_item .rev_des p {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.rev_rightcnt .review_slderwrap .revslider_item .rev_title {
    padding-right: 100px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.rev_rightcnt .review_slderwrap .revslider_item .rev_title .firsttxt {
    display: flex;
    width: 45px;
    height: 45px;
    padding: 9px 16px;
    border-radius: 100%;
    background: #002E6A;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-right: 15px;
}
.rev_rightcnt .review_slderwrap .revslider_item .rev_title h5.title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    margin: 0;
}
.rev_rightcnt .review_slderwrap .revslider_item .rev_title p.date {
    color: #696969;
    font-size: 14px;
    font-style: normal;
    line-height: 27px;
}
.rev_rightcnt .trustedby {
    padding: 25px 0 0;
}
.rev_rightcnt .trustedby h6 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 20px;
}
.rev_rightcnt .trustedby .trlogos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.rev_rightcnt .trustedby .trlogos .logoitem {
    width: 20%;
    padding-right: 10px;
}
.service_item {
    padding: 20px;
    background: #002E6A;
	min-height: 610px;
}
.service_item .ser_img {
    border: 2px solid #FFF;
    height: 230px;
    overflow: hidden;
    margin-bottom: 20px;
}
.service_item .ser_img img {
    transition: all 0.5s;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
}
.service_item:hover .ser_img img {
    transform: scale(1.2);
}
.service_item .ser_cnt h6 {
    color: #44D2F2;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 20px;
}
.service_item .ser_cnt p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}
.ct_service_sec .service_slider_wrapper {
    position: relative;
    padding: 0 30px;
}
.ct_service_sec .service_slider_wrapper a.ser_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.ct_service_sec .service_slider_wrapper a.ser_nav.prev {
    left: -10px;
}
.ct_service_sec .service_slider_wrapper  a.ser_nav.next {
    right: -10px;
}
.ct_service_sec .service_slider_wrapper a.ser_nav svg{
	fill: #44D2F2;
}
.serbtn_wrapper {
    text-align: center;
    padding-top: 35px;
}

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

.ct_specification_sec {
    background: #002E6A;
    padding: 50px 0;
    color: #fff;
}
.ct_specification_sec .specitem {
    display: flex;
    align-items: center;
}
.ct_specification_sec .specitem .sicon {
    margin-right: 15px;
}
.ct_specification_sec .specitem .stxt .num {
    color: #FFF;
    font-family: Montserrat;
    font-size: 44px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}
.ct_specification_sec .specitem .stxt .sptxt {
    color: #44D2F2;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


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

.ct_wcu_sec {
    padding: 50px 0;
}
.ct_wcu_sec .tm_title {
    margin-bottom: 50px;
}
.ct_wcu_sec .tm_title h6 {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
	display: inline-block;
}
.ct_wcu_sec .tm_title h6:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #44D2F2;
}
.ct_wcu_sec .tm_title h2 {
    color: #FFF;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.ct_wcu_sec .tm_title h2 strong {
    display: block;
}
.wcu_itemwrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wcu_itemwrap .wcu_item {
    width: 50%;
    padding: 0 10px 20px 0;
    display: flex;
    align-items: center;
}
.wcu_itemwrap .wcu_item .icbox {
    height: 50px;
    width: 50px;
    background: #44D2F2;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wcu_itemwrap .wcu_item .icbox svg.e-font-icon-svg {
    fill: #fff;
    height: 20px !important;
    width: 20px !important;
}
.wcu_itemwrap .wcu_item .title {
	width: calc(100% - 50px);
	padding-left: 10px;
}
.wcu_itemwrap .wcu_item .title h6 {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    margin: 0;
    font-weight: 700;
}
.bann_left.thankyoubann {
    padding: 20px;
    text-align: center;
}
.bann_left.thankyoubann .bann_btn {
    padding: 30px 0 20px;
}