html {
    min-height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
}

body {
	background: #fff;
	font-family: 'Montserrat', sans-serif , "Font Awesome 5 Free";
	font-weight: 500;
	line-height: 1.6;
}

a {
    color: #285ea0;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
    cursor: pointer;
}

a:hover{
	text-decoration: none;
	color: #96b7d9;
}

a:focus{
	text-decoration: none;
}

button:focus {
    outline: unset;
}

p, a, li, h1, h2, h3, h4, h5, h6{
    font-size: 16px;
    line-height: 1.6;
}

p {
    font-weight: 400;
}

strong {
    font-weight: bold;
}

#header:after { 
    content: " "; 
    display: block;
    clear: both;
} 

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

h2{
	font-size: 2.5em;	
}

h3, .aboutUs h1 {
	font-size: 30px;
	font-weight: 600;
	color: #222;
	text-align: center;
}
.aboutUs h3{
	margin-bottom: 50px;
	font-size: 30px;
}

h4{
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin: 20px 0;
	color: #32789F;
}



h5 {
    font-size: 16px;
}


body::-webkit-scrollbar {
    width: 0.5em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}
 
body::-webkit-scrollbar-thumb {
  background-color: #172272;
  outline: 1px solid #172272;
}

/*-------------------------
           Button 
--------------------------*/

.btn_wrapper{
	text-align: center;
}

a.btn, button.btn, div.btn {
    padding: .9em 2.2em;
    border-radius: 0;
    background-color: transparent;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    letter-spacing: 1px;
    font-weight: 600;
}

a.btn.blue_btn{
	color: #fff;
	background: #285ea0;
}

a.btn.blue_btn:hover {
    border-color: #285ea0;
    color: #285ea0;
    background: rgba(255, 255, 255, .5);
}

a.btn.blue_border_btn{
	color: #32789F;
	border-color: #32789F;
}

a.btn.white_btn{
	color: #ffffff;
	border-color: #ffffff;
}

a.btn.white_btn:hover{
	background-color: rgba(255, 255, 255, 0.3);
	opacity: 1;
}

.btn-more {
    border: 1px solid #285ea0;
    color: #285ea0;
    font-size: 14px;
    transition: .3s ease;
}

.btn-more:hover {
    background: #285ea0;
    color: #fff;
}
.sub-page .btn-more{
    border: 1px solid #285ea0;
    color: #285ea0;
}

.sub-page .btn-more:hover{
    background: #285ea0;
    color: #fff;
}

.img-responsive {
    max-width: 100%;
}

.img-left {
    padding-right: 30px;
}

.img-right {
    order: 2;
    padding-left: 30px;
}

@media(max-width: 768px) {
    .img-right {
        order: 0;
        padding: 0;
    }
    
    .img-left {
        padding: 0;
    }
}


/**********************\
		Section
\**********************/

.section{
	padding: 3.5em 0;
}

.gray-section  {
    background: #FBFBFB;
    margin-top: 20px;
}

.blue-section {
    background: #ecf2f6;
    margin-top: 20px;
}

.white-section {
    background: #f7fbfd;
    margin-top: 20px;
    margin-bottom: 40px;
    position: relative;
    padding: 2em 0;
}

@media(max-width: 768px) {
    .service-section{
        margin: 20px 0;
    }
}
.service-area ul li{
    font-size: 22px;

    list-style-type: circle;
}

/****************************************************\
						nav
\****************************************************/

.menu-icon {
    display: block;
    border: 0;
    background: transparent;
    padding: 8px 0;
    z-index: 9999;
    overflow: hidden;
}
.menu-icon.closed{
    position: fixed;
    top: 23px;
    right: 44px;

}

.menu-icon span {
    color: #002134;
    font-weight: 500;
    position: relative;
}

.menu-icon span:hover:before,
.menu-icon span:hover:after,
.close-icon span:hover:before,
.close-icon span:hover:after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #002134;
}
.menu-icon span:before,
.menu-icon span:after,
.close-icon span:before,
.close-icon span:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #242424;
}
.menu-icon span:before,
.close-icon span:before{
    opacity: 1;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon span:after,
.close-icon span:after{
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
    -webkit-transition: none;
    transition: none;
}
.menu-icon span:hover:before,
.close-icon span:hover:before{
    opacity: 0;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
}
.menu-icon span:hover:after,
.close-icon span:hover:after{
    -webkit-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}

/*.menu-icon  > span:last-child {*/
/*    display:none;*/
/*}*/

.menu-icon.closed > span:first-child{
    display:none;
}


/*.menu-icon.closed > span:last-child {*/
/*    display:block;*/
/*}*/
.close-icon span{
    position: absolute;
    right: 42px;
    top: 30px;
    color: #002134;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
}

.header-company {
    width: 100%;
    background: #fff;
    padding: 10px;
    font-size: 14px;
    display: flex;
}

.company-desc {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media(max-width: 576px) {
    .company-desc {
        display: block;
        justify-content: flex-end;
    }
    .menu-icon.closed > span:last-child {
        display:none;
    }
}

.company-desc a {
    display: inline-block;
    margin-right: 30px;
    color: #999;
    font-size: 14px;
}

.company-desc a:hover {
    text-decoration: underline;
}

.company-desc a:last-child {
    margin-right: 20px;
}

.company-desc i {
    margin-right: 6px;
}

.navbar-default {
    background-color: #fff;
    border: none;
    z-index: 9999;
}

.news_article_header .navbar-default,.sub_page_header .navbar-default{
    /*background-color: rgba(255, 255, 255, 0.6);*/
}

#header .navbar-nav > li > a{
    margin-right: 0;
    position: relative;
    overflow: hidden;
}

#navbar{
	position: fixed;
    top: 0;
    width: 0;
    height: 100%;
    right: 0;
    margin: 0;
    display: block;
    /*box-shadow: 0 2px 10px rgba(0,0,0,.1);*/
    visibility: visible;
    opacity: 1;
    transition: opacity 1s, visibility .1s;
}
.nav-overlay{
    z-index: -1;
    height: 100%;
	width: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
}
.navbar-nav> li {
    padding: 1em .5em;
}

.navbar-nav> li:not(:last-child) > a{
    /*padding: 1em 1em;*/
    margin-right: 1em;
}
.dropdown.underline.open{
    padding-bottom: 0;
}
.navbar-nav >li.underline{
    margin-bottom: 20px;
}
.navbar-nav >li.underline > a:hover:before,
.navbar-nav >li.underline > a:hover:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #285ea0;
}
.navbar-nav >li.underline > a:before,
.navbar-nav >li.underline > a:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #285ea0;
}
.navbar-nav >li.underline > a:before {
    opacity: 1;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.navbar-nav >li.underline > a:after {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
    -webkit-transition: none;
    transition: none;
}
.navbar-nav >li.underline > a:hover:before{
    opacity: 0;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
}
.navbar-nav >li.underline > a:hover:after{
    -webkit-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}


.nav-list{
    width: 35%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #eff5f9;
}
@media(max-width: 1200px){
	.container-fluid>.navbar-collapse{
    	width: 100%;
    	margin-top: 5em;
    	margin-right: 0px;
    	background-color: #242424;
	}
}

@media (max-width: 1200px){
    .container-fluid>.navbar-collapse.navbar-default-page {
        background-color: transparent;
    }
}

.navbar-default .navbar-nav>li>a {
    color: #222222;
    cursor: pointer;
    font-size: 24px;
}

.navbar-default .nav>li>a:focus, .navbar-default .nav>li>a:hover {
    color: #285ea0;
}

.navbar-default .navbar-nav>.active>a{
	background-color: transparent;
	color: #32789F;
	border-bottom: 1px solid #285ea0;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
	/*background-color: rgba(255, 255, 255, .3);*/
	color: #285ea0;
	font-weight: 600;
}

.navbar-nav {
    flex-direction: row;
    padding: 60px 30px;
}



@media (min-width: 768px){
    .navbar-nav {
        margin: 0.5em 0 0;
    }
    .nav-list{
        overflow: scroll;
    }
}

@media(max-width:1199px){
	ul.nav.navbar-nav > li{
		margin: 0 0.5em;
	}
}
@media (max-width: 1024px){
    .nav-list{
        width: 100%;
        overflow: scroll;
    }
    
}
@media (max-width: 767px){
    .navbar-default .navbar-nav>li>a {
        font-size: 18px;
    }
}
.open > .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    width: 20rem;
}

.dropdown-menu>li>a{
	padding: 0;
	color: #285ea0;
}

.dropdown-menu>li>a:focus, 
.dropdown-menu>li>a:hover,
.sub-dropdown-menu>li>a:hover:after{
    color: #285ea0;
    border: 0;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    color: #285ea0 !important;
}

.dropdown-menu > li.active > a {
    color: #fff;
}

.dropdown-menu > li > a, .sub-dropdown-menu > li > a {
    color: #444444;
    font-weight: 400;
}
li.dropdown > a > i {
    display: inline-block;
    vertical-align: middle;
    font: 16px "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
}

.dropdown-menu{
    padding: 10px 0 0;
}
.dropdown-menu .sub-dropdown-menu li{
    padding: 6px 15px;
    text-indent: -14px;
}

