 /*

Theme Name: Thorntons

Theme URI: https://wordpress.org/themes/coopso_theme/

Author: Concept Open Source (COOPSO) team

Author URI: https://conceptopensource.com/

Description: This is custom theme of Concept Open Source company. We have created this theme. 

Version: 1.0

License: GNU General Public License v2 or later

License URI: http://www.gnu.org/licenses/gpl-2.0.html

Tags: blog, two-columns, left-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready

Text Domain: coopso_theme



*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');
/* @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css'); */
@font-face {
    font-family: 'gilroyextrabold';
    src: url('./fonts/gilroy-extrabold-webfont.eot');
    src: url('./fonts/gilroy-extrabold-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/gilroy-extrabold-webfont.woff2') format('woff2'),
         url('./fonts/gilroy-extrabold-webfont.woff') format('woff'),
         url('./fonts/gilroy-extrabold-webfont.ttf') format('truetype'),
         url('./fonts/gilroy-extrabold-webfont.svg#gilroyextrabold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gilroylight';
    src: url('./fonts/gilroy-light-webfont.eot');
    src: url('./fonts/gilroy-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/gilroy-light-webfont.woff2') format('woff2'),
         url('./fonts/gilroy-light-webfont.woff') format('woff'),
         url('./fonts/gilroy-light-webfont.ttf') format('truetype'),
         url('./fonts/gilroy-light-webfont.svg#gilroylight') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*---------- SLICK CSS ----------*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*----- SLICK THEM CSS -------*/
.slick-loading .slick-list
{
    background: #fff url('images/ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 60px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    padding-top:15px;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'FontAwesome';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\f053';
}
[dir='rtl'] .slick-prev:before
{
    content: '\f054';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\f054';
}
[dir='rtl'] .slick-next:before
{
    content: '\f053';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
     font-family: 'FontAwesome';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\f111';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}



/*---------- SLICK CSS ----------*/


body{
    font-family: 'Nunito', sans-serif;
    font-size:16px;
}
ul {
    margin-bottom:20px;
}
img{
    max-width:100%;
}
a:hover{
   text-decoration: none;
}
:focus{
    outline:0;
}
a:focus,
a:hover{
    outline:0px;
    text-decoration:none;
}
p{
    margin:0 0 20px;
}

.header_wrapper .row{
    display: flex;
    align-items: center;
}
.header_menu > div > ul{
    padding: 0;
}
.header_menu > div > ul > li {
    list-style: none;
    display: inline-block;
    padding: 35px 10px;
}
.header_menu > div > ul > li:last-child{
    padding-right:0px;
}
.sub-menu{
    display: none;
}
.header_menu{
    text-align: right;
}
.header_menu > div > ul > li a{
    color:#A5A5A5;
    line-height:11px;
    padding:10px 5px;
    display:inline-block;
    position: relative;
    text-transform:uppercase;   
}
.header_menu > div > ul > li.current_page_item > a:before,
.header_menu > div > ul > li.current-menu-parent > a:before{
    content: '';
    background:#F79420;

    height: 3px;
    border-radius:5px;
    bottom:0px;
    width:50px;
    left:50%;
    margin-left:-25px;
    position: absolute;
}
.header_menu > div > ul > li.current_page_item > a,
.header_menu > div > ul > li.current-menu-parent > a,
.header_menu > div > ul > li.current-menu-parent .current-menu-item > a{
    color:#3D3F45;
    font-weight:700;
}

.header_menu span.toggle{
    font-size: 23px;
    font-weight: 700;
    color: #b6b6b6;
    display:inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-left:8px;
}

.menu-item-has-children{
    position: relative;
}
.menu-item-has-children > ul.sub-menu li{
    list-style: none;
    padding:0;
    border-top:1px solid #E3E3E3;
}
.menu-item-has-children > ul.sub-menu li:first-child{
    border-top:0px;
}
.menu-item-has-children > ul.sub-menu li a{
    padding: 12px 20px;
    line-height: 20px;
    display: inline-block;
    font-size:13px;
    text-transform:uppercase;
    width:100%;
}
.menu-item-has-children > ul.sub-menu li a:hover{
    color:#3D3F45;
}
.menu-item-has-children > ul.sub-menu{
    position: absolute;
    background: #FFFFFF;
    border-radius: 0px 0px 10px 10px;
    padding: 0;
    left:0;
    width: 100%;
    z-index:1024;
    text-align: left;
    width: 300px;
    top: 100%;
}
.menu-item-has-children a > span.toggle:after{
    content: "+";
    /* font: normal normal normal 14px/1 FontAwesome; */
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    position: absolute;
    top:-5px;
    bottom: 0;
    display: flex;
    align-items: center;
    display: flex;
    display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;  /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* height:25px; */
    line-height:25px;
}
.menu-item-has-children a.active > span.toggle:after{
    content: "-";
}

.current-menu-item.menu-item-has-children .toggle{
    float:right;
    margin-right: 10px;
    margin-top: 5px;
}
.menu-item-has-children .toggle{
    float:right;
    margin-top:6px;
}
.menu-item-has-children ul.sub-menu .toggle{
    margin-top:12px;
}
.menu-item-has-children > ul.sub-menu ul.sub-menu {
    left: 100%;
    top: 0;
}



/* .menu-item-has-children:hover > ul.sub-menu{
    display: block;
} */
.navbar-toggle{
    background: #3389c2;
    border: none;
    z-index: 1;
    float: right;
    margin-right: 0;
    margin-left: 15px;
    padding: 6px 10px 3px;
    color: #fff;
}
.navbar-toggle a{
    color:#fff;
    font-size:20px;
}
.navbar-toggle .icon-bar{
    background-color: #fff;
}

@media(max-width: 767px) {
    .mobile_menu{
        display: none;
    }
}



/*--- Header Changes -----*/

.header.top-header{
    position: fixed;
    z-index: 1024;
    width: 100%;
    background: #fff;
    top:0px;
}
.header.fixed-header{
    box-shadow:0px 0px 15px rgba(0,0,0,0.1);
}
.top_menu{
    background:#3389C2;
    color:#fff;
    min-height:40px;
}
.top_menu a{
    color:#fff;
}
.top_menu .top-right-sec{
    display: flex;
    justify-content: flex-end;
    line-height:40px
}
.top_menu .top-left-sec{
	line-height:40px; 
}
.top_menu .top-left-sec ul,
.top_menu .top-right-sec ul{
    margin: 0;
    list-style: none;
    padding: 0;
}
.top_menu .top-left-sec ul li,
.top_menu .top-right-sec ul li{
    display: inline-block;
    margin-right:30px;
    font-size:14px;
}
.top_menu .top-right-sec .top_right_info_icons a{
    display: inline-block;
    margin-left:10px;
    font-size:14px;
}
.top_menu .top-right-sec .top_right_info_icons a i{
    color:#1D3A66;
    font-size:20px;    
}
.top_menu .top-right-sec .top_right_info_icons a.contact-number i{
    vertical-align: middle;
    margin-right:10px;
}
.top_menu .top-right-sec .top_right_info_icons .tollfree-number{
	margin-left:10px;
	font-size: 14px;
}
.top_menu .top-right-sec .top_right_info_icons .tollfree-number a{
	margin-left:0px;
}



/*------- Home Slider -----*/
.home-top-slider.slick-dotted.slick-slider{
    margin-bottom:0px;
}

.home-top-slider img{
    width:100%;
}
.home-top-slider .slide img{
    z-index:1;
    position: relative;
    height:100%;
    object-fit: cover;
}
.home-top-slider .slick-slide{
    position: relative;
}
.home-top-slider .slick-track{
    height:590px;
}
@media only screen and (min-width: 2100px) {
	.home-top-slider .slick-track{
    height:690px;
}
}
@media only screen and (min-width: 2300px) {
	.home-top-slider .slick-track{
    height:720px;
}
}
@media only screen and (min-width: 2500px) {
	.home-top-slider .slick-track{
    height:790px;
}
}
@media only screen and (min-width: 2600px) {
	.home-top-slider .slick-track{
    height:850px;
}
}
@media only screen and (min-width: 2750px) {
	.home-top-slider .slick-track{
    height:80vh;
}
}
.home-top-slider .slide .slide-content{
    position: absolute;
    top: 0px;
    left:0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-weight:300;
    z-index:2;
    flex-direction:column;
    background-size: cover;
    background-position: left;
}
.home-top-slider .slide .slide-content h2{
    /* font-size:62px;
    line-height:74px; */
    font-size:50px;
    line-height:52px;
    font-family: 'gilroyextrabold';
    color:#3D3F45;
    margin-top:0px;
}
.home-top-slider .slide .slide-content h2 span{
    color:#fff;
}
.home-top-slider .slide .slide-content p{
    font-size:20px;
    line-height:30px;
    margin-bottom:10px;
}
.home-top-slider .slide .slide-content ul{
    margin-bottom:0px;
}
.home-top-slider .slide .slide-content .button-more {
    text-align: right;
    margin-top:35px;
}
.home-top-slider .slide .slide-content .button-more a i{
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    line-height: 15px;
    text-align: center;
    font-size: 15px;
    margin-left:10px;
}
.home-top-slider .slide .slide-content .button-more a{
    background: #F79420;
    min-width: 290px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    padding: 17px 0;
    line-height: 21px;
}
.slideshow {
    position: relative;
}
.nav-container{
    position: absolute;
    top:0px;
    left:0;
    width:100%;   
}
.nav-container .container{
    position:relative;
}
.slideshow .slide-controls{
    position: absolute;
    top:20px;
    right:0px;
    background:rgba(0, 0, 0, 0.3);
    border-radius:50px;
    height:32px;
    line-height:32px;
    padding:0 18px;
}
.slideshow .slide-controls a{
    color:#fff;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.26);
}
.slideshow .slide-controls .slide-arrow-box{
    float:right;
    margin-right:-10px;
}
.slideshow .slide-controls .slide-arrow-box a{
    display: inline-block;
    margin:0 10px;
}
.slideshow .slide-controls .slide-arrow-box a span{
    display: inline-block;
    vertical-align: middle;
    font-size:20px;
}
.slideshow .slide-controls ul.custom-dots{
    float:left;
    margin: 0 8px 0 0;
    padding: 0;
    list-style: none;
}
.slideshow .slide-controls ul.custom-dots li{
    display: inline-block;
    margin-left:6px;
}
.slideshow .slide-controls ul.custom-dots li a span{
    text-indent: -8888px;
    display: inline-block;
    width: 12px;
    height: 12px;
    /* background: #fff; */
    vertical-align: middle;
    border-radius: 50%;
    border:2px solid #fff;
    box-shadow:0px 3px 6px rgba(0, 0, 0, 0.26);
}
.slideshow .slide-controls ul.custom-dots li.slick-active a span{
    background:#fff;
}

.slideshow .slide-controls ul.custom-dots li:first-child{
    margin-left:0px;
}


.service-section{
    background:#F0F2F5;
    padding:35px 0px 90px; 
}
.service-right-slide{
    padding-right:0px;
}

.service-section .section-title h2{
    color:#3389C2;
    font-size:52px;
    line-height:58px;
    font-family: 'gilroyextrabold';
    text-align: right;
    margin-top:0px;
}
.service-section .section-title h2 span{
    color:#3D3F45;
}
.service-section .section-desc{
    font-size:16px;
    line-height:20px;
    text-align:right;
}

.service-section .service-block{
    position: relative;
    padding-left:45px;
}
.service-slider .box-service {
    width: 180px;
    height: 200px;
    background: #fff;
    align-items: center;
    /*display: flex;
     margin: 0 auto; */
    margin-left:auto;
    justify-content: center;
    border-radius:10px;
    position: relative;
    padding:25px 0 0;
}
.service-slider .box-service img{
    margin-bottom:25px;
}
.service-slider .box-service .service-content img{
    max-width:58px;
    min-height:58px;
    margin:0 auto 20px;
}
.service-slider .box-service .service-title{
    font-size: 18px;
    font-family: 'gilroyextrabold';
    color: #3D3F45;
    text-align: center;
    padding: 0 15px;
    line-height: 21px;
}
.service-block .slideshow .slide-controls{
    top:-50px;
    background: none;
    padding: 0;
}
.service-block .slideshow .slide-controls ul.custom-dots li a span{
    box-shadow:none;
    border-color:#F79420;
}
.service-block .slideshow .slide-controls ul.custom-dots li.slick-active a span{
    background:#F79420;
}
.service-block .slideshow .slide-controls a{
    text-shadow:none;
    color:#3389C2;
}
.service-slider .slick-slide{
    padding-bottom:35px;
}
.service-slider .box-service .plus-icon {
    position: absolute;
    bottom: -15px;
    background:#FFFFFF;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    width:31px;
    height:31px;
    color:#F79420;
    border-radius:50%;
    text-align: center;
    line-height:31px;
    left: 50%;
    margin-left: -15.5px;
}
.service-slider .box-service .plus-icon a{
    color:#F79420;
}

.service-slider .box-service:hover .plus-icon{
    background:#3389c2;
    color:#fff;
    transition:0.5s;
}
.service-slider .box-service:hover .plus-icon a{
    color:#fff;
}


/*---- About Section ----*/
.about-section{
    padding-top:40px;
    display: flex;
    align-items: center;
}

.video_sec_wrapper .pop_video_btn{
    /*position: absolute;*/
    left: 4%;
    width: 92%;
    height: 85%;
    top: 6%;
}
.video_sec_wrapper .overlay-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video_sec_wrapper{
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
}
.video_sec_wrapper .video-content,
.about-right-sec .pop_v .video-content{
    position: absolute;
    left: 0;
    max-width: 650px;
    height: 500px;
    top: 0;
    border: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.video_sec_wrapper iframe,
.about-right-sec .pop_v .video-content iframe {
    max-width:650px;
    height:500px;
    width:100%;
}
.video_sec_wrapper .pop_v,
.about-right-sec .pop_v{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 1024;
    background: rgba(0, 0, 0, 0.75);
}
.close-video {
    position: absolute;
    right: -20px;
    top: -20px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-size: 25px;
    cursor: pointer;
}



.about-img-sec img{
    border-radius:10px;
}
.about-img-sec .overlay-img img {
    width: auto;
    height: auto;
}
.about-section .about-right-sec{
    padding-left:50px;
}
.about-section .about-right-sec .about-title h2{
    color:#3389C2;
    font-size:52px;
    line-height:58px;
    font-family: 'gilroyextrabold';
    margin-top:0px;
}
.about-section .about-right-sec .about-title h2 span{
    color:#3D3F45;
}
.about-section .about-desc{
    font-size:16px;
    line-height:20px;
}
.about-section .button-about a{
    font-size:16px;
    font-weight:700;
    color:#F79420;
    border: 2px solid #F79420;
    border-radius: 50px;
    display: inline-block;
    line-height:50px;
    padding:0 65px;
    text-transform: uppercase;
}
.about-section .button-about .btn-extra-video{
    padding:0 30px;
    margin-left:25px;
}
.about-section .button-about {
    margin-top:25px;
}
.about-section .button-about a i{
    margin-left:10px;
}

/*----- Industries Section ------*/
.industries-top-sec{
    text-align: center;
    padding:50px 0px;
}
.industries-top-sec .industries-main-title h2{
    color:#3389C2;
    font-size:52px;
    line-height:58px;
    font-family: 'gilroyextrabold';
    margin-top:0px;
}
.industries-top-sec .industries-main-title h2 span{
    color:#3D3F45;
}
.industries-top-sec .industries-desc{
    max-width:600px;
    margin:0 auto;
    font-size:16px;
    line-height:20px;
}
.industries-slider .slick-list{
    margin:0 -15px;
}
.industries-slider .box-service {
    width: 180px;
    height: 180px;
    background: #F0F2F5;
    align-items: center;
    /* display: flex; */
    margin: 0 auto;
    /* margin-left:auto; */
    justify-content: center;
    border-radius:10px;
    position: relative;
    padding:25px 0 0;
}
.industries-slider .box-service img{
    margin-bottom:20px;
}
.industries-slider .box-service .service-content img{
    margin:0 auto 15px;
}
.industries-slider .box-service .service-title{
    font-size:16px;
    font-family: 'gilroyextrabold';
    color:#3D3F45;
    text-align: center;
    padding: 0 10px;
    line-height:19px;
}
.industries-section .slideshow .slide-controls{
    top:-50px;
    background: none;
    padding: 0;
}
.industries-section .slideshow .slide-controls ul.custom-dots li a span{
    box-shadow:none;
    border-color:#F79420;
}
.industries-section .slideshow .slide-controls ul.custom-dots li.slick-active a span{
    background:#F79420;
}
.industries-section .slideshow .slide-controls a{
    text-shadow:none;
    color:#3389C2;
}
.industries-slider .slick-slide{
    padding-bottom:35px;
}
.industries-slider .box-service .plus-icon {
    position: absolute;
    bottom: -15px;
    background:#FFFFFF;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    width:31px;
    height:31px;
    color:#F79420;
    border-radius:50%;
    text-align: center;
    line-height:31px;
    left: 50%;
    margin-left: -15.5px;
}
.industries-slider .box-service:hover .plus-icon{
    background:#3389c2;
    color:#fff;
    transition:0.5s;
}
.industries-slider .box-service:hover .plus-icon a{
    color:#fff;
}
.industries-slider .box-service .plus-icon a{
    color:#F79420;
}

/*-------- Latest News --------*/
.latest-news-section{
    padding-bottom:50px;
}
.latest-news-section.industries-sec{
    padding-bottom:0px;
    margin-top:15px;
}
.latest-news-section .section-title{
    text-align: center;
    padding:20px 0 50px;
}
.latest-news-section .section-title h2{
    color:#3389C2;
    font-size:52px;
    line-height:58px;
    font-family: 'gilroyextrabold';
    margin-top:0px;
}
.latest-news-section .section-title h2 span{
    color:#3D3F45;
}

.news-list {
    margin: 0 -30px;
}
.news-list > .col-sm-6 {
    padding: 0 30px;
}
.news-list .news-block{
    background:#F0F2F5;
    border-radius:10px;
    margin-bottom:20px;
    display: flex;
    align-items: center;
    overflow:hidden;
}
.news-list .news-block .col-xs-4{
    padding:0;
}
.news-list .news-block .imgbox img{
    height: 217px;
    width: 100%;
    object-fit: cover;
}
.news-list .news-block .news-content {
    padding:0 15px;
}
.news-list .news-block .news-content .news-title{
    color:#1A1B1D;
    font-size:18px;
    line-height:26px;
    margin:0px 0px 10px;
    font-family: 'gilroyextrabold';
}
.news-list .news-block .news-content .news-title a{
    color:#1A1B1D;
}
.news-list .news-block .news-content .postcontent{
    color:#333;
    font-size:14px;
    line-height:22px;
    padding-right:15px;
    margin-bottom:25px;
}
.news-list .news-block .news-content .moretag{
    color:#1A1B1D;
    font-size:14px;
    text-transform:uppercase;
    font-weight:700;
    transition:0.5s;
}
.news-list .news-block .news-content .moretag:hover{
    color:#3389C2;
}
.news-list .news-block .news-content .moretag i{
    margin-left:5px;
}
.news-list .news-block .news-content .date-box{
    color:#333;
    font-size:14px;
}
.news-list .news-block .news-content .date-box i{
    color:#1A1B1D;
    margin-right:5px;
}

/*----------- Newsletter Section ------------*/
.newsletter-section{
    background:#1D3A66;
    padding:45px 0px;
    color:#fff;
}
.newsletter-section .newsletter-left-sec{
    font-size:26px;
    line-height:34px;
    color:#fff;
    font-weight:900;
}
.newsletter-section .newsletter-right-sec{
    padding-right:0px;
}
.newsletter-section .newsletter-right-sec .newsletter-form_wrapper{
    margin:0px;
}
.newsletter-section .container > .row{
    display: flex;
    align-items: center;
}
.newsletter-section .newsletter-form{
    display: flex;
    align-items: center;
}
.newsletter-section .newsletter-form .gform_body{
    width:80%;
    float:left;
    padding-right:3%;
}
.newsletter-section .newsletter-form .gform_footer{
    width:20%;
    margin:0;
    padding:0;
    position: relative;
}
.newsletter-section .newsletter-form .gform_footer.top_label img {
    position: absolute;
    left: 50%;
    top: 60px;
    margin-left: -8px;
}
.newsletter-section .newsletter-form ul.gform_fields li.gfield{
    padding: 0px;
    width: 48%;
    float: left;
    clear: none;
    margin: 0;
    padding:0;
    margin-right:4%;
}
.newsletter-section .newsletter-form ul.gform_fields li.gfield .ginput_container{
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    position: relative;
    padding:5px 5px 5px 50px;
}
.newsletter-section .newsletter-form ul.gform_fields li.gfield .ginput_container.ginput_recaptcha{
    border:0px;
    padding:0px;
}
.newsletter-section .newsletter-form ul.gform_fields li.gfield.captcha_div{
    height:0px;
}

.newsletter-section .newsletter-form ul.gform_fields li.gfield.name-field .ginput_container:before{
    content: '';
    background:url(images/icon-user.png) no-repeat;
    width:16px;
    height:16px;
    background-size:100% auto;
    position: absolute;
    top:50%;
    margin-top:-8px;
    left:18px;
}
.newsletter-section .newsletter-form ul.gform_fields li.gfield.email-field .ginput_container:before{
    content: '';
    background:url(images/icon-email.png) no-repeat;
    width:16px;
    height:16px;
    background-size:100% auto;
    position: absolute;
    top:50%;
    margin-top:-8px;
    left:18px;
}

.newsletter-section .newsletter-form ul.gform_fields li.gfield.email-field{
    margin-right:0px;
}

body .newsletter-section .gform_wrapper .top_label div.ginput_container{
    margin:0px;
}
body .newsletter-section .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
    margin:0px;
    background: none;
    border: 0px;
    color: #fff;
    font-size:15px;
}
body .newsletter-section .gform_wrapper input::placeholder{
    color:#fff;
}

body .newsletter-section .gform_wrapper .gform_footer input.button, 
body .newsletter-section .gform_wrapper .gform_footer input[type=submit]{
    width:100%;
    background:#F79420 url(images/right-arrow-white.png) no-repeat 80% center;
    background-size:17px auto;
    height: 50px;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    border: 0;
    border-radius: 50px;
    text-align: left;
    padding: 0 32px;
}

.gform_wrapper .newsletter-form div.validation_error {
    display: none !important;
}

.gform_wrapper .newsletter-form li.gfield.gfield_error{
    background-color: transparent !important;
    border:none !important;
    position: relative;
}
.gform_wrapper .newsletter-form .field_description_below .gfield_description {
    padding-top: 0px !important;
    position: absolute;
    text-align: right;
    top: 60px;
    color:#ff4f4f;
    font-weight:normal;
    padding-right:0px !important;
    left:0;
    width: 100%;
    text-align: left;
}
.gform_wrapper .newsletter-form li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.gform_wrapper .newsletter-form li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 5px;
    color:#ff4f4f;
}
.gform_wrapper.gform_validation_error .newsletter-form .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){
    max-width:100% !important;
}
.gform_wrapper .newsletter-form li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), 
.gform_wrapper .newsletter-form  li.gfield_error textarea{
    border:0px;
}


