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





   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 {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #234982; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}
/* Website background color and default font styles */
body {
    background: #fff;
    color: #000000;
    font-family: 'TMSans', serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    overflow-x: hidden;
}

/**

 * Page Center

 *

 * Apply .page-center to full-width modules.

 */
.container {
    float: none;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

a {
    text-decoration: none;
    outline: none;
    color: #000000;
    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: #1bbbdd;
}

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

.logo_wrap img {
    max-width: 150px;
}

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

::selection {
    color: #fff;
    background: #3399ff;
    text-shadow: none;
}

/* Corrects width issues in table elements created via the wysiwyg editor */
table tr td img {
    ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ max-width: initial;
}

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

   Typography

   ========================================================================== */
/* Basic text */
p {
}

small {
}

strong {
}

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 10px;
    line-height: 1.5;
    font-weight: 700;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
}

h1 {
    font-size: 44px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 21px;
}

/* Lists */
ul, ol {
    margin: 0px;
    padding: 0px;
}

ul ul, ul ol, ol ol, ol ul {
}

li {
    list-style: none;
}

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 {
}

.padding_tb {
    padding-top: 60px;
    padding-bottom: 60px;
}

.no_padding {
    padding: 0;
}

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

   Header

   ========================================================================== */
/*===== Header Css =====*/
header.header {
    position: relative;
    width: 100%;
    background-color: #ffffff;
}

a.navbar-brand {
    height: auto;
    padding: 0 ;
    float: none;
}

.logo_wrap {
    /*  margin-top: 20px;*/
}

.header_col.header_col1 {
    vertical-align: top;
}
header.header .row {
    align-items: center;
    display: flex;
}
.header_col.header_col2 {
    position: relative;
    text-align: right;
    vertical-align: top;
}

.header_col.header_col2 .con_number {
    display: inline-block;
    margin: 0px 0px 0px 25px;
}
.header_col.header_col2 .con_number img{
    width: 35px;
}
.header_col.header_col2 .con_number a {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Avenir Next LT Pro';
}
.con_number img {
    margin-top: -5px;
    margin-right: 10px;
}
.col-md-8.col-sm-8.col-xs-12.header_col.header_col2 i {
    font-size: 22px;
    padding-right: 10px;
}
.header_col.header_col2 .con_number a {
    color: #234982;
    line-height: 20px;
}

.header_col.header_col2 .con_number a:hover {
    color:#000;
}

.flex-container {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    height: 100%;
}

.ct_bann_col.ct_bann_col1 {
    align-items: center;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
}

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

   Content                                                 

   ========================================================================== */
/*===== Banner Css =====*/
.banner_sec {
    position: relative;
    background-color: #fff;
    overflow-x: hidden;
}

.banner_main {
    height: auto;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-color: #23478a;
}

.banner_main .container {
    height: 100%;
}

.banner_inn {
    position: relative;
    z-index: 15;
}
.right-content h4 {
    font-size: 20px;
}
.moretext {
  display: none;
}

.banner_main.desktop-banner:before{
    content:"";
    top:0px;
    left:0px;
    position:absolute;
    height:100%;
    width:100%;
    background-color: rgb(35 32 31 / 0.6);
}
.banner_cnt h1 {
    font-family: 'Avenir Next LT Pro';
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #234982;
    font-size: 40px;
}
.banner_cnt h3 {
    color: #234982;
    margin: 20px 0px 20px;
    font-size: 24px;
    line-height: 30px;
	text-align:left;
}
.banner_cnt p.offer-txt {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    border: 1px dashed #234982;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    line-height: normal;
}

.banner_cnt ul>li {
    color: #234982;
    margin: 10px 0;
    list-style: disc;
    font-size: 18px;
}

.banner_cnt ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.banner_cnt h1 strong {
    font-family: 'TMSans-SemiBold';
    font-weight: 600;
}
.banner_cnt {
        background-color: rgba(255, 255, 255, 1);
    padding: 30px 50px 30px 30px;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.banner_cnt p {
    line-height: 1.1;
    color: #234982;
    margin-bottom: 40px;
    font-weight: normal;
    font-weight: 700;
    font-size: 30px;
    padding-right: 30%;
}

.banner_top_cnt > .container {
    position: relative;
}
div#banner_sec {
    margin:30px 0px;
}
.bann_form {
    background-color: #234982;
    border: 2px solid #ffffff;
    padding: 30px 32px 10px;
    position: relative;
    max-width: 370px;
    width: 100%;
    display: inline-block;
    float: right;
    border-radius: 12px;
}

.bann_form .form_top_cnt h2 {
    line-height: 1.2;
    margin: 0px 0px 3px;
    text-transform: uppercase;
    font-family: 'Avenir Next LT Pro';
    font-weight: bold;
    font-size: 23px;
    color: #fff;
}

.bann_form .form_top_cnt p {
    line-height: 16px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Avenir Next LT Pro';
    font-weight: normal;
}

.bann_form .form-control {
    background: #fff;
    height: 45px;
    border-radius: 0;
    border: 1px solid #948f8b;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 32px;
    padding: 0px 12px;
    color: #000000;
    outline: none;
    font-family: 'Avenir Next LT Pro';
    font-weight: 600;
    box-shadow: inset -1px 2px 4px #948f8b;
}

.bann_form textarea {
    height: 88px !important;
    overflow: hidden;
}

.bann_form input#pname {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -moz-appearance: textfield;
}