.dropdown-menu > li > a:after {
    content: "";
    margin-left: 0;
}
.sub-dropdown-menu{
    padding: 10px 0 0;
    display:none;
    margin-left: 35px;
}
.sub-dropdown.open > .sub-dropdown-menu{
    display:block;
}
.sub-dropdown-menu > li > a:before {
    content: "\f105";
    display: inline-block;
    vertical-align: middle;
    font: 12px "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 14px;
}
.dropdown-menu > li > a:before {
    content: "\f061";
    display: inline-block;
    vertical-align: middle;
    font: 12px "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 10px;
}
.sub-dropdown-menu > li > a:hover,.sub-dropdown-menu > li.active > a {
    color: #285ea0;
}
.sub-dropdown-menu > li > a:hover:before, .sub-dropdown-menu > li.active > a:before{
    position: relative;
    left: 4px;
}
.sub-dropdown{
    padding-top: 10px;
}

@media(max-width: 1024px){
	li.dropdown:hover ul{
    	position: static;
        float: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
        display:block;
    }
    .dropdown-menu>li>a {
    	color: #fff;
    }
}

@media(max-width: 1200px){
    .navbar-default .navbar-nav>.active>a{
        border-bottom: none;
    }
}
@media(max-width: 1024px){
    li.dropdown ul{
        padding-left: 2em;
    }
}
@media(max-width: 767px){
    li.dropdown ul{
        padding-left: 7px;
    }
}
.company-logo{
	width:auto;
	max-height: 60px;
}

@media(max-width: 450px){
	.company-logo{
	    height: 60px	
	}	
}

.navbar {
    margin-bottom: 0;
}

@media(min-width: 767px){
	.navbar-default .container-fluid{
	    padding:0 2em;
	}
}

#navbar ul.nav li .amp_login i.icon{
	display: inline;
	font-size: 1.5em;
	vertical-align: middle;
}

#navbar ul.nav li .amp_login{
	line-height: 0;
	height: 53px;
}

@media(max-width: 1199px){
	#navbar ul.nav li .amp_login{
    	 border:none;
    	 text-align:left;
	}	
}

#navbar ul.nav li .amp_login span{
	display: inline-block;
	vertical-align: middle;
}

@media (max-width: 1200px) {
    .navbar-header {
        float: none;
    }
    .navbar-left,.navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
        margin-top: 27px;
        border-radius: 0;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
        display:block !important;
    }
    #navbar {
    	border-top: none;
	}
}

    
    .navbar-nav> li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-nav .dropdown-menu {
        position: relative;
        top: 0;
        background: none;
        border: none;
    }
    
    .navbar-nav .dropdown-menu>li>a {
        color: #444;
    }
    
    .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover, .sub-dropdown-menu>li>a:hover:after {
        color: #285ea0;
    }
@media(max-width: 1024px) {
    .dropdown ul{
        display: block;
    }
}

@media(max-width: 768px) {
    #navbar {
        top: 0px;
        margin-top: 0;
    }
}
@media(max-width: 767px) {
.navbar-nav {
        padding-left: 10px;
    }
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
	background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

/****************************************************\
					nav animation
\****************************************************/

.navbar-toggle .icon-bar:nth-of-type(2) {
    top: -1px;
}

.navbar-toggle .icon-bar:nth-of-type(3) {
    top: 0px;
}

.navbar-toggle .icon-bar:nth-of-type(4) {
    top: 1px;
}

.navbar-toggle .icon-bar {
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(2) {
    top: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(3) {
    background-color: transparent;
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-of-type(4) {
    top: -6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


#header {
    position: relative;
    background-color: #eff5f9;
    margin: 0 auto;
    top: 0;
    width: 100%;
    height: auto;
    min-height: 90px;
    z-index:  9999;
}

.home_header{
	background: transparent;
}

.news_article_header, .sub_page_header{
    border-bottom: 1px solid rgba(225, 214, 203, 0.2)
}

ul{
    list-style-type: none;
    text-align: left;
}

.no_banner{
	border-radius: 6px !important;
}

#banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}


/* Home page video*/
@media (pointer: coarse) and (hover: none) {
  #banner {
    /*background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;*/
  }
}

/*******************************************
            ytml search
*******************************************/

#search-form {
    width: 300px;
    transform: translateX(-50%);
    text-align: center
}

@media(max-width: 767px) {
    #search-form {
        width:250px
    }
}

@media(max-width: 767px) {
    #search-form {
        width:220px
    }
}

.search-box {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 80%;
    transform: translateX(-50%)
}


#search-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0,-100%);
    -moz-transform: translate(0,-100%);
    -o-transform: translate(0,-100%);
    -ms-transform: translate(0,-100%);
    transform: translate(0,-100%);
    opacity: 0;
}

.input-field{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin-top: -51px;
}

#search-wrapper input[type="search"] {

    width: 100%;
    color: white;
    background: rgba(0,0,0,0);
    font-size: 35px;
    font-weight: 300;
    text-align: left;
    border: 0;
    margin: 0 auto;
    
    outline: none;
    border-bottom: 1px solid #2196F3;
    -webkit-box-shadow: 0 1px 0 0 #2196F3;
    box-shadow: 0 1px 0 0 #2196F3;
    font-family: 'Orbitron',sans-serif
}

#search-wrapper input[type="search"]::placeholder {
    color: #fff
}

#search-wrapper input[type="search"]:-ms-input-placeholder,#search-wrapper input[type="search"]::-ms-input-placeholder {
    color: #fff
}

#search-wrapper .close {
    position: absolute;
    top: -60px;
    right: 0;
    color: #fff;
    background-color: transparent;
    border: none;
    opacity: 1;
    font-size: 40px
}

#search-wrapper.open {
    -webkit-transform: translate(0px,0px) scale(1,1);
    -moz-transform: translate(0px,0px) scale(1,1);
    -o-transform: translate(0px,0px) scale(1,1);
    -ms-transform: translate(0px,0px) scale(1,1);
    transform: translate(0px,0px) scale(1,1);
    opacity: 1;
    z-index: 110
}

#page-result {
    color: #fff;
    margin-top: 30px;
    position: relative;
    /*min-height: 510px;*/
}

li.search-item {
    font-size: 14px;
    list-style-type: none
}

.results-close-btn {
    float: right;
    opacity: 1;
    height: 12px;
    width: 12px;
    position: absolute !important;
    top: -15px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
}

#page-result a {
    color: #03A9F4;
    font-size: 18px
}

#page-result h3 {
    color: #03A9F4
}

#page-result h3:after{
	content : "";
	display: block;
	height  : 1px;
	width: 45px;
	margin: 0.5em auto;
	border-bottom: 2px solid #03A9F4;
}

#page-result .pagination li.cur{
	color: #03A9F4;
}

#btn-fixed{
  position: fixed;
  top: 46%;
  left: 0%;
  white-space: pre-line;
  padding: 2em 0em;
  width: 50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #285ea0;
  color: #fff;
  opacity: 0.6;
  font-size: 20px;
  letter-spacing: 6px;
  z-index:999;
}

#btn-fixed:hover{
  opacity: 1;
}

@media(max-width: 767px){
  #btn-fixed{
    display: none;
  }
}

.overflow{
    overflow:hidden;
}


.search-open{
  visibility: visible;
  opacity: 1;
}

.search-close{
  visibility: hidden;
  opacity: 0;
}

.page-overlay{
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 100001;
}

.navbar-form .search-btn{
	background-color: #32789F;
	padding: 0.44em 2.5em;
	font-size: 14px;
}

.navbar-form .search-btn span{
	color: #fff;
}

.navbar-form input{
	border-radius: 0;
	border-right: 0;
}

.navbar-form input:focus{
	border-color: #32789F;
	webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 30, 65, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 30, 65, 0.6);
}

@media(max-width: 767px){
	#search-tool-mobile form{
		width: auto;
		padding-top: 0;
		padding-bottom: 0;
		margin-right: 0;
		margin-left: 0;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	#search-tool-mobile .input-group-btn{
		display: block;
	}
}

.searchLoadingImg .fa{
	color: #fff;
}

#search-tool-mobile .searchLoadingImg{
	float: left;
	position: absolute;
	right: -45px;
	top: 3px;
}

#search-tool-mobile{
	position: absolute;
	top: 85px;
	right: 115px;
	z-index:  100;
} 

@media(max-width: 767px){
	#search-tool-mobile{
		right: 85px;
	} 	
}

.default_header #search-tool{
	left: -175px;

}

@media(max-width: 1200px){
	.input-group-btn{
		display: block;
	}
}

#error{
	display: block;
	color: #a94442;
}
.error-main{
    height: 100vh;
    background-color: black;
    color: #fff;
}
.error-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 80vh;
}
.error-page h4{
    font-size: 36px;
    margin: 0px;
    color:#fff;
}
.error-page p{
    font-size:20px;
}
.error-page button{
    height: 50px;
    width: 120px;
    border-radius: 16px;
}
.error-page .row{
    margin-top: 20px;
}
.error-page .error-404{
    font-size:128px;
    color:#fff;
}

/****************************************************\
						nav end
\****************************************************/

/****************************************************\
						banner
\****************************************************/

@media screen and (max-width: 1680px){
    #banner, #sub-banner {
        /*padding: 10em 0;*/
        
    }
}

#banner{
    /*background-attachment: fixed;*/
    /*background-color: rgba(255, 255, 255, 0.6);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    padding: 0;
    text-align: center;
    position:  relative;
    height: 70vh;
	/*background-position-y: center;*/
	overflow: hidden;
}

#sub-banner {
    height: 50vh;
    min-height: fit-content;
    color: #285ea0;
    background-color: rgb(255 255 255 / .6);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10em 0;
}

#sub-banner.landing-service .banner_right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center
}