/*----------- Footer Section --------*/
.footer{
    background:#222224;
    color:#fff;
}
.footer .footer-section{
    padding:60px 0 50px;
}
.footer .footer-content-sec{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:60px 0 30px;
}
.footer .footer-content-sec .footer-grid-block{
    margin:0 50px;
}
.footer .footer-content-sec  a{
    color:#fff;
}
.footer .footer-address-sec{
    text-align: center;
    font-size:16px;
}
.footer .footer-address-sec i{
    margin-right:13px;
    font-size:18px;
    vertical-align:top;
    color: #F79420;
    text-shadow: -0.5px -0.5px 0px #F79420;
    margin-top:3px;
}
.footer .footer-address-sec p{
    display: inline-block;
}
.footer .footer-content-sec .footer-grid-block i {
    margin-right: 15px;
    color: #F79420;
    font-size: 24px;
    vertical-align: middle;
}
.footer .copyright-section{
    background:#3D3F45;
    color:#fff;
    text-align: center;
    height:60px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*--------- SUBPAGE header Banner -------*/
.top_banner_area .sub-banner-image{
    height:190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size:cover;
    background-position:center;
    /* background-attachment: fixed; */
    position: relative;
}
.top_banner_area .sub-banner-image:before{
    content:'';
    background:rgba(0,0,0,0.50);
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
}

.top_banner_area .sub-banner-image .blog-container,
.subpage-banner_area .sub-banner-image .page_title{
    /* text-align: center; */
    color:#fff;
}
.top_banner_area .sub-banner-image .blog-container h1,
.subpage-banner_area .sub-banner-image .page_title h1{
    font-weight:normal;
    font-family: 'gilroyextrabold';
    font-size:56px;
    line-height:67px;
    margin:0px;
}
.top_banner_area .sub-banner-image .blog-container .breadcrumb,
.subpage-banner_area .sub-banner-image .blog-container .breadcrumb{
    background:none;
    padding:0px;
    margin:0;
}
.subpage-banner_area .sub-banner-image{
    height:190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size:cover;
    background-position:center;
    background-attachment: fixed;
}


.page-content,
.page-content-services,
.page-content-industries{
    background:#F0F2F5;
    padding:30px 0 70px;
}
.page-content-industries{
    padding:30px 0 35px;
}
.page-content-services .left-content-services{
    background:#fff;
    border-radius:15px;
    padding:30px;
    margin-right:30px;
}
.page-content-services .left-content-services.left-content-services{
    margin:0;
}
.page-content-services .left-content-services .services-sub-title{
    margin-bottom:35px;
}
.page-content-services .left-content-services .services-sub-title h2{
    margin:0px;
    font-size:42px;
    font-weight:normal;
    font-family: 'gilroyextrabold';
    line-height:54px;
    color:#3D3F45;
}
.page-content-services .left-content-services .services-sub-title h2 span{
    color:#3389C2;
}
.page-content-services .left-content-services .service-description{
    /* color:#A5A5A5; */
    font-size:16px;
    line-height:20px;
}
.page-content-services .left-content-services .service-description h2{
    line-height: 30px;
    margin-top: 0px;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 15px;
}
.page-content-services .left-content-services .service-description h5{
    font-size:16px;
    line-height:22px;
}

.page-content-services .left-content-services .service-description p{
    margin:0px 0px 18px;
}

.breadcrumb-sec{
    background:#F0F2F5;
    padding:25px 0px 0px;
}
.breadcrumb-sec p{
    margin-bottom: 0px;
    font-size: 14px;
    color: #A5A5A5;
    font-weight: 900;
    text-transform: uppercase;
}
.breadcrumb-sec p a{
    color:#A5A5A5; 
}
.breadcrumb-sec i{
    margin: 0 5px;
    vertical-align: middle;
    font-size: 20px;
    line-height: 15px;
    top: -2px;
    position: relative;
}
.breadcrumb-sec .breadcrumb_last{
    color:#3D3F45;
}
.right-box{
    padding-left:45px;
}
.right-box .titlebox{
    text-align: center;
}
.right-box .titlebox h2{
    margin:0px;
    font-size:36px;
    font-weight:normal;
    font-family: 'gilroyextrabold';
    line-height:45px;
    color:#3D3F45;
    margin-bottom:20px;
}
.right-box .titlebox h2 span{
    color:#3389C2;
}
.resolurce-list{}
.resolurce-list .resource-block{
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    padding:10px 15px;
}
.resolurce-list .resource-block h2{
    color:#A5A5A5;
    font-size:18px;
    line-height:26px;
    font-weight:normal;
    font-family: 'gilroylight';
    margin:0;
}
.resolurce-list .resource-block h2 a{
    color:#333;    
}
.resolurce-list .resource-block .readmore-link{
    text-align: right;
    font-size:14px;
    line-height:19px;
    text-transform:uppercase;
    margin-top:5px;
}
.resolurce-list .resource-block .readmore-link a{
    color:#F79420;
    font-weight:700;
}
.resolurce-list .resource-block .readmore-link a i{
    margin-left:5px;
}
.resolurce-list .resource-block .readmore-link a:hover{
    color:#3389c2;
}

.right-box .chat-btn{
    margin-top:5px;
    text-align: center;
}
.right-box .chat-btn a{
    color:#F79420;
    width:100%;
    display: inline-block;
    border-radius:50px;
    line-height:50px;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    border:2px solid #F79420;
}

.right-box .chat-btn a img{
    margin-left:15px;
}


/*--- Industries Section Design ----*/
.industries-content-sec{
    background:#fff;
    border-radius:15px;
    padding:30px 45px;
}
.industries-content-sec .row{
    display: flex;
    /* align-items: center; */
}
.industries-content-sec .left-title-sec{
    text-align:left;
}
.industries-content-sec .left-title-sec h2{
    margin:0px;
    /* font-size:52px; */
    font-size:42px;
    font-weight:normal;
    font-family: 'gilroyextrabold';
    line-height:50px;
    color:#3D3F45;
    margin-bottom:20px;
    max-width:90%;
}
.industries-content-sec .left-title-sec h2 span{
    color:#3389C2;
}
.industries-content-sec .right-content-sec{
    padding-left:25px;
    color:#333;
    font-size: 16px;
    line-height: 20px;
}
.industries-content-sec .right-content-sec h2{
    line-height: 30px;
    margin-top: 0px;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 15px;
}
.industries-content-sec .right-content-sec h5{
    font-size:16px;
    line-height:22px;
}

.industries-content-sec .right-content-sec p{
    margin:10px 0px 15px;
}
.industries-content-sec .right-content-sec p:first-child{
    margin-top:0px;
}
.industries-content-sec .right-content-sec h4{
    margin-top:20px;
    margin-bottom:15px;
}
.industries-content-sec .right-content-sec strong{
    font-weight:800;
}

.industries-service-section{
    /* padding:85px 0px 0px 45px; */
    padding:60px 0px 0px 0px;
}
.industries-service-section .row{
    display: flex;
    align-items: center;
}
.industries-service-section .industries-service-title {
    text-align: right;
}
.industries-service-section .industries-service-title h2 {
    margin: 0px;
    font-size: 52px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    line-height: 58px;
    color: #3D3F45;
    margin-bottom: 20px;
}
.industries-service-section .industries-service-title h2 span{
    color:#3389C2;
}
.industries-service-section .service-block{
    /* padding-left:25px; */
}
.industries-service-slide .service-block .slideshow .slide-controls{
    display: none;
}
.industries-service-section .box-service {
    width: 175px;
    height: 185px;
    background: #fff;
    align-items: center;
    /*display: flex;
     margin: 0 auto; */
    margin-left:auto;
    justify-content: center;
    border-radius:10px;
    position: relative;
    padding:25px 0 0;
}
.industries-service-section .box-service img{
    margin-bottom:25px;
}
.industries-service-section .box-service .service-content img{
    max-width:58px;
    min-height:58px;
    margin:0 auto 20px;
}
.industries-service-section .box-service .service-title{
    font-size: 16px;
    font-family: 'gilroyextrabold';
    color: #3D3F45;
    text-align: center;
    padding: 0 8px;
    line-height: 20px;
}
.industries-service-section .slick-slider{
    margin-bottom:0px;
}
.industries-service-section .slick-slide {
    padding-bottom: 35px;
}
.industries-service-section .box-service .plus-icon {
    position: absolute;
    bottom: -15px;
    background:#FFFFFF;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    width:31px;
    height:31px;
    color:#F79420;
    border-radius:50%;
    text-align: center;
    line-height:31px;
    left: 50%;
    margin-left: -15.5px;
}
.industries-service-section .box-service .plus-icon a{
    color:#F79420;
}
.industries-service-section .box-service:hover .plus-icon{
    background:#3389c2;
    color:#fff;
    transition:0.5s;
}
.industries-service-section .box-service:hover .plus-icon a{
    color:#fff;
}
.cta-section{
    background:#3389C2;
    color:#fff;
    padding:40px 0px 50px;
    text-align: center;
}
.cta-section .cta-title h2{
    margin: 0px 0px 10px;
    font-size: 48px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    line-height: 58px;
}
.cta-section .cta-title h2 span{
    color:#3D3F45;
}
.cta-section .cta-desc{
    font-size:16px;
    line-height: 24px;
    max-width: 800px;
    margin:0 auto;
} 
.cta-section .cta-desc p{
    margin-bottom:25px;
}
.cta-section .cta-btn{}
.cta-section .cta-btn a{
    background:#F79420;
    color:#fff;
    max-width:310px;
    width:100%;
    display: inline-block;
    border-radius:50px;
    line-height:50px;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
}
.cta-section .cta-btn a img{
    margin-left:15px;
}
.latest-news-section.industries-sec + .industries-top-sec{
    padding-top: 40px;
}

.business-type-section{
    border-top:1px solid #f0f2f5;
}
.business-type-section .business-title h3{
    color:#F79420;
    font-size:25px;
    font-weight: normal;
    font-family: 'gilroyextrabold';    
    margin: 20px 0 15px;
}
.business-type-section .business-type-list ul{
    list-style: none;
    margin:0;
    padding:0;
}
.business-type-section .business-type-list ul li{
    position: relative;
    padding:0px 0px 0px 15px;
    margin-bottom:5px;
}
.business-type-section .business-type-list ul li:before {
    content: '';
    background: #F79420;
    width: 7px;
    height: 7px;
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 7px;
}



/*----- BLOG PAGE DESIGN ------*/
.page-content-blog{
    background:#F0F2F5;
    padding:30px 0 40px;
}
.page-content-blog .container{
    max-width:998px;
}
.blog-top-sec {
    margin-bottom:42px;
}
.blog-top-sec .row{
    display: flex;
    align-items: center;
}
.blog-top-sec .top-title h2{
    margin:0px;
    font-size: 52px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    line-height: 58px;
    color:#3D3F45;
}
.blog-top-sec .top-title h2 span{
    color:#3389C2;
}
.blog-top-sec .blog-search-box{
    background: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    padding:0 15px;
    border-radius: 5px;
    width:56%;
    margin-left:auto;
}
.blog-top-sec .blog-search-box .blog_search{
    width:100%;
}
.blog-top-sec .blog-search-box input{
    width:calc(100% - 30px);
    border:0;
    height:35px;
    color:#A5A5A5;
}
.blog-top-sec .blog-search-box input::placeholder{
    color:#333;   
}
.blog-top-sec .blog-search-box button{
    background: none;
    border: 0;
    padding: 0;
    width: 25px;
    font-size:20px;
    color:#3389C2;
}

.blog-box{
    background:#fff;
    border-radius:10px;
    display: inline-block;
    width: 100%;
    overflow:hidden;
    margin-bottom:40px; 
}
.blog-box .blog_image{
    max-width:275px;
    float:left;
}
.blog-box .blog_image img{
    height:270px;
    width:275px;
    object-fit:cover;
}
.blog-box .blog_desc_box{
    padding: 20px 35px;
    width: calc(100% - 275px);
    float: left;
    height: 270px;
    display: flex;
    align-items: center;
}
.blog-box .blog-content-box{
    width:100%;
}
.blog-box .blog_desc_box .blog_date{
    color:#A5A5A5;
    margin-bottom:20px;
    text-align: right;
}
.blog-box .blog_desc_box .blog_date img{
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
}
.blog-box .blog_desc_box .blog_title{
    font-size:28px;
    line-height:40px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin-bottom:10px;
    padding-right:25px;
}
.blog-box .blog_desc_box .blog_title a{
    color:#1A1B1D;    
}
.blog-box .blog_desc_box .blog_desc{
    color:#333;
    line-height:22px;
    font-size:16px;
    height:44px;
    overflow:hidden;
    margin-bottom:40px;
}
.blog-box .blog_desc_box .readmore_link {
    text-align: right;
    font-size:14px;
    color:#1A1B1D;
    text-transform:uppercase;
    font-weight:700;
}
.blog-box .blog_desc_box .readmore_link a{
    color:#1A1B1D;
}
.blog-box .blog_desc_box .readmore_link a i{
    margin-left:10px;
}
.blog-box .blog_desc_box .readmore_link a img{
    max-width: 14px;
    margin-left: 10px;
    vertical-align: middle;
}
.post-pagination{
    text-align:center;
    color:#1B1E21;
    font-weight:700;
    font-size:14px;
    line-height:19px;
}
.post-pagination a,
.post-pagination span{
    width: 32px;
    height: 32px;
    display: inline-block;
    line-height: 32px;
    border-radius:3px;
    color:#1B1E21;
}
.post-pagination span{
    background:#F79420;
    color:#fff;
}
.post-pagination a.next{
    text-indent:-8888px;
    background:url(images/icon-next-disable.png) no-repeat center;
}
.post-pagination a.prev{
    text-indent:-8888px;
    background:url(images/icon-prev-disable.png) no-repeat center;
}
.post-pagination a.next:hover{
    background:url(images/icon-next.png) no-repeat center;
}
.post-pagination a.prev:hover{
    background:url(images/icon-prev.png) no-repeat center;
}
.no-records{
    color: #1B1E21;
    font-weight: 700;
    font-size: 20px;
}

.blog_content_part{
    background:#F0F2F5;
    padding:30px 0 40px;
}
.blog_content_part .post-title h2{
    font-size: 32px;
    line-height: 45px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin: 0 0 20px;
}
.blog_content_part .post-main-image{
    margin-bottom:30px;
    height:450px;
    border-radius:10px;
    position: relative;
    overflow: hidden;
}
.blog_content_part .post-main-image img{
    width:100%;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
}
.blog_content_part .post-content-area{
    background:#fff;
    border-radius:10px;
    padding:30px 45px;
    display: inline-block;
    width:100%;
    /* color: #A5A5A5; */
}
.blog_content_part .post-content-area p{
    margin-bottom:18px;
}
.blog_content_part .post-content-area h2,
.blog_content_part .post-content-area h3,
.blog_content_part .post-content-area h4{
    font-weight:800;
}
.blog_content_part .post-content-area h2{
    font-size:25px;
}

.blog-top-searchsec{
    display: flex;
}
.blog-top-searchsec .topic_serach .showtype{
    height:50px;
    padding:15px;
}
.blog-top-searchsec .topic_serach ul.list_cat{
    top:50px;
    box-shadow:0px 14px 20px rgba(0,0,0,0.1);
}
.blog-top-searchsec .topic_serach ul.list_cat > li > a{
    padding: 10px 15px;
    font-size: 16px;
}
.post-type-archive-client-focus .topic_serach{
    display: none;
}

.topic_serach{
    width:44%;
    margin-left:10px;
}
.search_box input, .showtopics, .showtype {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    padding: 12px 15px;
    position: relative;
    color: #4f5362;
    background:#fff; 
}
.showtopics>i, .showtype>i {
    position: absolute;
    right: 15px;
    font-size: 25px;
}
.topics_box ul, .type_box ul {
    padding: 10px 0;
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 48px;
    cursor: pointer;
    list-style: none;
    border: 1px solid #eaeaea;
    display: none;
    z-index: 111;
}
ul.list_cat > li > a{
    padding: 10px 20px;
    display: block;
}
ul.list_cat > li:hover,
ul.list_cat > li.active {
    background-color: #3389c2;
}
ul.list_cat > li:hover > a,
ul.list_cat > li.active > a {
    color: #ffffff;
}
.topics_box ul a, .type_box ul a {
    color: #4f5362;
}
.topics_box, .type_box {
    position: relative;
}


/*----- TEAM PAGE DESIGN ------*/
.bg-white{
    background:#fff !important;
}
.page-content-team{
    background:#F0F2F5;
    padding:30px 0 0;
}
.page-content-team .team-department-wise {
    padding:80px 0px 30px 0px;
}
.page-content-team .team-department-wise .team_list{
}
.page-content-team .team-department-wise .team_list .member_box{
    margin: 0 12px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    margin-top:70px;
}
.page-content-team .team-department-wise .team_list .member_box .member_image{
    max-width: 134px;
    margin: -67px auto 20px;
}
.page-content-team .team-department-wise .team_list .member_box .member_image img{
    width:134px;
    height:134px;
    border-radius:50%;
}
.page-content-team .team-department-wise .team_list .member_box .member-name{
    font-size:18px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    color:#3389C2;
    line-height:21px;
    margin-bottom:5px;
}
.page-content-team .team-department-wise .team_list .member_box .member-designation{
    color:#333;
    font-size:18px;
    font-weight:600;
    line-height:22px;
    margin-bottom:15px;    
}
.page-content-team .team-department-wise .team_list .member_box .readmore-link {
    text-align: center;
    font-size:14px;
    color:#1A1B1D;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:15px
}
.page-content-team .team-department-wise .team_list .member_box .readmore-link a{
    color:#1A1B1D;
}
.page-content-team .team-department-wise .team_list .member_box .readmore-link a i{
    margin-left:10px;
}

.team-department-wise .row{
    display: flex;
    align-items: center;
}
.team-department-wise .department-name{
    text-align: right;
    max-width: 270px;
    margin: 0 auto;
}
.team-department-wise .department-name h2{
    font-size: 52px;
    line-height: 58px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin:0px;
}
.team-department-wise .department-name h2 span{
    color:#3389C2;
}

.team-department-wise.directors .department-name h2 span{
    display: none;
}


.team_list .slideshow .slide-controls{
    top:-50px;
    background: none;
    padding: 0;
}
.team_list .slideshow .slide-controls ul.custom-dots li a span{
    box-shadow:none;
    border-color:#F79420;
}
.team_list .slideshow .slide-controls ul.custom-dots li.slick-active a span{
    background:#F79420;
}
.team_list .slideshow .slide-controls a{
    text-shadow:none;
    color:#3389C2;
}


.page-content-team .team-department-wise:nth-child(even){
    background:#fff;
}
.even-row{
    background:#fff;
}
.page-content-team .team-department-wise:nth-child(even) .team_list .member_box{
    background:#F0F2F5;
}

/*---- Team Detail Page ----*/
.single_team_section{}
.single_team_section .page-content{
    padding-top:45px;
}
.member_left .single_member_image{}
.member_left .single_member_image img{
    width:290px;
    border-radius:50%;
    height:290px;
    object-fit: cover;
    border: 6px solid #FFFFFF;
}
.member_right .member_name h2{
    font-size: 24px;
    line-height: 29px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin:0px 0px 5px 0px;
    color:#3389C2;
}
.member_right .member_position{
    font-size:20px;
    color:#3D3F45;
    line-height:27px;
    margin-bottom:15px;
    font-weight:500;
}
.member_right .member-desc{
    color:#333;
    line-height:21px;
}
.member_right .member-desc #bannerR,
.member_right .member-desc p{
    margin-bottom: 20px
}
.social_link a{
    width: 32px;
    height: 32px;
    color: #fff;
    background: #000000;
    border-radius: 3px;
    display: inline-block;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    margin-left: 10px;
}

.page-top-section{}
.page-top-section .single_member_image img{
    width:290px;
    border-radius:50%;
    height:290px;
    object-fit: cover;
    border: 6px solid #FFFFFF;
}
.page-top-section .member_name h2{
    font-size: 32px;
    line-height: 40px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin:0px 0px 5px 0px;
    color:#3389C2;
}
.page-top-section .member_position{
    font-size:26px;
    color:#3D3F45;
    line-height:35px;
    margin-bottom:15px;
    font-weight:500;
}
.page-top-section > .row{
    display: flex;
    align-items: center;
}
.page-top-section .social_link{
    display: inline-block;
    vertical-align: top;
    height: 40px;
}
.page-top-section .member_phone,
.page-top-section .member_email{
    font-size:18px;
    line-height:24px;
    color:#3D3F45;
    margin-bottom:20px;
}
.page-top-section .member_email{
    margin-bottom:0px;
}
.page-top-section .member_phone img,
.page-top-section .member_email img{
    margin-right:15px;
    width:20px;
}
.right-sec-team{
    background: #fff;
    min-height:280px;
    padding:30px 50px;
    border-radius: 10px;
}
.right-sec-team h2{
    font-size: 28px;
    line-height: 38px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin:0px 0px 20px 0px;
    color:#3389C2;
}
.right-sec-team .industries-sec{
    padding-left:15px;
}
.right-sec-team ul{
    margin:0;
    padding:0;
    list-style: none;
}

.right-sec-team ul li{
    line-height:21px;
    margin-bottom:10px;
    font-weight:600;
}

.team-member-content{
    padding:40px 0px;
    font-size:16px;
    line-height:21px;
    color:#333;
}
.team-member-content p{
    margin-bottom:25px;
}
.recommended-section{
    padding:50px 0 40px;
    display:flex;
    align-items: center;
}
.recommended-slider-sec{
    padding-left:25px;
}
.recommended-section .news-list{
    margin:0 -15px;
}
.recommended-section .sec-title{
    text-align:right;
    padding-left:50px;
}
.recommended-section .sec-title h2{
    font-weight: normal;
    font-family: 'gilroyextrabold';
    font-size: 52px;
    line-height: 58px;
    margin: 0px;
    color:#3389C2;
}
.recommended-section .sec-title h2 span{
    color:#3D3F45;
}
.recommended-section .news-list .news-block{
    margin-bottom:0px;
}


.recommended-section .slideshow .slide-controls{
    top:-50px;
    background: none;
    padding: 0;
}
.recommended-section .slideshow .slide-controls ul.custom-dots li a span{
    box-shadow:none;
    border-color:#F79420;
}
.recommended-section .slideshow .slide-controls ul.custom-dots li.slick-active a span{
    background:#F79420;
}
.recommended-section .slideshow .slide-controls a{
    text-shadow:none;
    color:#3389C2;
}



/*------- Contact Page -------*/

.contact-page .container{
    max-width:980px;
}
.page-template-page-contact .page-content{
    background:#fff;
    padding-top:95px;
}
.page-template-page-contact .breadcrumb-sec{
    display: none;   
}
.contant-content-top{

}
.contant-content-top .contact-title h2{
    font-size: 42px;
    line-height: 48px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin:0px 0px 30px;
}
.contant-content-top .contact-title h2 span{
    color:#3389C2;
}
.contact-info{
    max-width:405px;
    font-size: 18px;
    line-height: 21px;
    color:#333;
}
.contact-info i {
    color: #F79420;
    width: 30px;
    font-size: 20px;
}
.contact-info a{
    color:#333;   
}
.contact-info .row{
    margin-bottom:27px;
}
.contact-info img{
    width:20px;
    margin-right:10px;
    margin-bottom:5px;
    vertical-align: middle;
    display: inline-block;
}
.contact-info .contact-address{
    line-height:24px;
}
.contact-info .contact-address i{
    font-size:18px;
}
.contact-info .contact-address p{
    width:100%;
    display: inline-block;
    vertical-align:middle;
}
.contact-info .contact-address .col{
    display: inline-block;
    vertical-align: top;
}
.contact-info .contact-address .col.icon{
    width:30px;
}
.contact-info .contact-address .col{
    width: calc(100% - 40px);
    margin: 0;
}

.contact-form-section{}
.contact-form-section .form-title h2{
    font-size: 42px;
    line-height: 48px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin:0px 0px 30px;
    text-align: center;
}
.contact-form-section .form-title h2 span{
    color:#3389C2;
}
.contact-form-section .contact-form input{
    height: 50px;
    border: 2px solid #F0F2F5 !important;
    border-radius: 5px;
}
.contact-form-section .contact-form  textarea.large{
    border: 2px solid #F0F2F5;
    border-radius: 5px;
    height: 130px;
}

.contact-form-section {
    max-width: 392px;
    margin: 0 auto;
}
.contact-form-section .gform_wrapper .contact-form ul li.gfield{
    padding:0px;
    margin:20px 0 0;
}
.contact-form-section .gform_wrapper .contact-form ul li.gfield.captcha_div{
    margin:0;
    height:0;
}

.contact-form-section .gform_wrapper .contact-form ul li.gfield input,
.contact-form-section .gform_wrapper .contact-form ul li.gfield textarea{
    padding-left:50px !important;
    color: #333;
    margin:0;
}
.contact-form-section .gform_wrapper .contact-form ul li.gfield input::placeholder,
.contact-form-section .gform_wrapper .contact-form ul li.gfield textarea::placeholder{
    color: #A5A5A5;   
}

.contact-form-section .gform_wrapper .contact-form ul li.gfield textarea{
    padding-top:15px;
}
.contact-form-section .gform_wrapper .contact-form ul li.username input{
    background:url(images/icon-user-contact.png) no-repeat;
    background-position:20px center;
    background-size:18px;
}
.contact-form-section .gform_wrapper .contact-form ul li.useremail  input{
    background:url(images/icon-email-contact.png) no-repeat;
    background-position:20px center;
    background-size:18px;
}
.contact-form-section .gform_wrapper .contact-form ul li.userphone  input{
    background:url(images/icon-phone-contact.png) no-repeat;
    background-position:20px center;
    background-size:18px;
}
.contact-form-section .gform_wrapper .contact-form ul li.userenquiry textarea{
    background:url(images/icon-enquiry-contact.png) no-repeat;
    background-position:20px 18px;
    background-size:18px;
}
.contact-form-section .gform_wrapper .contact-form ul li.usercompany  input{
    background:url(images/workplace.png) no-repeat;
    background-position:20px center;
    background-size:18px;
}
.contact-form-section .gform_wrapper .contact-form .gform_footer {
    margin: 10px 0 0;
    padding: 0;
}
.contact-form-section .gform_wrapper .contact-form .gform_footer input {
    width: 100%;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    border:0;
    background:#F79420 url(images/arrow-right-submit.png) no-repeat;
    background-position:72% center;
    background-size:18px;
    margin:0;
}
body .gform_wrapper .contact-form .top_label div.ginput_container{
    margin:0;
    padding:0;
}

.gform_wrapper .contact-form div.validation_error {
    display: none !important;
}

.gform_wrapper .contact-form li.gfield.gfield_error{
    background-color: transparent !important;
    border:none !important;
    margin:20px 0 0 !important;
    position: relative;
}
.gform_wrapper .contact-form .field_description_below .gfield_description {
    padding-top: 0px !important;
    position: absolute;
    text-align: right;
    top:15px;
    color:#ff4f4f;
    font-weight:normal;
    padding-right:0px !important;
    right: 15px;
    width: 50%;
}
.gform_wrapper .contact-form li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.gform_wrapper .contact-form li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 5px;
    /* color:#ff4f4f; */
}
.gform_wrapper.gform_validation_error .contact-form .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){
    max-width:100% !important;
}