.bann_form input[type=number]::-webkit-inner-spin-button, .bann_form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.bann_form select.form-control, .bann_form #datepicker {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    background: #fff url(images/arrow-bottom.png) no-repeat 96% center;
    color: #000000;
}

.bann_form select.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000000;
}

.bann_form select.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #000000;
}

.bann_form select.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #000000;
}

.bann_form select.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #000000;
}

.bann_form .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000000;
}

.bann_form .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #000000;
}

.bann_form .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #000000;
}

.bann_form .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #000000;
}

.bann_form .form_field {
    position: relative;
}

.bann_form .form_field label.error {
    font-weight: 600;
    color: #000;
    font-size: 11px;
    position: absolute;
    bottom: -16px;
    margin: 0px 0 0;
}

.bann_form .button-submit {
    text-align: center;
    margin-top: 14px;
}

.bann_form .form-btn {
    background-color: #000;
    display: block;
    border: 2px solid #ffffff;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    font-family: 'Avenir Next LT Pro';
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 30px 12px;
    white-space: normal;
    text-align: center;
    outline: none;
    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;
}

.bann_form .form-btn:hover {
    background-color: #241F20;
    border-color: #241F20;
    color: #ffffff;
}

.form_field br {
    display: none;
}

.bann_form label {
    margin-top: 15px;
    font-size: 16px;
    color: #fff;
    display: block;
    margin-bottom: 3px;
    font-family: 'Avenir Next LT Pro';
    font-weight: 600;
}

/*===== Why choose us Section Css =====*/
.why_section ul {
    text-align: center;
    z-index: 9;
    position: relative;
}

.why_section ul li {
    /* float: left; */
    margin: 0px;
    width: 25%;
    padding: 30px 15px;
	display: flex;
    flex-wrap: wrap;
}

/* li.w_list:nth-child(1) {
    background-color: #000000;
}

li.w_list:nth-child(2) {
    background-color: #000000;
}

li.w_list:nth-child(3) {
    background-color: #000000;
}

li.w_list:nth-child(4) {
    background-color: #000000;
} */

li.w_list p {
    font-size: 20px;
    line-height: 24px;
    font-family: 'Avenir Next LT Pro';
    font-weight: 600;
    color: #fff;
    width: 100%;
    margin: 0px;
    padding: 13px 0px;
    text-align: center;
	
}

/*===== Services Section Css =====*/
.top_cnt {
    text-align: center;
    margin: 0 0 35px;
}

.top_cnt h6 {
    font-size: 20px;
    font-weight: 400;
}

.top_cnt p {
    margin: 0;
    font-size: 20px;
    line-height: 21px;
    color: #000000;
}

.services_sec {
    background-color: #fff;
    padding-bottom: 80px;
}

.service_items {
    height: 372px;
    margin: 0px 10px;
    cursor: pointer;
    padding: 0px;
}

.item_img {
    height: 100%;
}

.service_content {
    text-align: center;
}

.inner_service_content {
    width: 100%;
}

.service_content h4 {
    font-size: 30px;
    font-family: 'Avenir Next LT Pro';
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    line-height: 35px;
    text-align: center;
    display: block;
}

.service_content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    padding: 0px 10px;
    z-index: 9;
}
a.moreless-button {
    color: #234982;
    font-weight: 700;
    display: inline-block;
    margin-top: 0;
    position: relative;
    top: -10px;
}
.item_img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    z-index: 9;
}

.service_items:hover .service_content {
    background: #0b4a74b0;
}
.right-content img {
    width: 100% !important;
}

.about-section ul li {
    list-style: disc !important;
}
.services_sec .slick-prev,.services_sec .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 0px;
    bottom: 0px;
    display: block;
    width: 20px;
    height: 35px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: red;
    border: none;
    outline: none;
    background: transparent;
    z-index: 5;
    margin: auto 0px;
}

.slick-prev:before, .slick-next:before {
    display: none;
}

.services_sec .slick-prev {
    left: -8%;
    background-image: url('images/s_prev.png');
}

.services_sec .slick-next {
    right: -8%;
    background-image: url('images/s_next.png');
}

.services_sec .slick-prev:hover {
    background-image: url('images/s_prev_h.png');
}