#sub-banner.landing-service h1 {
    /*color: #222;*/
    color: #285ea0;
    /*color: rgb(239 245 249 / 90%);*/
    /*background-color: white;*/
    position: relative;
    white-space: nowrap;
}

/*#sub-banner.landing-service h1:after{
    content: attr(data-before);
    position: absolute;
    left: calc(50% - 5px);
    -webkit-text-stroke: 1px #285ea0;
    transform: translateX(-50%);
    color: #285ea0;
}*/

#sub-banner.landing-service p {
    color: #444;
    font-style: normal;
}

@media(max-width: 990px) {
    #banner, #sub-banner {
        background-attachment: scroll;   
    }
}

#banner a, #sub-banner a {
    text-transform: none;
    cursor: pointer;
}

#banner > .container > div.banner_text, #sub-banner > .container > div.banner_text{
	margin-top: 2em;
}

#sub-banner .banner_text{
    text-align: center;
    font-style: italic;
}

#sub-banner.landing-service {
    padding: 0;
}

#sub-banner.landing-service .banner_text:after{
    content: "";
    background-color: #96b7d9;
    width: 60px;
    height: 2px;
    position: absolute;
    transform: translate(-50%);
}

.overlay{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

#banner h1, #sub-banner h1{
    font-size: 3.1em;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2em;
    margin: 0 0 0.5em 0;
    padding: 0;
}

#sub-banner h1{
    text-transform: capitalize;
}

#sub-banner.sub_page_banner h1{
    font-size: 110px;
    /*color: #eff5f9;*/
    color: rgb(239 245 249 / 90%);
    position: relative;
    white-space: nowrap;
}

#sub-banner.sub_page_banner h1:after{
    content: attr(data-before);
    position: absolute;
    left: calc(50% - 10px);
    -webkit-text-stroke: 1px #285ea0;
    transform: translateX(-50%);
    /*color: transparent;*/
    color: #285ea0;
}

#sub-banner.service-banner h1:after{
    /*left: 50%;*/
}

@media(max-width: 768px) {
    #sub-banner.sub_page_banner h1 {
        font-size: 90px;
    }
}

@media(max-width: 576px) {
    #sub-banner.sub_page_banner h1 {
        font-size: 60px;
    }
}

@media(max-width: 375px) {
    #sub-banner.sub_page_banner h1 {
        font-size: 50px;
    }
}

#banner p{
    font-size: 1.3em;
    margin: 0 0 0.5em 0;
    letter-spacing: 1px;
}

#banner p, #banner h2, #banner a{
	-webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.banner_text a.btn, .bottom_banner a.btn{
    border-radius: 30px;
}

#banner .container, #sub-banner .container {
	position: relative;
 	top: 45%;
  	-webkit-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
}

#banner .container, #sub-banner.news_article .container {
 	top: 50%;
}

@media(max-width: 1024px){
    #sub-banner {
        /*height: 30vh;*/
        padding: 0;
    }
    
}
@media(max-width: 768px){
    #banner {
    	height: 80vh;
    }

    #banner .container{
        top: 55%;
    }
    
    #sub-banner {
        height: 30vh;
    }
    
    #sub-banner .landing-service{
        height: 50vh;
    }
    
    #sub-banner .landing-service .container{
        top: 50%;
    }
}
@media(max-width: 576px){
    #banner > .container > div.banner_text, #sub-banner.landing-service > .container > div.banner_text{
        /*margin-top: 5em;*/
    }
    
    #banner h1{
        font-size: 2em;
    }
    
    #sub-banner.sub_page_banner .container{
        top: 15%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    
    #sub-banner.sub_page_banner > .container > div.banner_text{
        margin-top: 3em;
    }
    
    #sub-banner.service-banner h1{
        font-size: 52px;
    }
    
    #sub-banner.service-banner .container{
        top: 35%;
    }
    
    #sub-banner.landing-service .banner_text:after{
        top: 115%;
    }
}
@media(max-width: 320px){
    #sub-banner.news h1:after{
        font-size: 100px;
        bottom: 0;
}
 #sub-banner.service-banner h1:after, #sub-banner.service-banner h1{
        font-size: 48px;
}
#sub-banner.service-1 h1{
        font-size: 64px;
    }
    #sub-banner.service-banner h1:after {
        /*left: 53%;*/
}
}
/****************************************************\
					banner end
\****************************************************/

/****************************************************\
					home content
\****************************************************/

.title {
    margin-bottom: 40px;
}


.title span {
    font-style: italic;
    font-weight: lighter;
    font-size: 14px;
    text-align: center;
    color: #444;
    display: block;
}
#home_main{
    margin-top: 70px;
}
@media (max-width: 768px){
	#home_main{
    margin-top: 0;
}
}
@media (max-width: 767px){
	#home_main {
	    padding-bottom: 0;
	}
}

#home_main .section h3{
    font-size: 30px;
	text-align: center;
	font-weight: 600;
}

#home_main .section .btn_wrapper{
	margin-top: 2em;
}

#home_main .home-section:nth-child(even){
	background-color: #ebf7ff;
}

.home-service .content {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
    
}

.home-service .content:last-child {
    border-bottom: 0;
}

.home-service .content a {
    width: 200px;
    margin: auto;
    margin-top: 30px;
    display: block;
}

.home_video{
    margin-top: 1em;
}


.home-service .gray-section {
    margin-top: 100px;
}

.gray-section .content {
    padding-top: 0;
}

.gray-section img {
    margin-top: -40px;
}

.img-preview{
	height: 0;
	width: 100%;
	padding-bottom: 60%;
	overflow: hidden;
	position: relative;
	z-index: 0;
    background-size: cover;
	background-position: center;
}

.img-preview .overlay{
	z-index: 1;
}

.play-button{
	height: 50px;
	position:absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);

}

.play-button img{
	height: 100%;
	-moz-transition: opacity 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0.7;
}

a.play-button:hover, .play-button:hover img {
	opacity: 1;
}


/****************************************************\
				home content end
\****************************************************/



/* Testimonial Section*/

#myCarousel.carousel {
    padding: 0 30px;
    transition: .3s ease;
}

@media(max-width: 990px) {
    #myCarousel.carousel {
        padding: 0 0 60px;
    }
}

#myCarousel .right-testimonial:after {
    background: rgba(255, 255, 255, .3);
}

#myCarousel .right-testimonial {
    padding: 0 65px;
}

#myCarousel .carousel-indicators li{
    background-color: #32789F;
    width: 18px;
    opacity: .5;
}

#myCarousel .carousel-indicators li.active {
    opacity: 1;
}

#myCarousel .carousel-inner {
    padding: 20px 0;
}


/* Important Section */

.information{
	background-color: #32789F;
}

.information h3{
	text-align: center;
	color: #fff;
	font-weight: 600;
	margin-bottom: 30px;
}

.information h3:after {
    content: '';
    display: none;
}

.information p{
	color: #fff;
	text-align: center;
	font-size: 18px;
}


/****************************************************\
				sub pages content
\****************************************************/

#main, .main, .sub{
	padding: 2em 0;
}


#main .page_header h3, .sub h3{
	color: #444;
	margin: 40px 0;
}


#main .section, .sub .section{
	padding: 0 0em 2em;
}

.sub-page{
    position: relative;
    margin-top: -100px;
}
@media(max-width:768px){
    #main.news{
    position: relative;
    height: auto;
}
}
.seven_process{
	background-color: #fff;
}

.seven_process > .container{
	position: relative;
	background: #fff;
}

.seven_process .container .section{
	padding: 0 2em;
}
	
.seven_process .content_body p, .seven_process .content_body h3{
	text-align: center;
}

@media(min-width:768px){
	#main.what_to_expect_section .container .row .section{
	padding-bottom: 0;
	}
	
	#main.what_to_expect_section{
	padding: 6em 0;
	}
	.seven_process .container .section{
		padding: 0 6em;
	}
	.seven_process .content_body{
		margin-top: 4em;
	}
}

.seven_process .page_header{
	padding-top: 3em;
}

.seven_process h3{
	margin-top: 0;
}

@media(max-width: 767px){
	.seven_process{
		padding-top: 0;
	}
	.seven_process > .container{
		margin-top: 0;
	}
	.seven_process > .container .page_header{
		padding-top: 0;
	}
}

#main .section_bottomline{
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	margin-bottom: 5em;
	padding-bottom: 4em;
}


.set .content-display p {
   margin-bottom: 15px;
   font-size: 1.2em;
   text-align: left;
   line-height: 1.8em;
}
.set .content-display p.subheading {
  font-size: 2em;
  font-weight: bolder;
  padding-bottom: 0;
  text-align: left;
  color: #32789F;
}

.set .content-display p.subheading:after {
  	content : "";
  	display: block;
  	height  : 1px;
  	width: 45px;
  	margin: 0.7em 0 1em;
  	border-bottom: 2px solid #32789F;
}

.set .content a{
	color: #32789F;
	font-weight: 400;
	font-size: 1em;
}

.i-want-to .btn{
	border: 2px solid transparent;
}

.set .content-display .content-intro a{
	font-size: 1em;
	font-weight: normal;
	color: #00aae0;
}

.set .content-display .content-intro {
    text-align: center;
    font-size: 1.5em;
    font-weight: 600;
    padding-top:20px;
    font-style: italic;
    color: #32789F;
    margin-bottom: 0;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
    /* padding-bottom: 2em; */
}