.map-box p{
    margin:0px;
}
.map-box iframe{
    width:100%;
    margin:0 0 -6px;
    height:420px;
}

section.default_page {
    background: #f0f2f5;
}
section.default_page .col-sm-12.page_content {
    background: #fff;
    margin-top: 50px;
    margin: 50px 15px 50px;
    border-radius: 15px;
    padding:15px 30px;
}

/*---------- Testimonial Section --------*/
.testimonial-section{
    padding:50px 0 80px;
    background:#fff;
    text-align: center;
    color:#333;
}
.testimonial-section .testi-outer{
    max-width: 1060px;
    margin: 0 auto;
}

.testimonial-section .testimonial_item {
    font-size: 17px;
    /* color: #A5A5A5; */
}
.testimonial-section .testimonial_item .author-name{
    font-size:17px;
    font-style: italic;
    margin-top:15px;
    color:#3D3F45;
}
.testimonial-section .slick-dots{
    bottom: -50px;
    padding-left:0;
}
.testimonial-section .slick-dots li button:before{
    font-size:12px;
    color:#d4d4d4;
    opacity:1;
}
.testimonial-section .slick-dots li.slick-active button:before{
    color:#1d3a66;
    opacity: 1;
}

h2.header.content-header,
.entry-content.content-body h2 {
    color: #3D3F45;
    font-weight: 800;
}
.entry-content.content-body {
    /* color: l; */
}