.services_sec .slick-next:hover {
    background-image: url('images/s_next_h.png');
}

/*=== CTA Bar Css ===*/
.container-fluid.cta_section {
    background-image: initial!important;
    background: #234982;
    padding: 30px 20px;
    background-size: cover;
    background-position: center center;
    text-align: center;
    letter-spacing: .04em;
}

.cta_section h2 {
    color: #fff;
    font-family: 'Avenir Next LT Pro';
    font-weight: normal;
    font-style: italic;
}

.cta_section span {
    font-weight: 600;
    color: #fff;
    font-style: normal;
    display: inline-block;
    margin-left: 6px;
}

.cta_section span a {
    font-weight: bold;
    color: #fff;
}

.cta_section span a:hover {
    color: #fff;
    text-decoration: underline;
}

/*=== Contact Bar Css ===*/
.custom_contact_sec {
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.custom_contact_sec:before {
    content: "";
    background-color: rgba(0,0,0,.9);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.custom_contact_sec > .container {
    position: relative;
    z-index: 1;
}

.custom_contact_sec h4 {
    text-transform: uppercase;
    margin: 0 0 20px;
}

.custom_contact_sec p {
    font-size: 21px;
    line-height: 27px;
    margin: 0 0 0px;
}

.custom_contact_sec a.con_btn_c {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 18px 35px;
    line-height: 1;
    text-align: center;
    white-space: normal;
    text-transform: uppercase;
    margin-top: 25px;
    font-size: 30px;
    font-family: 'TMSans-SemiBold';
    font-weight: 600;
}

.custom_contact_sec a.con_btn_c:hover {
    background-color: #1bbbdd;
}

/*=== Portfolio Section Css ===*/
.top_cnt h3 {
    color: #234982;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 10px;
    font-family: 'Avenir Next LT Pro';
    font-weight: 700;
}

.top_cnt h3 span {
    display: inline-block;
    padding-right: 6px;
}

/*==== Testimonial Css ====*/
.testimonial_sec {
    overflow: hidden;
    background-position: center center;
    padding: 50px 0px 60px;
    background-size: cover;
}

.testimonial_sec h4 {
    color: #234982;
    font-weight: 600;
    font-family: 'Avenir Next LT Pro';
    position: relative;
    text-align:center;
    padding-bottom:5px;
    margin-bottom:20px;
}
.testimonial_sec h3{
    color: #234982;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 10px;
    font-family: 'Avenir Next LT Pro';
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
}
.testimonial_sec h4:after {
    content: "";
    width: 100px;
    height: 3px;
    background: #234982;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right:0px;
    margin:0px auto;
    border-radius: 10px;
}

.testimonial_carousel p {
    color: #000;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    font-family: 'Avenir Next LT Pro';
    height: 215px;
    overflow-y: auto;
}

.testimonial_carousel h6 {
    font-family: 'Avenir Next LT Pro';
    font-weight: 600;
    color: #234982;
    font-size: 21px;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.testimonial_carousel h6 span {
    font-weight: normal;
    color: #234982;
}

.testimonial_carousel .owl-dots {
    text-align: center;
    margin: 53px 0 0px;
    padding-left: 0;
}

.testimonial_carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    opacity: 1;
    margin: 0 7px;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.testimonial_carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1; }

.testimonial_carousel .owl-dots .owl-dot span {
    opacity: 1;
    background: #171717;
}

.testimonial_carousel .owl-dots .owl-dot.active span, .testimonial_carousel .owl-dots .owl-dot:hover span {
    background: #234982;
    opacity: 1;
}

/*=== Four Boxes Css ===*/
.inner_four_box {
    border-top: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    box-shadow: 0px 0px 15px rgba(0,0,0,.05);
    position: relative;
    padding-left: 195px;
    padding-right: 195px;
}

.inner_four_box .fb_container {
    padding-left: 0;
    padding-right: 0;
}

.inner_four_box .left_image {
    width: 193px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-right: 2px solid #ffffff;
    background-size: cover;
    background-position: center center;
}

.inner_four_box .right_image {
    width: 193px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-left: 2px solid #ffffff;
    background-size: cover;
    background-position: center center;
}

.inner_four_box .fb_box_cnt {
    background: #1bbbdd;
    border-right: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    padding: 35px 10px;
    text-align: center;
    font-size: 24px;
    color: #ffffff;
    font-family: 'TMSans-SemiBold';
    font-weight: 600;
}

.inner_four_box .fb_box_cnt span {
    padding-left: 38px;
    display: inline-block;
    position: relative;
}

.inner_four_box .fb_box_cnt span:before {
    background-image: url(images/check-icon.png);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 25px;
    width: 25px;
    content: "";
}

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

   Footer

   ========================================================================== */
/*=== Custom Contact Bar ===*/
.ct_contact_bar {
    padding: 20px 0px 25px;
    background-color: #000000;
    background-size: cover;
}

.ct_contact_bar h3 {
    font-family: 'Avenir Next LT Pro';
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    padding-bottom: 5px;
}

.ct_contact_bar h3 span {
    font-weight: bold;
}

.ct_contact_bar a {
    color: #000;
}

.ct_contact_bar a:hover {
    color: #23478b;
}

.ct_contact_bar ul {
    text-align: center;
}
.ct_contact_bar ul span{
    font-size: 24px;
}
.ct_contact_bar ul li {
    display: inline-block;
    margin: 0px 1%;
    font-family: 'Avenir Next LT Pro';
}

.footerdata a {
    display: inline-block;
    cursor: pointer;
}

.quote_btn a {
    cursor: pointer;
    padding: 10px 20px!important;
    background: #234982;
    text-align: center;
    font-size: 21px;
    font-weight: 400;
    padding: 0px 20px;
    line-height: 43px;
    color: #fff !important;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #234982;
}
.footerimg img {
    margin: 0 auto;
}
.row.holo {
    padding: 30px 0px;
}
.footerdata {
    padding-top: 30px;
    text-align: center;
}
.footerdata a {
    border: 2px solid #234982;
    background: #234982;
    text-align: center;
    font-size: 21px;
    font-weight: 400;
    padding: 0px 20px;
    line-height: 43px;
    color: #fff;
    border-radius: 5px;
}

.footerdata img {
    margin-right: 8px;
    margin-top: -5px;
}

.quote_btn a:hover {
    background: #241F20;
    color: #fff!important;
    border: 2px solid #234982;
}

li.email a:hover {
    background: #231f20;
    border: 2px solid #234982;
    color: #fff;
}

/*==== Footer Bottom Css ====*/
.footer_main {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 0;
}

.footer_main .ct_copyright p ,.ct_developed_by p {
    margin: 0;
    line-height: 24px;
    font-family: 'Avenir Next LT Pro';
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.footer_main a {
    color: #000;
}

.footer_main_col.footer_main_col2 {
    text-align: right;
}

.ct_developed_by p a {
    position: relative;
    top: -1px;
    margin-left: 0px;
}

.ct_developed_by p a img {
    max-width: 110px;
}

/*=== Thanks Page Css ===*/
body.thank_youpage .banner_sec {
    padding: 50px 0;
}

body.thank_youpage .banner_www .banner_col.banner_col1 .banner_cnt {
    padding: 40px 0 40px 0;
    display: block;
}

body.page_thankyou div#banner_sec {
    top: 120px;
}

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

   Forms

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

   ========================================================================== */
/* Labels */
body label {
}

/* 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%;
    height: 35px;
}

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 {
}

/* 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"] {
}

/* Required */
body input:focus:required:invalid, body textarea:focus:required:invalid, body select:focus:required:invalid {
}

body input:focus:required:invalid:focus, body textarea:focus:required:invalid:focus, body select:focus:required:invalid:focus {
}

/* Placeholder Text */
::-webkit-input-placeholder {
    /* Webkit Browsers */
    /* color: #555;

   opacity: 1; */
}

:-moz-placeholder {
    /* Firefox 18- */
    /* color: #555;

   opacity: 1; */
}

::-moz-placeholder {
    /* Firefox 19+ */
    /* color: #555;

   opacity: 1; */
}

:-ms-input-placeholder {
    /* IE10 */
    /* color: #555;

   opacity: 1; */
}

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

   Buttons                                              

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

   ========================================================================== */
body input[type="submit"], body input[type="button"] {
    cursor: pointer;
    -webkit-appearance: none;
    text-decoration: none !important;
}

body input[type="submit"]:hover, body input[type="button"]:hover {
}

body input[type="submit"]:focus, body input[type="button"]:focus {
}

.offer-text {
    margin-top: 50px;
    font-size: 26px;
    font-weight: 700;
    max-width: 500px;
    line-height: 1.2;
    color: #fff;
}

.offer-text span {
    color: red;
    font-size: 40px;
}

.bann_form .form-control {
    height: 35px;
}

.selectBox {
    position: relative;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checkboxes label {
    display: block;
    background: #EFEFEF;
    border-bottom: 1px solid #fff;
    margin-bottom: 0px;
    font-weight: normal;
    font-size: 14px;
    padding-left: 15px;
}

.form select {
    height: 38px;
}

.SumoSelect.sumo_selectservice {
    width: 100%;
    display: block;
}

.form_field.ct_msele .SumoSelect {
    width: 100% !important;
    display: block !important;
}

/* .bann_form .SumoSelect.sumo_selectservice select.form-control {

    background: #fff;

    height: 45px;

    border-radius: 0;

    border: 1px solid #d28e18;

    margin: 0 0 15px;

    font-size: 16px;

    line-height: 32px;

    padding: 5px 12px;

    color: #000000;

    box-shadow: none;

    outline: none;

    font-weight: 400;

    text-transform: uppercase;

}

 */
.form_field.ct_msele .SumoSelect > .CaptionCont {
    border: none;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    background: #fff url(images/arrow-bottom.png) no-repeat right 12px top 12px;
    color: #000000;
    padding: 2px 12px;
    width: 100% !important;
    display: block !important;
    height: 38px;
    box-shadow: none;
    outline: none;
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #1bbbdd;
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 32px;
}

.form_field.ct_msele .SumoSelect > .CaptionCont i {
    display: none !important;
}

.SumoSelect.sumo_selectservice p.CaptionCont.SelectBox label {
    display: none;
}

.form_field.ct_msele .SumoSelect > .CaptionCont span.placeholder, .SumoSelect.sumo_selectservice > .CaptionCont > span.placeholder {
    font-size: 14px !important;
    color: #000 !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

/****************** About section *************/
.about-section {
    background-color: #fff;
    min-height: 405px;
    position: relative;
    padding-bottom: 60px;
}

.about-bg {
    background-size: cover;
    background-position: right;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9;
    width: 50%;
}

.right-content ul {
    padding-left: 25px;
    margin-bottom: 35px;
}

.about-section ul li {
    position: relative;
    list-style: none;
    margin-bottom: 15px;
}

.about-section ul li:before {
    content: "";
    position: absolute;
    background-image: url('images/tick-icon.png');
    width: 17px;
    height: 14px;
    left: -25px;
}

.common-btn {
    background-color: #234982;
    color: #fff;
    padding: 23px 25px 21px;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 0;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.02em;
    font-family: 'Avenir Next LT Pro';
    border: 2px solid #234982;
    border-radius: 5px;
}

.thankyou .common-btn{
    padding: 15px 25px;
}

.common-btn:hover {
    background: #241F20;
    border: 2px solid #241F20;
    color: #ffffff;
}

.right-content {
    padding-left: 15px;
}

.right-content p {
    margin-bottom: 18px;
    line-height: 22px;
    color: #292929;
    font-family: 'Avenir Next LT Pro';
    font-weight: normal;
}
.right-content .quote-box {
    border-left: 2px solid #234982;
    padding-left: 40px;
    padding-bottom: 15px;
    position: relative;
    padding-top: 15px;
    margin-top: 10px;
    color: rgb(41 41 41 / 0.75);
    font-weight: normal;
    margin-bottom: 18px;
    line-height: 22px;
}
.right-content .quote-box>img {
    position: absolute;
    top: 10px;
    left: 12px;
}
.sub-heading {
    font-size: 18px;
    font-family: 'Avenir Next LT Pro';
    font-weight: 600;
    color: #000;
    line-height: 25px;
}

.recent-works-images span.service-name {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 99;
    letter-spacing: 0.05em;
}

.recent-works-images .service-name {
    opacity: 0;
    transition: 0.5s linear;
    -moz-transition: 0.5s linear;
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    -ms-transition: 0.5s linear;
}

.gl-clm a:hover .recent-works-images .service-name {
    opacity: 1;
}

.star-rating {
    margin-bottom: 20px;
}

.star-rating img {
    width: auto !important;
    display: inline-block !important;
}

a.common-btn:focus {
    color: #ffffff;
}

label#nbed-error {
}

label#nbed-error ~ p {
    margin-bottom: 35px;
}

.thank-you .ct_bann_col.ct_bann_col1 {
    min-height: 630px;
}

.thank-you .bann_form {
    margin: 0;
}

.container-fluid.about_us {
    padding: 0px 0px 0px;
}
.get_a_free_quote{
    text-align:left;
    padding-top:20px
}
.get_a_free_quote .common-btn {
    background-color: #234982;
    color: #ffffff;
    padding: 14px 35px 10px;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 22px;
    font-weight: bold;
    display: inline-block;
    letter-spacing: 0.02em;
    font-family: 'Avenir Next LT Pro';
    border: 2px solid #fff;
    border-radius: 10px;
    cursor: pointer;
}

.get_a_free_quote .common-btn:hover {
    background: #241F20;
}

.common_div {
    width: 48%;
    padding: 45px 32px;
    display: inline-block;
    vertical-align: top;
    margin-right: 47px;
}

.common_div:last-child {
    margin-right: 0px;
}

.common_div h2 {
    color: #fff;
    font-weight: 600;
    line-height: 51px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'TMSans', serif;
}

.common_div.our_plans {
    border: 3px solid #533e9d;
    border-radius: 10px;
}

.common_div.features {
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,35,86,1) 11%, rgba(0,212,255,1) 100%);
}