.set .hr{
  margin: 3em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.set .content-display .advisertitle {
    color: #5C5C5C;
    font-size: 2rem;
    line-height: 1.5625;
    font-weight: 400;
    margin-top: 0;
    display: block;
    text-shadow: none;
}

.set .content-display ul.list{
	padding-left: 1.7em;
}

.set .content-display li{
  font-size: 1.2em;
  font-weight:lighter;
  line-height: 2;
  position:relative;
}

.set .content-display li:before {
    position:absolute;
    font-family: 'FontAwesome';
    content: '\f111';
    left: -16px;
    top: 10px;
    font-size: 7px;
    color: #32789F;
}
.content ul li{
    font-size: 14px;
    margin-left: 10px;
    list-style-type: circle;
}
.content h3{
    text-align:left;
}

@media(max-width:767px){
  .content-display{
    padding:20px 15px;
  }
  #sets .content-wrapper .close-icon {
      float: right;
      font-size: 2.25rem;
      position: relative;
      top: -10px;
      left: 0px;
      cursor: pointer;
  }
  
}

.set .call-to-action, .set .call-to-action p{
	text-align: center;
}

@media(max-width: 767px){
	.set .call-to-action{
		padding-bottom: 2em;
	}
}

/****************************************************\
				sub pages content end
\****************************************************/

/****************************************************\
					page header
\****************************************************/

.page_header{
    text-align: center;
}

.page_header h3{
	margin-top: 0;
}

.page_header h2{
	color: #32789F;
	margin: 2em 0;
	text-transform: uppercase;
	padding-left: 1.1em;
}

.page_header p {
    font-size: 18px;
    font-weight: 500;
}

.page_header span {
    color: #999;
    font-size: 16px;
    font-weight: 400;
}

/****************************************************\
					page header end
\****************************************************/


.service-page-content .row{
    padding: 10px;
    margin-top: 20px;
}
.service-page-content .row:last-child{
    border-bottom: 1px solid #96b7d9;
}
.service-page-content img {
    margin-bottom: 20px;
}

.service-body {
    margin-bottom: 40px;
}

.service-box {
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
}

.service-box:hover {
    opacity: 1;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-box:hover .service-img {
    filter: unset;
}

.service_page {
    position: absolute;
    background-color: rgba(255, 255, 255, .9);
    transform: translateY(0px);
    transition: .3s ease;
    height: 100px;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 20px;
    margin: 0 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box:hover .service_page {
    background-color: rgba(255, 255, 255, 1);
    height: 260px;
    border-radius: 0 0 10px 10px;
    display: block;
}

.service_page p {
    font-size: 18px;
    color: #444;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.service_page .content {
    display: none;
}

.service-box:hover .service_page .content {
    display: block;
}

.service_page .content p {
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 20px 0;
}

.service_page .content .link {
    color: #32789F;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    transition: .3s ease;
}

.service_page .content .link:hover {
    border-bottom: 1px solid #32789F;
}



.service-page-content h5 {
    color: #32789F;
    font-size: 20px;
    font-weight: bold;
}

.service-page-content p{
    font-size: 18px;
    line-height: 2;
}

.service-page-content ul li {
    font-weight: 400;
    margin-bottom: 16px;
    text-indent: -16px;
}

.service-page-content ul li:before, .subService ul li:before {
    content: '\f111';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 8px;
    color: #96b7d9;
    margin-right: 10px;
    vertical-align: middle;
    
}
@media(max-width: 767px){
	.service-page-content .row{
        margin-top: 0; 
    }
}

/****************************************************\
					bottom banner
\****************************************************/

/*.bottom_banner > div{*/
/*    padding: 2em 0em;*/
/*    text-align: center;*/
/*}*/

/*.bottom_banner.blue_bottom_banner{*/
/*    background-color: rgb(0, 30, 65);*/
/*    position: relative;*/
/*    z-index: 6;*/
/*}*/

/*.bottom_banner h2, .bottom_banner p{*/
/*    color: #32789F;*/
/*}*/

/*@media(max-width: 767px){*/
/*	.bottom_banner h2{*/
/*    	font-size: 2em;*/
/*	}	*/
/*}*/


/*.bottom_banner a.btn.blue_btn{*/
/*	margin-top: 2em;*/
/*}*/

/*.bottom_banner .row{*/
/*	padding: 2em 3em;*/
/*}*/

/*.bottom_banner a.short_icon i, .bottom_banner a.short_icon span.text{*/
/*	color: #32789F;*/
/*	text-transform: uppercase;*/
/*}*/

/*.bottom_banner a.short_icon:hover i.icon, .bottom_banner a.short_icon:hover span.text{*/
/*	opacity: 0.5;*/
/*	color: #32789F;*/
/*}*/
/*.bottom_banner.blue_bottom_banner i.icon, .bottom_banner.blue_bottom_banner a.short_icon span.text{*/
/*	color: #fff;*/
/*}*/

/*@media(max-width: 991px){*/
/*	.bottom_banner .row > div:first-child, .bottom_banner .row > div:nth-child(2){*/
/*		margin-bottom: 4em;*/
/*	}*/
/*}*/

/****************************************************\
					bottom banner end
\****************************************************/

/****************************************************\
					footer
\****************************************************/


#footer{
	background: #2b2b2b;
	padding: 3em 0 1em;
}

#footer p, #footer a{
	color: #fff;
	font-size: 14px;
	margin: 10px 0;
}

#footer a:hover{
 	/*text-shadow: 0 0 .9px #fff, 0 0 .9px #fff, 0 0 .9px #fff; */
 	color: #97b6d9;
}

#footer img {
    width: 200px;
}

@media(max-width: 990px) {
    #footer img {
        width: 50%;
    }
}

@media(max-width: 576px) {
    #footer img {
        width: 80%;
    }
}

#footer .social_wrapper{
	clear: left;
}

#footer h4 {
    color: #fff;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

#footer .footer-links{
    margin: 20px 0;
}

@media(max-width: 990px) {
    ul.social_icon i {
        font-size: 24px;
    }
}

ul.social_icon li{
    display: inline-block;
    padding: 0 1.25em 0 0;
}
    
ul.social_icon {
    margin-bottom: 2em;
    padding-left: 0;
}

ul.social_icon i {
    font-size: 16px;
}


@media(max-width: 576px) {
    .footer_text {
        padding: 0 15px;
    } 
}


/****************************************************\
					footer end
\****************************************************/

/***********************************
          News
************************************/
#cast-show-list{
    width:100%;
}

.post-area,
.post-title,
.post-date {
  display: block;
  width: 100%;
}

.post-area{
  color: #505050;
  
}

.post-area.animated{
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.post-area .col-lg-4{
  padding-left: 15px;
  padding-right: 15px;
  float: left;
}

.post-title a{
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: #444;
  
}
.otherServices .post-title a{
     font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-title .p-title {
    padding-top: 20px;
    height: 75px;
    width: auto;
    word-wrap: break-word;
    text-align: justify;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.post-date {
    color: #999;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

.post-more{
  margin-top: 10px;
}

.post-more a{
  color: #002134;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.post-more i {
    margin-left: 4px;
    transition: .3s ease;
}

.post-more a:hover i {
    transform: translateX(4px);
}

.post-more span{
  display:inline-block;
  margin-top:-6px;
  vertical-align:middle;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-more a:hover span{
  padding-left:10px;
  font-weight:bold;
}


.post-area .preview-image {
  display: block;
  float: left;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  height: 200px;
}


.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.preview-content {
    word-wrap: break-word;
    font-size: 14px;
    color: #444;
    clear: both;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    display: -webkit-box;
    
}

.load-more, .read-more{
  text-align:center;
  clear: both;
  margin: 40px;
}

.post-content .post-title p, .post-content .post-more p{
	text-align: left;
}

.post-content {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    overflow: hidden;
    margin-bottom: 20px;
    height: 500px;
}

.post-desc {
    padding: 20px;
}
@media (max-width: 768px) {
	.post-content {
		height: auto;
		margin-bottom: 40px;
	}
	
	.post-area .preview-image {
        height: auto;
    }
	
	.p-title {
		text-overflow: ellipsis;
		display: -webkit-box;
		word-break: break-word;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		height: 70px;
	}
	
    .post-area{
        margin-bottom:50px;
    }
}

@media (max-width: 414px) {

	.post-area .preview-image {
        height: 200px;
    }
}

.news_img {
    max-width: 100%;
}
 

/****************************************************\
					news end
\****************************************************/

/****************************************************\
				contact us
\****************************************************/


.contact-details{
	float: left;
}


.contact-details h4 {
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    color: #444;
}

.contact-details > div{
	padding-left: 0;
}

.contact-details p {
	text-align: left;
	text-indent: -15px;
	margin-left: 30px;
}

.contact-info a {
    color: #444;
}
.contact-info a:hover {
    /*text-shadow: 0 0 .65px #444, 0 0 .65px #444;*/
    color: #97b6d9;
}

.contact-details i {
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
}

.contact_us_form {
	background: #96b7d9;
	padding: 60px 0;
}

.contact_us_form .title p {
    text-align: center;   
}

#appointment_form {
	margin-bottom: 1em;
}

#appointment_form label {
	text-align: left;
	float: left;
}

#appointment_form .form-group{
	padding-left: 0;
	margin-top: 1em;
}

#google-recaptcha{
	float:right	
}

#google-recaptcha .g-recaptcha{
	float:right;
	margin-top: 1em;
}

#appointments p, #appointments strong{
	font-size: 1em;
	text-align: left;
}