.tollfree-number{
    display: inline-block;
    margin-left: 15px;
}



/*--------- Location Page Design --------*/
.page-content-location{
    padding:32px 0px;
}
.page-template-page-location,
.tax-location-categories{
    background:#F0F2F5;
}
.top-location-bar{
    display: flex;
    align-items: center;
    margin-bottom:30px;
}
.top-location-bar .topic_serach{
    margin-left:auto;
}


.page-content-location .section-title h2{
    margin:0px;
    font-size: 52px;
    line-height: 64px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    color:#3389C2;
}

.locationlist{
    margin:0;
}
.locationlist .month-title{
    background:#F79420;
    color:#fff;
    font-size:20px;
    line-height:38px;
    font-family:'Montserrat';
    font-weight:700;
    padding:0px 15px;
    margin-bottom:30px;
    border-radius:9px;
}
.location-block{
    /* display: flex;
    align-items: center; */
    width: 100%;
    margin-bottom: 35px;
    background:#fff;
    box-shadow:0px 3px 16px rgba(0, 0, 0, 0.08);
    border-radius:10px;
    overflow:hidden; 
}
.location-block .col-sm-5{
    padding:0px;
    width:38%;
}
.location-block .col-sm-5 .main-imgbox img{
    height:270px;
    object-fit:cover;
}
/* .location-block .col-sm-7{
    padding:0px;
    width:62%;
} */
.location-right-content .duration-box{
    padding-left: 25px;
    border-left:1px solid #E6E6E6;
    border-right:1px solid #E6E6E6;
}
.location-right-content .focus-box{
    padding-left:30px;
}
.location-block .location-right-content .row{
    margin:0;
    padding:15px 30px;
    color:#333;
}
.location-block .location-right-content .row:first-child{
    border-bottom:1px solid #E6E6E6;
}