.common_div ul {
    margin: 0px;
    padding: 0px;
}

.common_div.features ul li {
    background-image: url('images/list.png');
    background-repeat: no-repeat;
    background-position: left 6px;
    padding-left: 32px;
    margin: 20px 0px;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-family: 'Avenir Next LT Pro';
    font-weight: normal;
}

.features .coomon_btn a {
    margin: auto;
}

.features .coomon_btn a:hover {
    color: #fff;
}

.features .coomon_btn {
    padding-top: 25px;
}

.common_div.specialize ul li {
    background-image: url('images/list2.png');
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 38px;
    margin: 20px 0px;
    color: #191919;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.common_div.specialize {
    border: 3px solid #23478b;
    border-radius: 10px;
    background-image: linear-gradient(to right top, #3d7cda, #9066d0, #c844ae, #e81378, #eb1238);
}

.ct_features_sec .row {
    display: flex;
}

.features .coomon_btn {
    padding-top: 90px
}

.coomon_btn a {
    width: 190px;
    line-height: 50px;
    display: block;
    background: transparent;
    text-align: center;
    font-size: 21px;
    color: #fff;
    border-radius: 10px;
    border: 2.5px solid red;
    font-family: 'Avenir Next LT Pro';
    font-weight: bold;
    margin: auto;
}

.specialize .coomon_btn a {
    color: red;
}

.coomon_btn a:hover {
    background: #23478b;
    color: #fff !important;
}

.common_div.specialize h2 {
    color: #23478b;
}

.row {
    margin: 0px;
}

.common_div.specialize .coomon_btn a {
    color: red;
}

.common_div.specialize .coomon_btn {
    padding-top: 14px;
}

.testimonial_carousel .get_a_free_quote .common-btn {
    padding: 8px 25px;
    font-size: 17px;
    text-transform: none;
    line-height: 22px;
    font-weight: normal;
    border: 2px solid #234982;
    border-radius: 2px;
}

.container-fluid.why_section {
    padding: 0px;
}

.why_section ul {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.bann_form label {
    text-align: left;
}

.thankyou_page {
    align-items: center;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
}

.our-partner-sec {
    padding-bottom: 40px;
}

.our-partner-sec h4 {
    margin-bottom: 30px;
    text-align: center;
}

.partner-logo-wrap img {
    margin: 0 auto;
}

.quote_btn {
    text-align: center;
    margin-top: 30px;
}

.inner_service_content p {
    color: #fff;
    font-size: 16px;
}

.why_section {
    background: #234982;
}

.w_img {
    align-items: center;
    height: 90px;
    width: 90px;
    border-radius: 100%;
    margin: 0 auto;
    padding: 0px;
    float: left;
    position: relative;
    padding-right: 15px;
}

/*.w_img img {*/
/*    position: absolute;*/
/*    top: 0px;*/
/*    bottom: 0px;*/
/*    left: 0px;*/
/*    right: 0px;*/
/*    margin: auto;*/
/*    width: 40px;*/
/*}*/

.thank-text-wrap {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.whychoose-inner p {
    margin-bottom: 18px;
    line-height: 1.4;
    color: #292929;
    font-family: 'Avenir Next LT Pro';
    font-weight: normal;
}

.whychoose-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.whychoose-inner {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 25px 10px 0;
}

.whychse-content h4 {
    line-height: 1;
    font-size: 22px;
}

.whychse-content {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
}

.whychse-img {
    -ms-flex-preferred-size: 12%;
    flex-basis: 12%;
}

.whychse-img i {
    font-size: 30px;
    margin-top: 4px;
}
.our-partner-sec{
    display:none;
}
section.whychoose {
    padding: 0px 0 0;
    margin-bottom: 0px;
    background-color: #234982;
}

.whychoose-wrap .whychoose-inner:nth-child(1), .whychoose-wrap .whychoose-inner:nth-child(2), .whychoose-wrap .whychoose-inner:nth-child(3) {
    margin-top: 0;
}

.whychoose-wrap .whychoose-inner:nth-child(3n + 1) {
    margin-left: 0;
}

.whychoose-wrap .whychoose-inner:nth-child(3n) {
    margin-right: 0;
}

.banner-box .slider-logo-banner {
    position: relative;
    top: 0px;
    z-index: 0;
    width: 548px;
    height: auto;
    padding: 16px;
    background: rgba(255,255,255,0);
    margin-left: 0px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
}

.banner-box .slider-logo {
    float: left;
    width: 33%;
    display: block;
}

.banner-box .slider_caption_box {
    text-align: left;
}

.banner-box .slider_caption_box {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.banner-box .specials-cta-wrapper_box {
    flex-grow: 1;
}

.banner-box .title-wrapper {
    margin: 0.5em 0 1.5em 0;
}

.banner-box .title-wrapper h1 {
    font-size: 30px;
    line-height: 1.2em;
    font-weight: bold;
    font-style: italic;
    font-family: 'Merriweather', serif;
    color: #2d2d2d;
    margin: 0;
    text-transform: none;
}

.banner-box .img-wrapper {
    float: left;
    width: 40%;
    max-width: 40%;
    background: rgba(0,0,0,0.075);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0.25em;
}

.banner-box .content-wrapper {
    float: right;
    width: 40%;
    max-width: 40%;
    margin-right: 9.5%;
}

.banner-box .content-wrapper p:first-child {
    line-height: 16px;
}

.banner-box .content-wrapper p {
    margin: 0 0 8px 0;
    font: 18px/27px 'Lato', sans-serif;
    color: #2d2d2d;
}

.price {
    margin: 16px 0!important;
    font-size: 32px!important;
    line-height: 32px!important;
    color: #ed1c24!important;
    font-weight: 500!important;
}

.banner-box .content-wrapper a.special-view {
    display: block;
    font-size: 14px;
    color: #007dc6;
    text-decoration: underline;
    margin-top: 16px;
    font-weight: 400;
}

.banner-box {
    position: relative;
    width: 100%;
    top: 0;
    width: 580px;
    background: rgba(255,255,255,0.77);
    bottom: auto;
    left: 0;
    padding: 16px;
    border-radius: 20px;
}

.banner-box .img-wrapper img {
    width: 100%;
}

.banner-box .slider-logo img {
    width: 100%;
}

.banner-box .specials-cta-wrapper_box {
    padding-bottom: 75px;
}
.ml10 {
  position: relative;
  display: block;
}

.ml10 .text-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.ml10 .letter {
  display: inline-block;
  transform-origin: 0 0;
}
.logo_wrap img {
    padding: 15px 0px;
}
.form_field select {
    height: 35px;
    width: 100%;
}
.screen-reader-response {
    display: none!important;
}
.thanks h1 {
    margin: 0;
    padding-bottom: 10px;
}
.thankyou {
    padding: 35% 0px;
}
/* start video*/
.video-wrapper-container{
width:100%;
height:100%;
background-color:rgba(0,0,0,0.7);
position:fixed;
top:0px;
left:0px;
z-index:3;
display:none;
}
.video-wrapper{
position: absolute;
top:0px;
left:0px;
bottom:0px;
margin:auto;
width:625px;
height:380px;
z-index: 2;
background-color:#fff;
padding: 25px 25px;
top: 50%;
left: 50%;
border-radius: 13px;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);

}
.video-wrapper iframe{
width:100%;
height:330px;
}
.close-btn i{
font-size:30px;
color:#000;
position: absolute;
top:-1px;
right:0px;
z-index:55;
cursor:pointer;
transition:0.5s linear;
-webkit-transition:0.5s linear;
}
.close-btn i:hover{
color:#0b9444;
}
.video-inner
{
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
     min-height: 320px;
     max-width: 835px;
     border-radius: 5px;
     position: relative;
     margin: auto;
}

.gallery-slider {
    margin-top: 30px;
}

.item-gl {
    padding: 0 5px;
}

.gallery-slider .slick-dots li button:before {
    opacity: 0;
}

.gallery-img {
    overflow: hidden;
    height: 300px;
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all ease;
}
.jjj {
    overflow: hidden;
}
.gallery.padding_tb h3 {
    color: #234982;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 10px;
    font-family: 'Avenir Next LT Pro';
    font-weight: 700;
    text-align: center;
}
.gallery-img img:hover {
    transform: scale(1.2);
    filter: brightness(0.5);
}
.video-inner a.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: transparent;
}
.video-inner a.video-btn {
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 2;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #ffffff;
    display:none;
}
.video-inner a.video-btn:hover {
    background: rgba(193,145,44,0.6);
    border-radius: 50%;
     color: #000000;
}

.after-before-wrapper h3 {
        color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 40px;
    font-family: 'Avenir Next LT Pro';
    font-weight: 700;
    text-align: center;
}
.after-before-wrapper .aft-bef-image {
    position: relative;
    border: 1px solid #fff;
    height: 385px;
    background: #ddd;
    padding: 0;
}
.after-before-wrapper .a-b-wrap.left {
    left: 0px;
}
.after-before-wrapper .a-b-wrap {
    position: absolute;
    top: 0px;
    display: table;
    height: 100%;
}
.after-before-wrapper .a-b-inner-wrap {
    display: table-cell;
    vertical-align: middle;
}
.after-before-wrapper .a-b-inner-wrap span.span-inner {
    background: rgba(0,0,0,0.5);
    padding: 14px 30px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}
.after-before-wrapper .a-b-wrap.right {
    right: 0px;
}
.after-before-wrapper .a-b-inner-wrap span.span-inner {
    background: rgba(0,0,0,0.5);
    padding: 14px 30px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}
.after-before-wrapper {
    margin: 20px 0 60px;
}
.imageheight {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.after-before-wrapper .slider-controls {
    text-align: center;
    margin-top: 2%;
}
.after-before-wrapper .carousel-control.left, .after-before-wrapper .carousel-control.right {
    background: none;
    opacity: 1;
    width: 40px;
    height: 40px;
    /* border: 1px solid #c5c5c5; */
    color: #c5c5c5;
    font-size: 28px;
    bottom: 0px;
    top: auto;
    text-shadow: none;
    display: inline-block;
    position: relative;
    border-radius: 0;
}
.after-before-wrapper .carousel-control.left:before {
    content: "";
    width: 85px;
    height: 38px;
    position: absolute;
    background-image: url(images/s_prev.png);
    left: 0;
    background-repeat: no-repeat;
}
.after-before-wrapper .carousel-control.right:before {
    content: "";
    width: 85px;
    height: 38px;
    position: absolute;
    background-image: url(images/s_next.png);
    right: auto;
    background-repeat: no-repeat;
}
a.right.carousel-control {
    right: 0;
}
.right-content img {
    float: left;
    width: 500px;
    margin-right: 20px;
}
.thankyou p {
    font-size: 22px;
    margin-bottom: 20px;
}
.thankyou a {
    margin-bottom: 40px;
}






header.header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  border-bottom: 1px solid #d7d7d7;
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}

img.quote {
    width: 30px !important;
    margin-right: 10px;
}

.star {
    color: #234982;
    font-size: 20px;
}

i.fa.fa-star {
    margin-right: 8px;
}

.test_col {
    padding: 10px 20px 20px;
    box-shadow: 0px 0px 10px #000;
}
.testimonial_carousel .owl-item {

    padding: 10px;
}


/* --- Footer Code --- */
footer {
    nter;
    background: #234982;
}

section.map-section iframe {
    width: 100%;
    height: 650px;
    display: block;
}

.container-fluid.copyright {
    border-top: 1px solid #fff;
}

.copyright .row {
    padding: 15px 0px;
}
.container-fluid.p-0.copyright {
    background: #fff;
}

.col-md-12.details_wrp_bottom p {
    color: #234982;
}

.copyright p {
    margin: 0;
    color: #fff;
}

.footer-info {
    padding: 50px 0;
}

.footer-info h2 {
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-info .finfo-row {
    margin: 0;
    padding: 20px;
    list-style: none;
    border: 1px solid #fff;
}

.footer-info .finfo-row p {
    margin: 0;
}

.footer-info .finfo-row span {
    color: #fff;
    font-weight: 700;
    display: block;
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-info .finfo-row a {
    color: #fff;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.footer-info .finfo-row a:hover {
text-decoration: underline;
}

.footer-info .finfo-row>div {
    text-align: center;
}

.footer-info .finfo-row>div:last-child {
    border-right: 0;
    border-bottom: 0;
}

.footer-info .finfo-row>div {
    border-right: 1px solid #fff;
}
.footer-info .finfo-row p{
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.details_wrp_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.details_wrp_bottom img{
    max-width: 130px;
    width:100%;
}
.container-fluid.copyright .container {
    padding: 0;
}

.container-fluid.footer_cta_section {
    background-color: #f7f7f7;
    padding: 30px 20px;
    text-align: center;
}

.container-fluid.footer_cta_section h3 {
    color: #234982;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.container-fluid.footer_cta_section_logo {
    text-align: center;
    margin-bottom: 50px;
	padding: 0;
	background: rgb(215, 221, 233);
    padding: 30px 0px;
}

.container-fluid.footer_cta_section_logo h3 {
    margin-bottom: 30px;
    color:#234982;
}
.logo_img{
    margin: 10px 20px !important;
}
.panel-default>.panel-heading {
    color: #ffffff;
    background-color: #234982;
    border-color: #ddd;
    position: relative;
}

.faq-wrapper .panel-title a {
    display: block;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
}

.panel-title a::after {
	content: "▾";
	transform: translateY(-50%) rotate(0deg);
	float: right;
	top: 20px;
	position: absolute;
	right: 16px;
	font-size:25px;
}

.panel-title a[aria-expanded="true"]::after {
	transform: translateY(-50%) rotate(270deg);
}

.logo_img img {
    width: 100%;
    height:110px;
    object-fit:contain;
    margin:0px 24px;
}

.logo_img {
    max-width: 240px;
    max-height:110px;
}

h3.after-before-text {
    color: #234982;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 10px;
    font-family: 'Avenir Next LT Pro';
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
}

.right-content ul li {
    line-height: 22px;
    color: #292929;
    font-family: 'Avenir Next LT Pro';
    font-weight: normal;
    padding: 0;
    margin-bottom: 12px;
}

p.sub-head {
    color: #234982;
    margin: 10px 0;
    list-style: disc;
    font-size: 18px;
    padding-right: 0;
    font-weight: 600;
}