.map_wrapper{
	padding: 0;
}

.g-recaptcha{
	margin-bottom: 3.5em;
}

#map,#map2{
    height: 400px;
    background-color: #444;
}

#map h3{
	font-size: 1.5em;
	font-weight: lighter;
	text-transform: uppercase;
	text-align: center;
	opacity: 0.8;
}

#map h3:after{
	border-bottom: 2px solid #fff;
}

#map p{
	font-size:1em;
	text-align: center;
	opacity: 0.8;
}

.map1{
	position:relative;
	margin-bottom: 40px;
}
.map1:after{
	content:"";
	width: 100%;
	height: 1px;
	background-color: rgb(225 214 203 / .3);
	position: absolute;
	bottom: -30px;
}

@media(max-width: 500px){
	.si-frame.si-content-wrapper{
		padding: 1em 2em !important;
	}
}

.contact_details{
	padding: 3em 2em;
	background-color: #fff;
	margin-top: -5em;
	position: relative;
	z-index: 1;
}

@media(max-width: 767px){
	.contact_details{
		margin-top: 0;
	}
}

.contact_page{
	border-bottom: 1px solid rgba(136, 136, 136, 0.2);
}

.contact_details > div > i, .contact_details > div > span.text{
	color: #32789F;
	opacity: 1;
}

.contact_details p a, .contact_details p{
	color: #00aae0;
}


/*-----------------------------
    contact us button start
-------------------------------*/

.contact-form {
    width: 96%;
    border: 1px solid #fff;
    background-color: #fdfdfd;
    box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
    padding: 30px 60px;
}

.contact-form .contact-btn {
  font-weight: 600;
  font-size: 16px;
  padding: 16px 50px;
  width: 200px;
  text-align: center;
  background-color: #285ea0;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s ease;
}

.contact-form .contact-btn:focus {
    outline: none;
}

.contact-form .contact-btn:after {
  content: "\f1d8";
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  padding-left: 10px;
  font-size: 16px;
  transform: translate(0px);
}


.contact-form .contact-btn:hover {
  background-color: #97b6d9;
  color: #fff;
}

.contact-form .contact-btn:hover:after {
  animation: flyout 2s 3;
}

@keyframes flyout {
  0% {
    transform: translate(-2px, 5px);
  }
  
  30% {
    opacity: 0;
  }
  
  40% {
    transform: translate(30px, -30px);
  }
  
  50% {
    transform: translate(-20px, 40px);
    opacity: 0;
  }
  
  80% {
    opacity: 1;
    transform: translate(0px);
  }
  
  100% {
    opacity: 1;
  }
}

/*-----------------------------
    contact us button end
-------------------------------*/


.contact-form-content{
    text-align: center;
    padding-bottom: 30px;
}

.contact-form-content h1{
    padding-bottom:20px;
}


.contact-form .form-field {
    position: relative;
    margin: 32px 0;
}

.contact-form .input-text {
    display: block;
    width: 100%;
    height: 40px;
    padding-left: 5px;
    padding-bottom: 0;
    border-width: 0 0 1px 0;
    border-color: #E5E5E5;
    background: transparent;
    color: #444;
    font-size: 16px;
    line-height: 20px;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-form .input-text:focus {
    outline: none;
    border-color: #444;
}

.contact-form .input-text:focus + .label, .contact-form .input-text.not-empty + .label {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
    color: #444;
}

.contact-form select {
    height: 44px;
    width: 100%;
    border-color: #ddd;
    border-radius: 4px;
    padding: 0 4px;
}

.contact-form .label {
    position: absolute;
    left: 18px;
    bottom: 10px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #999;
    cursor: text;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.contact-form .help-block{
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #a94442;

}


#Message {
    padding: 20px 10px 150px;
}

#Message::placeholder {
    font-size: 15px;
}

.contact-form .message-special .input-text {
    border: 1px solid #999;
}

.contact-form .message-special .input-text:focus + .label,
.contact-form .message-special .input-text.not-empty + .label {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.contact-form .message-special .label {
    position: absolute;
    bottom: 100%;
    transition: none;
    color: #444;
    -webkit-transition: none;
    -o-transition: none;
}

.form-field.has-error input {
    border-color: #a94442;
}

.contact-form .submit {
    text-align: center;
    margin: 15px 0;
}

.g-recaptcha>div {
    width: 100% !important;
}

@media(max-width:767px) {
    .form-field {
      padding-top: 30px;
    }
    .g-recaptcha{
        transform: scale(0.8,0.8);
    }  
}
@media(max-width:375px) {
    .g-recaptcha{
       margin-left: -20px;
    }  
}

@media(max-width:320px) {
    .g-recaptcha{
        transform: scale(0.7,0.7);
       margin-left: -35px;
    }  
}
#formWidgetSubmitResultText {
	text-align: center;
	font-size: 20px;
	color: #32789F;
}

/****************************************************\
				contact us end
\****************************************************/


/****************************************************\
				animation
\****************************************************/

.fadeInUp{
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

.fadeInUp:nth-child(2){
    -ms-animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
}

.fadeIn{
    -webkit-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

/****************************************************\
				animation end
\****************************************************/

/****************************************************\
        		 orangebox (video)
\****************************************************/
#ob_container #ob_content {
  height: auto !important;
  width: auto !important;
  border: none;
}

#ob_container #ob_float {
    margin-bottom: -221px !important;
}

#ob_container #ob_close {
    position: fixed;
    height: auto;
    top: 20px;
    right: 20px;
    left: auto;
    width: auto;
    color: #fff;
}

#ob_container #ob_window {
    padding: 0;
    max-width: 640px !important;
    width: 100% !important;
}

#ob_container #ob_video {
    width: 100% !important;
    height: 100% !important;
}

#ob_title h3:after {
	border-bottom: none;
}

/****************************************************\
        		 orangebox end (video)
\****************************************************/


/****************************************************\
				equal height css
\****************************************************/

/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}

/*
 * Styles copied from the Grid example to make grid rows & columns visible.
 */
.container {
  padding-right: 15px;
  padding-left: 15px;
}


.row .row {
  margin-top: 10px;
  margin-bottom: 0;
}

/*
 * Callout styles copied from Bootstrap's main docs.
 */
/* Common styles for all types */
.bs-callout {
  padding: 20px;
  margin: 20px 0;
  border-left: 3px solid #eee;
}
.bs-callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
}
.bs-callout p:last-child {
  margin-bottom: 0;
}
.bs-callout code {
  background-color: #fff;
  border-radius: 3px;
}
/* Variations */
.bs-callout-danger {
  background-color: #fdf7f7;
  border-color: #d9534f;
}
.bs-callout-danger h4 {
  color: #d9534f;
}
.bs-callout-warning {
  background-color: #fcf8f2;
  border-color: #f0ad4e;
}
.bs-callout-warning h4 {
  color: #f0ad4e;
}
.bs-callout-info {
  background-color: #f4f8fa;
  border-color: #5bc0de;
}
.bs-callout-info h4 {
  color: #5bc0de;
}

/****************************************************\
				equal height css end
\****************************************************/




.si-wrapper-top {
	transform: translate(-50%, -140%);
}


@media(min-width: 480px) and (max-width: 767px){
	.si-wrapper-top {
		width: 400px;
	}
}

@media(max-width: 479px){
	.si-wrapper-top {
		width: 250px;
	}
}

@media(min-width: 768px){
	.si-wrapper-top {
		width: 600px;
	}
}

/* Circle for bottom icons*/
a.short_icon::before,
a.short_icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	border: 2px solid rgba(169, 169, 169, 0.5);
	border-radius: 50%;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.2);
	transform: translateX(-50%) translateY(-50%) scale(0.2);
}

a.short_icon::after {
	width: 90px;
	height: 90px;
	border-width: 6px;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.8);
	transform: translateX(-50%) translateY(-50%) scale(0.8);
}

a.short_icon:hover::before,
a.short_icon:hover::after,
a.short_icon:focus::before,
a.short_icon:focus::after {
	opacity: 1;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	-moz-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1);
}

.online_accounts a.btn.short_icon{
	position: relative;
}


/* Effect 4: bottom border enlarge */
.set .content .row a,
.set .content-display .content-intro a {
	margin: 0 0 10px;
	position: relative;
	font-weight: bold;
	text-decoration: underline;
}

.information a {
    margin: auto;
    display: table;
}

.set .content .row a::after,
.set .content-display .content-intro a:after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(10px);
}

.set .content .row a:hover::after,
.set .content .row a:focus::after,
.set .content-display .content-intro a:hover::after {
	height: 1px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

.set .content .row a::after,
.content_body a::after {
	background: #32789F;
}

.set .content-display .content-intro a::after,
.contact_details a::after{
	background: #00aae0;
}

a:hover,
.content_body a:hover{
	opacity: 1;
}

.set .call-to-action a{
	color: #39393b;
}

.bottom_banner .short_icon:hover{
	opacity: 1;
}

#page-result .pagination li{
	padding-left:5px;
	padding-right: 5px;
}

.searchLoadingImg{
	position: absolute;
    right: 0;
    top: 15px;	
}

@media(min-width: 768px){
	#page-result ul.pagination {
		position:absolute;
		bottom: 0;
	}
}

#searchLoadingImg{
    text-align: center;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #24aee1 !important;
    border-color: #24aee1 !important;
}


/*------------------
      About us
--------------------*/