.location-block .location-right-content .col-sm-2,
.location-block .location-right-content .col-sm-12,
.location-block .location-right-content .col-sm-3,
.location-block .location-right-content .col-sm-6{
    padding:0px;
}

.location-block .location-right-content .row.first-row{
    padding:25px 30px 15px;
    display: flex;
    align-items: center;
}

.location-block .location-right-content .title-box{
}
.location-block .location-right-content .block-box .title-box{
    color:#3389C2;
    font-size:15px;
    line-height:20px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:5px;
}
.location-block .location-right-content .block-box .title-box i{
    width:15px;
    margin-right:8px;
    font-size:17px;
    text-align: center;
 }
.location-block .location-right-content .block-box .content-box{
    line-height:21px;
}
.location-block .location-right-content .block-box .content-box p{
    margin-bottom:0px;
}

.location-block .location-right-content .block-box .location-content-box{
    margin:0px;
    font-size: 49px;
    line-height: 55px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    color:#3389C2;
}

.location-block .location-right-content .block-box.local-box{
    padding-left:15px;
}
.location-block .location-right-content .course-title-sec{
    font-size:20px;
    line-height:21px;
    font-weight:700;
    font-family:'Montserrat';
    color:#14307E;
    margin-bottom:10px;
}
.location-block .location-right-content .block-box.content-info-box .content-box{
    line-height:28px;
}
.location-block .location-right-content .row.third-row{
    border:0px;
    display: flex;
    align-items:center; 
}
.location-block .location-right-content .row.third-row .button-sec{
    width:auto;
    margin-left:auto;
}