.aboutUs{
    /*margin-top: -325px;*/
}
.aboutUs .row:first-child{
    align-items: center;
    justify-content: center;
}
.aboutUs h1{
    font-size: 30px;
    color: #222;
	text-align: center;
}
.aboutUs h4{
    font-size: 24px;
    color: #222;
	text-align: center;
}

.about-us-image img{
    max-width: 100%;
    object-fit: cover;
}
.about-us-content{
    padding: 25px;
}
.team {
    text-align: center;
    padding-top: 80px  !important;
}

#teams.row {
    display: flex;
    justify-content: center;
    
}
#teams.row:first-child {
    margin-bottom: 100px;
}
.team_member img{
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
    overflow: hidden;
    transition: .3s ease;
    cursor: pointer;
}
.team_member div:hover img{
    filter: unset;
}

.team_member div:hover .name{
    font-weight: bold;
}
@media(max-width: 1024px) {
    .about-us-image img{
        width: 400px;
        height: 600px;
        object-fit: cover;
}
}
@media(max-width: 990px) {
    .team .row {
        margin-bottom: 0;
    }
    .about-us-content{
        padding: 0;
    }
}
.team_member .name{
    font-family: 'Montserrat';
    color: #000;
    margin: 20px 0 10px;
}
.team_member .title{
    color:#999999;
}
@media(max-width: 990px) {

    .team_member .name,
    .team_member .title {
        margin: 10px 0;
    }

    .team_member .title {
        margin-bottom: 60px;
    }
}

.team_member .name {
    font-size: 16px;
    transition: .3s ease;
}
/*--------------
     Blogs
--------------*/

.newsletter-info {
    padding: 3em 0 0;
}

.newsletter-info .control {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-info a.back-btn {
    color: #444;
    display: inline-block;
}

.newsletter-info a.back-btn i {
    margin-right: 8px;
    transition: .3s ease;
}

.newsletter-info a.back-btn:hover i {
    transform: translateX(-4px);
}

.newsletter-info .date {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.newsletter-info .title {
    font-size: 40px;
    text-align: center;
    margin: 20px auto;
    font-weight: bold;
}

.newsletter-info .tools {
    text-align: center;
}

.newsletter-info .tools a {
    color: #285ea0;
    border-radius: 100px;
    border: 1px solid #285ea0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    transition: .3s ease;
}

@media(max-width: 990px) {
    .newsletter-info .tools a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.newsletter-info .tools a:hover {
    background: rgba(182, 123, 65, 0.2);
}

.at-share-btn-elements {
    display: flex;
    margin: 0 !important;
    justify-content: left;
}

.at-style-responsive .at-share-btn {
    border-radius: 30px !important;
    padding: 1px !important;
    margin: 0 4px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 26px !important;
    height: 26px !important;
    display: flex;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper svg {
    width: 26px !important;
    height: 26px !important;
}

.news-content {
    padding: 2em 0;
    margin-top: 130px;
}
.news-content p{
    font-size: 18px;
}
.news-content img {
    width: 100%;
}

.news-content .main-img {
    margin-bottom: 30px;
}

.news-content a {
    color: #32789F;
    font-weight: 600;
}

.news-content a:hover {
    text-decoration: underline;
}

.news-content h3 {
    margin-bottom: 20px;    
}

.news-content h4 {
    font-weight: 600;
    color: #444;
    text-align: left;
    margin-top: 0;
}

.news-content ul li {
    text-indent: -10px;
    margin-bottom: 10px;
}

.news-content ul li:before {
    content: '\f111';
    display: inline-block;
    color: #32789F;
    font-size: 8px;
    font-family: "FontAwesome";
    font-weight: 900;
    margin-right: 10px;
    vertical-align: middle;
}

.recent-section {
    background: #FBFBFB;
    padding: 40px 0;
}

.recent-area {
    margin-bottom: 30px;
    
}

@media(max-wiidth: 990px) {
    .recent-area {
        display: inline-block;
        clear: both;
    }
}
@media(max-width: 768px) {
    .news-content {
        margin-top: 30px;
    }
}
.recent-area .col-lg-6 {
    float: left;
}

.recent-articles h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 10px auto;
    text-align: center;
}

.recent-image {
    display: inline-block;
    height: 180px;
    padding-right: 5px;
    float: left;
}

.recent-content img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.recent-image a:hover img, .recent-content:hover img{
    filter: unset;
}

.recent-text {
    display: inline-block;
}

.recent-text .post-date {
    margin-top: 0;
}

.recent-text .p-title {
    padding-top: 10px;
    text-align: left;
    height: 60px;
}


/*-----------------------
    Tool & Calculators
------------------------*/

.whitebox_container {
    display: flex;
    flex-wrap: wrap;
}

.whitebox_container .row {
    border-bottom: 1px solid #eee;
    padding: 60px 0;
}

.whitebox_container .row:last-child {
    border: 0;
}

.whitebox_container h3 {
    width: 100%;
}

.whitebox_container h4 {
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
}

.whitebox_wrapper {
    float: left;
}

.whitebox_container a {
    max-width: 210px;
    margin: 40px auto;
    display: block;
    color: #999;
    transition: .3s ease;
    font-weight: normal;
    text-decoration: none;
}

.whitebox_container .row a:after {
    background: transparent;
}

.whitebox_inner i {
    width: 100px;
    height: 100px;
    font-size: 50px;
    display: flex;
    align-items: center;
    background: rgba(50, 120, 159, 0.05);
    justify-content: center;
    border-radius: 50px;
    margin: 20px auto;
    transition: .3s ease;
}

.whitebox_container a:hover .whitebox_inner i {
    background: rgba(50, 120, 159, 1);
    color: #fff;
}

.whitebox_inner .span_p {
    text-align: center;
    display: block;
    transition: .3s ease;
}

.whitebox_container a:hover .whitebox_inner .span_p {
    color: #444;
}


/*-------------------------
     Testimonial page
-------------------------*/

.testimonial-section .row {
    margin-bottom: 80px;
}

.left-testimonial {
    text-align: center;
    float: left;
}

.left-testimonial:after {
    content: '';
    width: 2px;
    height: calc(100% - 40px);
    display: block;
    margin: auto;
    background: rgba(50, 120, 159, 0.2);
}

.left-testimonial i {
    font-size: 80px;
    color: rgba(50, 120, 159, 0.2);
}

.square{
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 31px;
    left: 33px;
    border: 2px solid #96b7d9;
}


.right-testimonial {
    margin-top: 40px;
    padding-right: 30px;
    float: right;
}


.right-testimonial p, .right-testimonial .detail-box {
    position: relative;
    z-index: 1;
}

.right-testimonial .detail-box {
    float: right;
    text-align: right;
}

.detail-box .text {
    display: inline-block;
}

.detail-box .name {
    font-size: 18px;
    color: #285ea0;
    font-weight: bold;
}

.detail-box .title {
    margin: 0;
}

.detail-box .photo {
    float: right;
    margin-left: 20px
}

.detail-box .photo image {
    width: 100%;
}


.mail-btn {
  font-family: 'Montserrat';
  font-weight: 600;
  width: 110px;
  padding: 16px 24px;
  background-color: #285ea0;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s ease;
}

.mail-btn:hover {
  background-color: #8D5A27;
  color: #fff;
}

.mail-btn:hover:after {
  animation: flyout 2s 3;
}

@keyframes flyout {
  0% {
    transform: translate(-2px, 5px);
  }
  
  30% {
    opacity: 0;
  }
  
  40% {
    transform: translate(30px, -30px);
  }
  
  50% {
    transform: translate(-20px, 40px);
    opacity: 0;
  }
  
  80% {
    opacity: 1;
    transform: translate(0px);
  }
  
  100% {
    opacity: 1;
  }
}



.calculators .tools iframe {
    width: 100%;
    height: 100%;
    min-height: 713px;
    outline: 0;
    border: 0;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

@media(min-width: 1200px) {
    .calculators .tools iframe {
        height: 860px;
    }
}

@media(max-width: 1200px) {
    .calculators .tools iframe {
        height: 1560px;
    }
}

@media(max-width: 990px) {
    .calculators .tools iframe {
        height: 1460px;
    }
}


/*-------------------------
     Bottom Banner
-------------------------*/

.bottom_banner{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.bottom_banner h3{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
.bottom_banner a.blue_btn{
    color: #fff;
    background-color: transparent;
    border: 1px #fff solid;
   
}
.bottom_banner a.blue_btn:hover{
    background-color: #285ea0;
    color: #fff;
    border: 1px #285ea0 solid;
}


.service-section:nth-child(even) .service-content{
	/*width: 40%;*/
	width: 33%;
    top: 81px;
	padding: 36px;
	position: absolute;
	/*top: 250px;*/
	right: 0;
	box-shadow: 0 5px 15px rgba(0,0,0,.2);
}
.service-section:nth-child(odd) .service-content{
	width: 40%;
	padding: 36px;
	position: absolute;
	top: 250px;
	left: 0;
	box-shadow: 0px 5px 15px rgba(0,0,0,.2);
}

#our-services h4{
    color: #222222;
    text-align: left;
    font-size: 22px;
}
#our-services a.btn{
    border-radius: 0;
    background-color: #96b7d9;
    color: #fff;
    border: unset;
}

#our-services a.btn:hover{
    background-color: #285ea0;
    border: unset;
    color: #fff;
}

.service-img{
    width: 220px;
    height: 220px;
    border-radius: 110px;
    margin: auto;
    margin-bottom: 20px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    overflow: hidden;
    transition: .3s ease;
}
.service-img img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.service-box p {
    font-size: 16px;
    text-align: center;
    color: #333;
    width: 200px;
    margin: auto;
}

@media(max-width: 768px){
    
    #myCarousel .right-testimonial {
        padding: 0px 25px 0 45px;
    }
    
    .square {
        top: 15px;
        left: 13px;
    }
    .white-section, #myCarousel.carousel {
        padding: 0;
    }
    
    #our-services .section{
        padding-bottom: 0;
    }
    .home-service .content {
        padding: 0;
    }
    
}
@media(max-width: 767px){
    .contact-form {
        padding: 30px 20px;
    }
}
.home-menu{
    position: relative;
    /*height: 160px;*/
}
.home-menu ul{
    flex-direction: row;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: -70px;
    transform: translateX(-50%);
    padding: 0;
}

.home-menu a{
        padding: 1em;
        margin: 0 10px;
        border: 4px solid #96b7d9;
        height: 150px;
        width: 150px;
        box-sizing: border-box;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
}

.sidenav{
	position: fixed;
    right: 0;
    /*bottom: 215px;*/
}

.sidenav li{
	margin-bottom: -5px;
}

.home-menu a{
        font-size: 14px;
        color: #96b7d9;
}
.sidenav a{
    font-size: 12px;
    width: 37px;
    color: #96b7d9;
    height: auto;
    background-color: #fff;
    padding: 7px 5px;
    writing-mode: vertical-rl;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home-menu a:hover{
        color: #fff;
        background-color: #285ea0;
         border: 4px solid #fff;
         fill: #fff;
}
.sidenav a:hover, .sidenav a.lightli{
    color: #fff;
    background-color: #285ea0;
    fill: #fff;
}
.sidenav a svg{
	width: 20px;
	height: 20px;
	fill: #96b7d9;
	transform: rotate(90deg);
	margin-right: 3px;
    margin-bottom: 5px;
}
.home-menu a svg{
        margin-bottom: 5px;
        width: 55px;
        height: 60px;
        fill: #96b7d9;
}

@media(max-width: 990px){
     .home-menu{
        display: none;
    }
}


/********************
  Contact / Goto Top
*********************/
 .btntoTop {
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 20px;
    right: 40px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: property 0.3s ease;
    transition: property 0.3s ease;
    transition-property: color, background-color;
    z-index: 4;
}

@media(max-width: 768px) {
    .btntoTop, .sidenav {
        display: none !important;
    }
}


.homeTop {
    bottom: 100px;
    font-size: 12px;
    font-weight: 500;
    background: #ebf7ff !important;
    color: #285ea0;
}

.homeTop:before {
    content: "\f077";
    display: inline-block;
    vertical-align: middle;
    font: 22px "Font Awesome 5 Free";
    font-weight: 900;
    color: #285ea0;
    margin-top: 6px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 4;
}

.homeTop:hover, .homeTop:hover:before {
    color: #fff;
}
.homeTop:hover{
    background: #285ea0 !important;
}

.home-service-img{
    width: 100%;
    height: 422px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


@media(max-width: 1024px) {
    .service-content{
    top: 170px !important;
}
}
@media(max-width: 1024px) {
.service-content{
    	width: 100% !important;
    	position: relative !important;
    	top:0 !important;
    }
}
@media(max-width: 767px) {
    .home-service-img{
    width: 100%;
    height: 300px;
}
}

/********************
      Article
*********************/
.news_article .row{
    align-items: center; 
}

.news_article{
    /*margin-top: 30px;*/
}
#sub-banner.news_article .banner_right, #sub-banner.news_article .banner_right .banner_text{
   text-align: left;  
}

.news_article .banner_text, .news_article .tools{
    font-style: italic;
    margin-top: 40px;
}

.news_article .banner_left{
    /*position: relative;*/
    /*width: 600px;*/
    /*height: 400px;*/
    /*margin-top: 40px;*/
}

#sub-banner.news_article .banner_right h1{
    font-size: 34px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;  
}
.news_article img{
    width: 100%;
    /*height: 100%;*/
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 0;*/
    object-fit: cover;
}
.news_article i{
    color: #285ea0;
}
.news_article .tools a{
    margin-right: 10px;
}
.news_article .tools p{
    font-size: 14px;
}
.news_article .print:before {
    color: #96b7d9;
    content: "/";
    margin: 0 10px 0 5px;
}
.newslwtter{
    margin-bottom: 20px;
}
@media(max-width: 1280px) {
    .news_article .row {
        margin-top: 130px;
    }
}
@media(max-width: 1024px) {
    .news_article .row {
        margin-top: 0;
    }
}
@media(max-width: 768px) {
    .news_article .banner_left {
        width: 350px;
        height: 300px;
}
}
@media(max-width: 767px) {
    #header.news_article_header, #header.sub_page_header{
        min-height: auto;
    }
    
    #sub-banner.news_article{
        height: 90%;
        padding-top: 30px;
        padding-bottom: 0;
    }
    
    .news_article img{
        position: relative;
    }
    
    .news-content {
        margin-top: 0;
    }
    
    .news_article .banner_left{
        width: auto;
        height: auto;
        margin-top: 20px;
    }
    #sub-banner.news_article .container{
        top: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
/********************
      breadcrumb
*********************/

.breadcrumb{
    background-color: unset;
    padding: 0;
}

.breadcrumb-item a{
    color: #9B9B9B;
    font-size: 14px;
    word-break: break-all;
}

.breadcrumb-item:nth-child(1) a{
    color: #002134;
}
.breadcrumb-item:nth-child(1) a:hover{
    color: #002134;
    font-weight: 500;
    border-bottom: 1px solid #002134;
}
li.breadcrumb-item.active{
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.breadcrumb-item.active a{
    color: #285ea0;
    border-bottom: 1px solid #285ea0;
}

@media(max-width: 767px) {
    li.breadcrumb-item.active{
    width: 85%;
}
}

/********************
     Service 1 & 2
*********************/

#sub-banner.serviceContent .banner_right h1{
    word-break: break-word;
    overflow: unset;
    -webkit-line-clamp: unset;
}

.subService .row{
    margin-bottom: 125px;
    position: relative;
}

@media(max-width: 990px) {
    .subService .row {
        margin-bottom: 30px;
    }
}

.sub-service-img img{
    width: 360px;
    height: 390px;
    object-fit: cover;
    transition: all 0.3s ease;
}

/*.subService .row:after{*/
/*    content:"";*/
/*    position:absolute;*/
/*    background-color:rgba(225, 214, 203, 0.2);;*/
/*    width: 90VW;*/
/*    height: 4px;*/
/*    bottom: 55px;*/
/*}*/

.subService .row:nth-child(odd):after{
        transform: translateX(-50%);
        left: 20%;
}
.sub-service-img img:hover, .subService .row:hover img{
    filter: unset;
}
.subService .row .sub-service-img img{
    position: absolute;
    transform: translateY(-50%);
    top: 34%;
    z-index: 1;
}

@media(max-width: 990px) {
    .subService .row .sub-service-img img {
        position: relative;
        max-width: 100%;
        height: auto;
        width: 100%;
    }
}

.sub-service-content{
    text-align: left;
}

.subService .row:nth-child(odd) .sub-service-content{
    padding: 40px 100px 90px 0;
}

.subService .row:nth-child(even) .sub-service-content{
    padding: 40px 0 90px 100px;
}

@media(max-width: 990px) {
    .subService .row:nth-child(odd) .sub-service-content {
        padding: 40px 0;
    }
    
    .subService .row:nth-child(even) .sub-service-content {
        padding: 40px 0;
    }
}

.sub-service-content h3{
    text-align: left;
    font-size: 24px;
    color: #222;
    font-weight: 500;
}

.sub-service-content h5 {
    text-transform: uppercase;
}

.sub-service-content p{
    color: #444;
    font-size: 14px;
}

.sub-service-content li{
    color: #444;
}

.sub-service-content .read-more-detail{
    color: #285ea0;
    font-size: 14px;
    transition: all 0.3s ease;
}
.sub-service-content a:hover{
    color: #285ea0;
}
.sub-service-content i{
    margin-left: 7px;
    transition: all 0.3s ease;
}

.sub-service-content a:hover i{
    margin-left: 11px;
}
.subService .row:nth-child(even) .sub-service-img{
    order: 2;
}

@media(max-width: 768px) {
.subService .row:after{
        width: 0;
}
    .subService .row{
        margin-bottom: 20px;
}
    .sub-service-img img{
    width: 300px;
    height:340px;
}
.subService .row:nth-child(odd) .sub-service-content{
    padding: 40px 0 90px 40px;
}
.subService .row:nth-child(even) .sub-service-content{
    padding: 40px 0 90px 40px;;
}
}
@media(max-width: 767px) {
    #sub-banner.landing-service{
    height: 80vh;
}
 .sub-service-img img{
     width: 100%;
    height: 100%;
 }
    .subService .row:nth-child(even) .sub-service-img{
        order: unset;
}
.sub-service-content{
    padding: 12px 20px !important;
}
.subService .row .sub-service-img img{
    position: relative;
    transform: none;
    top: 0;
}
.subService .container{
    margin-top: -75px;
}
}

/********************
     Services
*********************/
.service-page-content.section{
    padding: 3.5em 0 2em;
}

.serviceContent li.breadcrumb-item.active{
    width: 80%;
}

.otherServices .title {
    margin-bottom: 20px;
}

.otherServices h3{
    font-size: 32px;
    color: #444;
    text-align: left;
}