.location-page-content hr{
    border-color:#d9dadc;
}
.location-page-content h4{
    font-weight:bold;
    color:#3D3F45;
    font-size:16px;
    margin-bottom: 30px;
}

.date-view{
    display: flex;
    align-items: center;
}
.date-view .date-right{
    margin-left:7px;
}
.date-view .event-day{
    font-size: 61px;
    line-height: 68px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    color:#3389C2;
}
.date-view .event-month,
.date-view .event-year{
    font-family: 'gilroylight';
    color:#333;
    font-size:29px;
    line-height:25px;
    text-transform:uppercase;
}
.date-view .event-year{
    font-size:25px;
}

 /*----------- Location Page question------------*/

/*----------- Service List Page ------------*/
.page-content-services-main{
    background:#F0F2F5;
}
.page-content-services-main .servicelist{
    max-width:840px;
    margin:0 auto;
    padding:40px 0;
}
.servicelist .service-box{
    background:#fff;
    text-align: center;
    padding:0 15px;
    height:140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:25px;
    border-radius:10px;
}
.servicelist .service-box .service-title{
    min-height: 68px;
    display: flex;    
    align-items: center;
}
.servicelist .service-box .service-title h2{
    font-size: 28px;
    line-height: 33px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    color:#3389C2;
    margin:0;
}
.servicelist .service-box .readmore-link{
    margin-top:17px;
}
.servicelist .service-box .readmore-link a{
    color:#1A1B1D;
    font-size:14px;
    line-height:19px;
    text-transform:uppercase;
    font-weight:700;
}
.servicelist .service-box .readmore-link a i{
    margin-left:10px;
}
.servicelist.planing-list {
    margin-top: 20px;
}
.servicelist.planing-list .service-box{
    box-shadow:0px 3px 6px hsla(0, 0%, 0%, 0.16);
}
.servicelist.planing-list .service-box .service-title h2{
    font-size: 19px;
    line-height: 26px;
    padding:0px;
}
.servicelist.planing-list .row{
    margin:0 -10px;
}
.servicelist.planing-list .row .col-sm-3 {
    padding: 0 10px;
}
.planing-content ul{
    padding-left:15px;
}
.planing-content ul li{
    margin-bottom:5px;
}


/************************ RESOURCES PAGE STYLE ****************************/
.page-template-page-resources .breadcrumb-sec{
	background:#fff;
}
.resources-page {
    padding: 40px 0;
    position:relative;
}
.search_box input, .showtopics, .showtype {
    width: 100%;
    height: 40px;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    padding: 10px 15px;
    position: relative;
    font-size: 16px;
    color: #4f5362;
}


.filter_label {
    font-size:22px;
    color: #14307e;
    font-weight: bold;
    padding-bottom: 7px;
}
.filter-section i.fa.fa-chevron-down {
    position: absolute;
    right: 13px;
    top: 14px;
    font-size: 18px;
}
.topics_box ul, .type_box ul {
    padding: 10px 0;
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 38px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    border: 1px solid #eaeaea;
    display: none;
    z-index: 111;
}
ul.list_cat > li > a{
    padding: 10px 20px;
    display: block;
}
ul.list_cat > li:hover,
ul.list_cat > li.active {
    background-color: #14307e;
}
ul.list_cat > li:hover > a,
ul.list_cat > li.active > a {
    color: #ffffff;
}
.topics_box ul a, .type_box ul a {
    color: #4f5362;
}
.topics_box, .type_box {
    position: relative;
}
.resources-section {
    padding: 45px 0;
    clear: both;
}
.showtopics,
.showtype {
    cursor: pointer;
}
.showtopics > i,
.showtype > i{
    position: absolute;
    right: 15px;
    font-size: 18px;
}
.noresource_found {
    padding: 40px 0;
    text-align: center;
    font-size: 25px;
    color: #51758c;
    font-weight: bold;
    display: none;
}
.resources_items_list.all_res {
    display: flex;
    display: -webkit-box;   
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex; 
    flex-flow: wrap;
    padding:0;
}
.resource_box_main {
    width:33.33%;
    float: left;
    padding: 0 15px;
    margin-bottom: 30px;
}
.resource_sub_box > .resource_image {
    position: relative;
    width:100%;
}
.resource_sub_box > .resource_image img{
    width:100%;
}
.resource_sub_box > .resource_image > img{
    height:230px;
    object-fit: cover;
}
.type_icon {
    position: absolute;
    bottom: -20px;
    right: 15px;
}
.resource_sub_box {
    display: -webkit-box;   
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex; 
    flex-flow: wrap;
    height: 100%;
    background-color: #f5f5f5;
}
.resource_conent {
    padding: 20px 15px;
    background-color: #f5f5f5;
    display: -webkit-box;   
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex; 
    align-items: flex-end;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    flex-flow: wrap;
}
.res_relationship {
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 300;
    width: 100%;
}
.res_title {
    font-size: 18px;
    font-weight: 300;
    color: #38576d;
    width: 100%;
}
.res_btn {
    padding-top: 15px;
}
.res_btn > a {
    background-color: #145192;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 20px;
    display: inline-block;
}
.res_btn > a:hover{
    background-color: #000;
}
.res_btn > a > i{
    padding-left: 5px;
}
.pop_v{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 660px;
    height: 460px;
    margin: auto;
    z-index: 111;
}
.close_btn {
    position: absolute;
    right: 0;
    top: -20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.overlay{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 111;
}
div#loadMore {
    overflow: hidden;
    clear: both;
    text-align: center;
    padding-top: 40px;
}
div#loadMore > a {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 15px 30px;
    color: #ffffff;
    border-radius: 5px;
    background: #3389c2;
}

.popup-download-resource {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 660px;
    height: 460px;
    margin: auto;
    z-index: 111;;
}
.close_popup {
    position: absolute;
    right: -15px;
    top: -15px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    background: #000;
    width: 35px;
    text-align: center;
    height: 35px;
    border-radius: 50%;
    font-weight: normal;
    line-height: 35px;

}
.popup-content {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    padding: 20px;
    width: 100%;
    max-width: 450px;
    position: relative;
}
.popup-box{
	display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
}
.popup-content .resource-form_wrapper{
	margin:0;
	padding:0;
}
.popup-content .resource-form_wrapper ul.gform_fields li.gfield{
	margin:0;
	padding:0;
	position: relative;
}
body .popup-content .gform_wrapper .top_label div.ginput_container{
	margin:0 0 15px;
}
.popup-content .resource-form_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
	margin: 0;
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 0 15px;
}
.popup-content .gform_wrapper .gform_footer{
	margin:0;
	padding:0px;
}
.popup-content .gform_wrapper .gform_footer input[type=submit]{
	width: 100%;
    height: 45px;
    background: #145192;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.gform_wrapper .resource-form div.validation_error {
    display: none !important;
}

.gform_wrapper .resource-form li.gfield.gfield_error{
    background-color: transparent !important;
    border:none !important;
    position: relative;
}
.gform_wrapper .resource-form .field_description_below .gfield_description {
    padding-top: 0px !important;
    position: absolute;
    text-align: right;
    top: 10px;
    color: #ff4f4f;
    font-weight: normal;
    padding-right: 0px !important;
    left: 0;
    width: 50%;
    text-align: right;
    right: 10px;
    left: auto;
}
.gform_wrapper .resource-form li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.gform_wrapper .resource-form li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 5px;
    color:#ff4f4f;
}
.gform_wrapper.gform_validation_error .resource-form .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){
    max-width:100% !important;
}
.gform_wrapper .resource-form li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), 
.gform_wrapper .resource-form  li.gfield_error textarea{
    border:1px solid #ccc;
}




/*--------- Responsive Media Start ---------*/

@media(min-width:1230px){
    .container{
        width:1230px;
    }
}

@media(max-width:991px){
    .navbar-toggle{
        display: block;
    }
    .top_menu .top-right-sec .menu-top-menu-container{
        display: none;
    }
    .top_menu .top-right-sec .top_right_info_icons{
        margin:auto;
        display: flex;
        align-items: center;
    }
    .header_wrapper {
        padding: 15px 0;
        position: relative;
    }
    .header_wrapper .top-right-sec{
        width:40%;
        margin-left:auto;
    }
    .header_menu{
        display: none;
        position: absolute;
        z-index: 1024;
        background: rgb(255, 255, 255);
        top: 100%;
        width:100%;
    }
    .header_menu > div > ul > li a{
        display: block;
        width:85%;
    }
    .header_menu span.toggle{
        position: absolute;
        right: -30px;
        top: 10px;
    }
    .current-menu-item.menu-item-has-children .toggle{
        float: none;
        right: 12px;
        margin-top:12px;
    }
    .header_menu > div > ul > li:last-child{
        padding-right:15px;
    }
    .menu-item-has-children > ul.sub-menu ul.sub-menu{
        left:0px;
    }
    .menu-item-has-children > ul.sub-menu{
        width:100%;
        position: relative;
    }
    .menu-item-has-children > ul.sub-menu li a{
        padding:18px 5px;
    }
    .header_menu > div > ul{
        border-top:1px solid #e8e8e8;
    }
    .header_menu > div > ul > li{
        width: 100%;
        text-align: left;
        padding: 12px 15px;
    }
    .header_menu > div > ul > li.current_page_item a:before{
        display: none;
    }
    .home-top-slider .slide img{
        height: 550px;
        object-fit: cover;
    }
    .home-top-slider .slide .slide-content h2{
        font-size: 40px;
        line-height: 42px;
    }
    .home-top-slider .slide .slide-content p {
        font-size: 17px;
        line-height: 25px;
    }
    .service-section {
        padding: 60px 0px;
    }
    .service-section .section-title h2,
    .about-section .about-right-sec .about-title h2,
    .industries-top-sec .industries-main-title h2,
    .latest-news-section .section-title h2{
        font-size: 35px;
        line-height: 40px;
    }
    .service-right-slide{
        padding-right:15px;
    }
    .service-section .service-block{
        padding-left:0px;
    }
    .service-block .slideshow .slide-controls{
        display: inline-block;
        position: relative;
        top:-30px;
    }
    .about-section{
        display: block;
    }
    .about-section .about-right-sec{
        padding-left:0px;
    }
    .about-section .about-right-sec h2{
        margin-top:25px;
        margin-bottom:20px;
    }
    .latest-news-section .section-title{
        padding:35px 0 50px;
    }
    .news-list {
        margin:0;
    }
    .news-list .news-block .col-xs-4,
    .news-list .news-block .col-xs-8{
        width:100%;
    }
    .news-list .news-block .news-content{
        padding:20px 15px 20px;
    }
    .news-list .news-block .news-content .row{
        display: flex;
    }
    .news-list .news-block .news-content .row > div{
        width:50%;
    }
    .nav-container{
        position: relative;
        text-align: center;
        top:15px;
    }
    .slideshow .slide-controls{
        display: inline-block;
        position: relative;
    }
    .top-slider .nav-container{
        position: absolute;
        top:auto;
        bottom:0;
    }
    .top-slider .slideshow .slide-controls{
        top:auto;
    }
    .top-slider .slideshow .slide-controls{
        display: inline-block;
        bottom:15px;
    }
    .home-top-slider .slide .slide-content .button-more{
        text-align:left;
    }

    .newsletter-section .container > .row{
        display:block;
        text-align: center;
    }
    .newsletter-section .newsletter-left-sec{
        margin-bottom:25px;
    }
    .newsletter-section .newsletter-right-sec{
        padding-right:15px;
    }
    .newsletter-section .newsletter-form{
        display: block;
        max-width:400px
    }
    .newsletter-section .newsletter-form .gform_body,
    .newsletter-section .newsletter-form .gform_footer{
        width:100%;
        padding-right:0px;
    }
    .newsletter-section .newsletter-form .gform_footer{
        text-align: center;
    }
    body .newsletter-section .gform_wrapper .gform_footer input.button, 
    body .newsletter-section .gform_wrapper .gform_footer input[type=submit]{
        max-width:200px;
    }

    .footer .footer-content-sec{
        display: block;
        text-align: center;
        padding:30px 0;
    }
    .footer .footer-content-sec .footer-grid-block{
        margin:0 0 20px;
    }
    .footer .footer-address-sec p{
        display: inline;
    }
}

@media(max-width:767px){
    .gray-box {
    margin-bottom: 30px;
}
    .home-top-slider .slide .slide-content {
        background-size: auto 100%;
        background-position: right;
    }

    .top_menu .top-right-sec .menu-top-menu-container{
        display: block;
    }
    .top_menu .top-right-sec{
        display: block;
    }
    .top_menu .top-right-sec ul{
        text-align: center;
    }
    .top_menu .top-right-sec ul li{
        margin:0 5px;
    }
    .top_menu .top-right-sec .top_right_info_icons{
        justify-content: center;
        margin-bottom: 5px;
    }
    .top_menu .top-right-sec .top_right_info_icons a{
        font-size:0px;
        margin:0 8px;
    }
    .top_menu .top-right-sec .top_right_info_icons a.contact-number i,
    .top_menu .top-right-sec .top_right_info_icons a i{
        vertical-align:middle;
        margin:0;
    }
    .service-slider .box-service{
        margin:auto;
    }
    .service-section .service-block{
        padding-top:25px;
    }
    .about-section .about-right-sec{
        margin-top:25px;
    }
    .about-img-sec img {
        border-radius: 10px;
        height: 400px;
        width: 100%;
        object-fit: cover;
    }
    .newsletter-section .newsletter-form ul.gform_fields li.gfield{
        width:100%;
        margin:0 0 20px;
    }
    .service-section .section-title h2,
    .service-section .section-desc{
        text-align: center;
    }
    .news-list > .col-sm-6{
        padding:0 15px;
    }
    .news-list .news-block{
        display: block;
    }
    .top_banner_area .sub-banner-image .blog-container h1, 
    .subpage-banner_area .sub-banner-image .page_title h1{
        font-size: 35px;
        line-height: 40px;
    }
    .contact-consltaion h2 {
 font-size: 35px !important;
        line-height: 40px !important;
}
    .page-content-services .left-content-services{
        margin:0;
    }
    .page-content-services .left-content-services .services-sub-title h2{
        font-size:35px;
        line-height:40px;
    }
    .right-box{
        padding:0 15px;
        margin-top:25px;
    }
    .page-content, .page-content-services, .page-content-industries{
        padding-bottom:40px;
    }
    .industries-content-sec .row{
        display: block;
    }
    .industries-content-sec{
        padding:30px 20px;
    }
    .industries-content-sec .left-title-sec{
        text-align: left;
    }
    .industries-content-sec .left-title-sec h2{
        font-size:35px;
        line-height:45px;
    }
    .industries-content-sec .right-content-sec{
        padding-left:0px;
    }
    .industries-service-section{
        padding:60px 0px 0px;
    }
    .industries-service-section .row{
        display: block;
    }
    .industries-service-section .service-block{
        padding-left:0px;
    }
    .industries-service-section .industries-service-title{
        text-align:center;
    }
    .industries-service-section .industries-service-title h2{
        font-size:35px;
        line-height:40px;
        margin-bottom:35px;
    }
    .industries-service-section .box-service{
        margin:auto;
    }
    .industries-service-section .slick-slider{
        margin-bottom:30px;
    }
    
    .team-department-wise .row{
        display: block;
    }
    .page-content-team .team-department-wise{
        padding:50px 0px 10px;
    }
    .team-department-wise .department-name{
        text-align: center;
        margin-bottom:25px; 
    }
    .team-department-wise .department-name h2{
         font-size:35px;
        line-height:40px; 
    }
    .page-content-team .team-department-wise .team_list .member_box{
        margin-bottom:25px
    }
     .member_left{
        text-align: center;
        margin-bottom: 25px;
    }
    .blog-top-sec .row{
        display: block;
    }
    .blog-top-sec .top-title{
        text-align: center;
        margin-bottom:15px
    }
    .blog-top-sec .top-title h2{
        font-size:35px;
        line-height:40px; 
    }
    .blog-box{
        margin-bottom:25px;
    }
    .blog-box .blog_image{
        width:100%;
        max-width:100%;
    }
    .blog-box .blog_image img{
        width:100%;
    }
    .blog-box .blog_desc_box{
        width: 100%;
        height:auto;
        padding:20px;
    }
    .blog-box .blog_desc_box .blog_date{
        text-align: left;
    }
    .blog-box .blog_desc_box .blog_title{
        font-size:22px;
        line-height:30px;
        padding-right:0px;
    }

    .contant-content-top .contact-title h2{
        font-size:35px;
        line-height:40px;
    }
    .contact-form-section .form-title h2{
        font-size:35px;
        line-height:40px;
        text-align: left;   
    }
    
    .page-top-section .single_member_image{
        text-align: center;
        margin-bottom:25px;
    }
    .page-top-section > .row{
        display: block;
    }
    .page-top-section .member_email{
        margin-bottom:25px;
    }
    .page-top-section > .row > .col-sm-4{
        text-align: center;
    }
    .right-sec-team{
        padding:30px;
    }
    .right-sec-team .industries-sec{
        padding-left:0px;
        margin-top:25px;
    }
    .recommended-section{
        display:block;
        padding-bottom:10px;
    }
    .recommended-section .sec-title{
        padding-left:0;
        text-align: center;
        margin-bottom:25px;
    }
    .recommended-section .sec-title h2{
        font-size:35px;
        line-height:40px;
    }
    .recommended-slider-sec{
        padding:0px;
    }
    .recommended-section .news-list{
        margin:0;
    }
    .recommended-section .slideshow .slide-controls{
        top:0;
    }

    .home-top-slider .slick-track{
        height:540px;
    }

    .top_menu .top-left-sec{
    	text-align:center;
    }
    .top_menu .top-left-sec ul li{
		margin:0 10px;    	 
    }
    .top_menu .top-right-sec .top_right_info_icons .tollfree-number a{
    	font-size:14px;
    }
    .pop_v{
    	width:100%;
    	padding:15px;
    }
    .resource_box_main{
    	width:100%;
    }
    .popup-download-resource{
    	width: 100%;
    	padding: 20px;
    }
    .popup-box{
    	left:0;
    	top:0;
    	padding:20px;
    }

}