.otherServices .post-content {
     background: unset;
     box-shadow: unset;
     font-size:14px;
     height: 65px;
     font-weight: normal;
     margin-bottom: 0;
     text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 3;
     white-space: break-spaces;
}

.otherServices .post-more a{
  color: #285ea0;
  font-size: 14px;
  text-decoration: none;
}
.otherServices .recent-text .p-title {
    padding-top: 2px;
    height: 26px;
}
.otherServices .recent-area {
     margin-bottom: 0; 
}
@media(max-width: 768px) {
    .otherServices h3{
         text-align: center; 
    }
    .otherServices .post-title{
            margin-top: 10px;
    }
    .serviceContent li.breadcrumb-item.active{
        width: auto;
    }
}
@media(max-width: 767px) {
    .service-page-content.section{
        padding: 1em 0 2em;
    }
   .otherServices .recent-content{
       margin-bottom: 18px;
   }
   .otherServices .recent-content img{
        width: 100%;
        height: 100%;
   }
}


/********************
     Contact us
*********************/
.contact-card {
    /*margin-top: -120px;*/
}

.contact-card .title {
    margin-bottom: 20px;
}

.contact-card .title h4 {
    color: #222;
}

.contact-details p{
    text-indent: unset;
}
.contact-details p.title{
    color: #285ea0;
    margin-bottom: 10px;
}
.contact-details p.contact-details{
    font-weight: 500;
    font-size: 14px;
}
.contact-details.row{
	margin-top: 25px;
}
.mapLink a{
    font-size: 12px;
    color:#444;
}
.mapLink a:hover{
    border-bottom: 1px solid #444;
    color:#444;
}
#sub-banner.contact-us h1:after{
        /*left: 51%;*/
    }
@media(max-width: 768px) {
    .contact-details p, .contact-details p a{
        font-size: 14px;
    }
}
@media(max-width: 546px) {
    
#sub-banner.contact-us h1{
        font-size: 60px;
    }
#sub-banner.contact-us .container{
        top:30%;
    }
}
@media(max-width: 320px) {
    
#sub-banner.contact-us h1{
        font-size: 52px;
    }

}

/********************
    Teams profile
*********************/
.teams-profile{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}
.teams-profile .overlay{
        z-index: -1;
}
.team-profile-content{
    width: 70%;
    max-width: 1000px;
    /*max-height: 660px;*/
    background-color: #eff5f9;
    margin: 0 auto;
    transform: translateY(-50%);
    top: 54%;
    position: absolute;
    padding: 20px 50px 20px 160px;
    text-align: left;
    border-radius: 10px;
    
}

.team-profile-content h4{
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
}

.team-profile-content .title{
    color: #212529;
    font-style: italic;
    margin-bottom: 40px;
    position:relative;
}

.team-profile-content .title:after{
	content:"";
	background-color:#222;
	width:20px;
	height:2px;
	position:absolute;
	left:0;
    bottom: -20px;
}

.team-profile-img{
    position: absolute;
    left: -74px;
    width: 212px;
    height: 270px;
    top: -55px;
}
.team-profile-img:after{
    content:"";
    position: absolute;
    width:100%;
    height:100%;
    border: 1px solid #fff;
    top: 10px;
    left: 10px;
    z-index: -1;
}
.team-profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.teams-profile .row{
    margin-bottom: 0;
    justify-content: center;
}

.team-profile-content p, .team-profile-content li{
	font-size: 14px;
}
.team-profile-content a{
	font-size: 14px;
	color: #285ea0;
	word-break: break-all;
}
.team-profile-content a:hover{
	color: #285ea0;
}
.team-profile-content button{
	position: absolute;
    top: 5px;
    right: 20px;
    font-size: 3rem;
}

.row.team-contact{
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: left;
}

.team-contact p{
    margin-bottom: 2px;
}
.team-profile-content i{
    margin-right: 10px;
}
.member-content{
    max-height: 580px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 30px;
}
.member-doc{
    display:block;
    margin-top:20px;
    margin-bottom: 40px;
}

.team-profile-content ul li {
    position: relative;
    margin-bottom: 4px;
}

.team-profile-content ul li:before{
    position: absolute;
    content: '\f111';
    left: -14px;
    top: 50%;
    font-size: 4px;
    color: #32789F;
    font-weight: 900;
    transform: translateY(-50%);
}

@media(max-width: 768px) {
    .team-profile-content {
        width: 90%;
        height: 435px;
        top: 55%;
        border-radius: 10px;
        padding: 20px;
    }
    
    .team-profile-img {
        left: -10px;
        width: 120px;
        height: 150px;
    }
    
    .member-content{
        margin-top: 80px;
        height: 340px;
    }
    
    .team-contact div{
        margin: 10px 0;
    }
    
    .team-contact i {
        margin-right: 20px;
    }
    .team-profile-content a {
        font-size: 13px;
    }
    .team-contact a{
        font-size: 16px;
    }
    
    .aboutUs {
        margin-top: -310px;
    }
    
    .about-us-image img {
        width: 100%;
        height: 100%;
    }
}

@media(max-width: 545px) {
    .about-us-content{
    margin-top: 45px;
}
}

.about-content{
	position:relative;
	padding-bottom: 80px !important;
}
.about-content:after{
	content:"";
	background-color: #96b7d9;
	width: 100%;
	height: 1px;
	position:absolute;
	bottom: 0;
}

.tnc, .pri{
    margin-top: 60px;
}

@media(max-width: 545px) {
    .tnc .row, .pri .row{
        padding-left: 15px;
        padding-right: 15px;
    }
    .tnc, .pri{
        margin-top: 0;
    }
}

.pri a, .tnc a{
    color: #285ea0;
}

.pri a:hover, .tnc a:hover{
    color: #285ea0;
}

.pri ul li:before, .tnc ul li:before{
    content: '\f111';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 8px;
    color: #96b7d9;
    margin-right: 10px;
    vertical-align: middle;
    margin-left: -18px;
}

.content-section{
    width: 100%;
}


#our-videos .row {
    justify-content: center;
}


/****************************************************\
				time line
\****************************************************/

#timeline .timeline-item:after,
#timeline .timeline-item:before {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}



#timeline {
  width: 100%;
  margin: 30px auto;
  position: relative;
  padding: 0 2em;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#timeline:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #E0E0E1;
  left: 50%;
  top: 0;
  position: absolute;
}
#timeline:after {
  content: "";
  clear: both;
  display: table;
  width: 100%;
}
#timeline .timeline-item {
  position: relative;
  padding: 0 1em;
}
#timeline .timeline-item .timeline-icon {
  background: #ffffff;
  border: 2px solid #E6E6E7;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -10px;
  left: 50%;
  overflow: hidden;
  margin-left: -11.5px;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display:flex;
}
#timeline .timeline-item .timeline-icon:nth-child(3){
	top: initial;
	bottom: -13px;
}
#timeline .timeline-item .timeline-icon .fa-circle{
	color: #285ea0;
}
#timeline .timeline-item .timeline-content {
  width: 47%;
  min-height: 150px;
  background: #fff;
  padding: 1em;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #285ea0;
}
#timeline .timeline-item:nth-child(even) .timeline-content {
	float:right;
}
#timeline .timeline-item .timeline-content h5{
	margin-top:0;
	font-weight: 500;
	text-transform: uppercase;
	text-align: left;
}
#timeline .timeline-item .timeline-content p{
	font-weight:lighter;
}
#timeline .timeline-item .timeline-content.right {
  float: right;
}
#timeline .timeline-item .timeline-content.right:before {
  content: '';
  right: 45%;
  left: inherit;
  border-left: 0;
  border-right: 7px solid #ee4d4d;
}



@media screen and (max-width: 768px) {
  #timeline {
    margin: 30px;
    padding: 0px;
    width: 90%;
  }
  #timeline:before {
    left: 0;
  }
  #timeline .timeline-item .timeline-content {
    width: 90%;
    /* float: left; */
    margin: 0.5em;
    margin-left: auto;
    margin-right:  auto;
  }
  #timeline .timeline-item .timeline-content:before, #timeline .timeline-item .timeline-content.right:before {
    left: 10%;
    margin-left: -6px;
    border-left: 0;
    border-right: 7px solid #ee4d4d;
  }
  #timeline .timeline-item .timeline-icon {
    left: 0;
  }
  #timeline .timeline-item:nth-child(even) .timeline-content {
	float: none;
	}
}




.sub.popular_links{
	background-color: #e9eef5;
}

.sub.popular_links .container {
    margin-top: 0;
}

.sub.popular_links .row {
    margin-bottom: 0;
}

.popular_links .content_body {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.popular_links .content_body > div {
    margin-bottom: 20px;
}

.popular_links .content_body p{
    font-size: 1.1em;
}

.popular_links h3{
	text-align: center;
	margin-bottom: 1em;
	width: 100%;
}

.popular_links h3:after{
	display: none;
}

.popular_links .content_body h4{
	margin-top: 0;
	font-size: 1.2em;
	font-weight: 700;
	color: #656668;
}

.popular_links .content_body a{
	color: #285ea0;
	font-weight: bold;
}

.popular_links .content_body ul li{
	color: #285ea0;
	text-indent: -18px;
	margin-left: 10px;
}

.thank-you {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.thank-you p {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.thank-you i {
    font-weight: 400;
    font-size: 10rem;
    font-style: normal;
}

.thank-you a {
    margin-top: 20px;
    width: 220px;
    border-radius: 70px;
}