@media(min-width:600px) and (max-width:767px){
    .blog-box .blog_image{
        width:220px;
    }
    .blog-box .blog_desc_box{
        width:calc(100% - 220px)
    }
}


@media(min-width:768px) and (max-width:991px){
    .service-slider .box-service{
        width:165px;
        height:165px;
    }
    .news-list .news-block{
        display: block;
    }
    .newsletter-section .newsletter-left-sec{
        width:100%;
    }
    .newsletter-section .newsletter-left-sec br{
        display: none;
    }
    .newsletter-section .newsletter-right-sec{
        width:100%;
    }
    .newsletter-section .newsletter-form{
        max-width:inherit;
    }
    .newsletter-section .newsletter-form .gform_body{
        width:70%
    }
    .newsletter-section .newsletter-form .gform_footer{
        width:26%;
        margin-left:4%;
        clear: none;
        float: left;
    }
    .gform_wrapper.gform_validation_error .newsletter-form .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){
        margin-top:0px;
    }
    .top_menu .top-right-sec{
        width:100%;
    }
    .top_menu .top-right-sec .menu-top-menu-container{
        display: block;
    }
    .top_menu .top-right-sec .top_right_info_icons{
        margin:0px;
    }
    .right-box{
        padding-left:0px;
    }
    .top_banner_area .sub-banner-image .blog-container h1, 
    .subpage-banner_area .sub-banner-image .page_title h1{
        font-size: 40px;
        line-height: 45px;
        margin:0px;
    }
    .industries-content-sec .row{
        display: block;
    }
    .industries-content-sec .row .col-sm-5,
    .industries-content-sec .row .col-sm-7{
        width:100%;
    }
    .industries-content-sec .left-title-sec h2{
        font-size: 40px;
        line-height: 45px;
        text-align:left;
    }
    .industries-content-sec .right-content-sec{
        padding-left:0px;
    }
    .industries-service-section{
        padding:65px 0px 0px;
    }
    .industries-service-section .row{
        display: block;
    }
    .industries-service-section .row .col-sm-4,
    .industries-service-section .row .col-sm-8{
        width:100%;
    }

    .industries-service-section .industries-service-title{
        text-align: center;
    }
    .industries-service-section .row .col-sm-5,
    .industries-service-section .row .col-sm-7{
        width:100%;
    }
    .industries-service-section .industries-service-title h2{
        font-size: 40px;
        line-height: 45px;
        margin-bottom:25px;
    }
    .industries-service-section .box-service{
        margin:auto;
    }
    .industries-service-section .slick-slider{
        margin-bottom:30px;
    }

    .team-department-wise .row{
        display: block;
    }
    .team-department-wise .row .col-sm-4,
    .team-department-wise .row .col-sm-8{
        width:100%;
    }
    .team-department-wise .department-name{
        text-align: center;
        margin-bottom:25px; 
    }
    .team-department-wise .department-name h2{
        font-size:40px;
        line-height:45px; 
    }
    .page-content-team .team-department-wise {
        padding: 50px 0px 10px 0px;
    }
    .page-content-team .team-department-wise .team_list .member_box{
        margin-bottom:25px
    }
    .member_left .single_member_image img{
        width:220px;
        height:220px;
    }
    .blog-top-sec .top-title h2{
        font-size:40px;
        line-height:45px;
    }
    .blog-box .blog_desc_box .blog_title{
        line-height:32px;
        font-size:26px;
    }
    .page-top-section > .row{
        display: block;
    }
    .page-top-section > .row > .col-sm-5{
        width:100%;
    }
    .page-top-section > .row > .col-sm-3{
        width:42%;
        margin-bottom:25px;
    }
    .page-top-section > .row > .col-sm-4{
        width:58%;
        padding-left:25px;
        padding-top:45px;
        margin-bottom:25px;   
    }
    .recommended-section{
        display:block;
        padding-bottom:10px;
    }
    .recommended-section .col-sm-5,
    .recommended-section .col-sm-6{
        width:100%;
    }
    .recommended-section .news-list .news-block{
        display: flex;
    }
    .recommended-section .news-list .news-block .col-xs-4{
        width:40%;
    }
    .recommended-section .news-list .news-block .col-xs-8{
        width:60%;
    }
    .recommended-section .sec-title{
        padding-left:0;
        text-align: center;
        margin-bottom:25px;
    }
    .recommended-section .sec-title h2{
        font-size:40px;
        line-height:45px;
    }
    .recommended-slider-sec{
        padding:0px 25px;
    }
    .recommended-section .news-list{
        margin:0;
    }
    .recommended-section .slideshow .slide-controls{
        top:0;
    }
    .contact-consltaion h2 {
    font-size: 35px !imporatnt;
    line-height: 42px !imporatnt;
}
}

@media(min-width:992px) and (max-width:1199px){

    .top_menu .top-right-sec{
        width:100%;
    }
    .header_menu > div > ul > li{
        padding:35px 7px;
    }
    .header_menu > div > ul > li a{
        font-size:14px;
    }
    .current-menu-item.menu-item-has-children .toggle{
        margin-right:0px;
    }
    .header_wrapper .col-sm-4{
        width:25%;
    }
    .header_wrapper .col-sm-8{
        width:75%;
    }
    .newsletter-section .newsletter-form .gform_body{
        width:70%;
    }
    .newsletter-section .newsletter-form .gform_footer{
        width:25%;
    }
    .home-top-slider .slide .slide-content h2{
        font-size: 52px;
        line-height: 64px;
    }
    .right-box .titlebox h2{
        font-size: 30px;
    }
    .page-content-services .left-content-services .services-sub-title{
        margin-bottom:20px;
    }
    .page-content-services .left-content-services .services-sub-title h2{
        font-size:30px;
        line-height:45px;
    }
    .right-box {
        padding-left: 15px;
    }
    .industries-service-section .box-service{
        width: 180px;
        height: 180px
    }
    .industries-content-sec .left-title-sec h2,
    .industries-service-section .industries-service-title h2{
        font-size: 40px;
        line-height: 50px;
    }
    .top_banner_area .sub-banner-image .blog-container h1,
    .subpage-banner_area .sub-banner-image .page_title h1{
        font-size: 40px;
        line-height: 45px;
    }
    .page-top-section .single_member_image img{
        width:210px; 
    }
    .recommended-section .sec-title h2{
        font-size: 40px;
        line-height: 48px;
    }
    .recommended-slider-sec{
        padding-left:0px;
    }
}
@media(min-width:1200px) and (max-width:1229px){
    .header_menu > div > ul > li a{
        font-size:14px;
    }
}

@media(max-width:599px){
    
    .footer .footer-content-sec .footer-grid-block{
        font-size:15px;
    }

}
/* Date-nov-11 */
.contact-twobox {
    padding: 75px 0px;
    background:#F0F2F5;
}
.gray-box {
    background: #fff;
    border-radius: 49px;
    padding: 40px 50px;
     min-height: 390px;
}
.blue-box {
    background: #1D3A66;
    border-radius: 49px;
    padding: 40px 50px;
    min-height: 390px;
}
.blue-box ul li {
    color: #F0F2F5;
}
.blue-box p {
    color: #F0F2F5;
}
.blue-box h3 {
    color: #3389C2;
    font-family: 'gilroyextrabold';
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 25px;
}
.blue-box ul li {
    padding-bottom: 10px;
}
.blue-box ul li:last-child {
    padding: 0;
}
.blue-box ul {
    padding: 5px 0px 0px 18px;
    margin: 0;
}
.gray-box h3 {
    color: #707070;
    font-family: 'gilroyextrabold';
    font-weight: bold;
}
.gray-box ul li {
    padding-bottom: 10px;
    color: #707070;
}
.gray-box p {
    color: #707070;
}
.gray-box ul {
    padding: 5px 0px 0px 18px;
    margin: 0;
}
.gray-box ul li:last-child {
    padding: 0;
}
.contact-consltaion {
    text-align: center;
    margin-bottom: 75px;
}
.contact-consltaion h2 {
    font-size: 52px;
    line-height: 58px;
    font-weight: normal;
    font-family: 'gilroyextrabold';
    margin: 0px 0px 30px;
}
.contact-consltaion h2 span {
    color: #3389C2;
}
.contact-consltaion p {
    max-width: 485px;
    margin: 0 auto;
    color: #707070;
}

.gray-box ul{
	list-style:none;
}
.blue-box ul{
	list-style:none;
}
.gray-box ul li, .blue-box ul li{
	  position: relative;
}
.gray-box ul li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3389C2;
    top: 5px;
    left: -15px;
    border-radius: 100%;
}
.blue-box ul li:before {
          content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3389C2;
    top: 5px;
    left: -15px;
    border-radius: 100%;
    }
    .gform_legacy_markup_wrapper .gform_validation_errors>h2 {
    font-size: 13px !important;
    font-weight: 400 !important;

}
.gform_legacy_markup_wrapper div.validation_error {
    color: #ff4f4f;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 0px !important;
    border-top: none;
    border-bottom: none;
    padding: 16px 0 0px 0 !important;
    clear: both;
    width: 100%;
    text-align: left;
}
.gform_legacy_markup_wrapper .gform_validation_errors>h2 {
    font-size: 13px;
    font-weight: 400;
    color: #ff4f4f !important;
    margin: 0 0 .9375rem 0;
}
.gform_legacy_markup_wrapper .gform_validation_errors>h2:before {
    content: none !important;
    
}
.gform_legacy_markup_wrapper div.validation_error {
    border: none !important;
    clear: both;
    width: 100%;
    text-align: left !important;
}
