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

body {	
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #FFF;
	color: #191919;	
}

a {
  display: inline-block;
}

a:visited,
a:hover,
a:active {
  text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0,0,0,.5);   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {   
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

.header-area {
    background-color: #002f59;
    background-image: ù;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px 0px 0px;
}

.navbar-brand img {
    max-width: 204px;
}

.navbar-nav li {
    padding: 10px 15px;
}

.navbar-nav li a {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    padding: 11px 0;
    transition: 0.2s all ease;
}

.navbar-nav li a:hover {
    color: #DEE0E3;
}

.navbar-nav li .login-btn {
    background: #01BDB4;
    display: inline-block;
    padding: 11px 30px;
    border-radius: 10px;
    transition: 0.2s all ease;
    color: #f7f7f7;
}

.navbar-nav li .login-btn:hover {
    background: #04CCC2B0;
    color: #fff;
}

.navbar-nav li .account-btn {
    background: #01BDB4;
    color: #FFF;
    display: inline-block;
    padding: 11px 30px;
    border-radius: 10px;
    transition: 0.2s all ease;
}

.navbar-nav li .account-btn:hover {
    background: #04CCC2B0;
    color: #FFF;
}


/* hamburger-area */
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none!important;
  margin-top: 7px;
}

.hamburger:hover {
    opacity: 0.9; 
}

.hamburger.is-active:hover {
    opacity: 0.9; 
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #FFF;
     
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
    
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #636c83;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    outline: none;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
    outline: none; 
}

.hamburger-inner::before {
    top: -10px; 
}

.hamburger-inner::after {
    bottom: -10px; 
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    outline: none;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s 
    cubic-bezier(0.33333, 0.66667, 0.66667, 1), 
    opacity 0.1s linear; 
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s 
    cubic-bezier(0.33333, 0.66667, 0.66667, 1), 
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    outline: none;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s 
    cubic-bezier(0.33333, 0, 0.66667, 0.33333), 
    opacity 0.1s 0.22s linear; 
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s
    cubic-bezier(0.33333, 0, 0.66667, 0.33333), 
    transform 0.13s 0.25s 
    cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.header-cnt {
    padding: 100px 0 30px;
}

.header-left h2 {
    font-size: 70px;
    font-weight: 400;
    color: #fff;
}

.header-left h2 span {
    font-weight: 700;
    color: #fff;
}

.header-left p {
    font-size: 18px;
    font-weight: 400;
    color: #c8c8c8;
    margin: 20px 0;
}

.header-left a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 15px;
    background: #04ccc2;
    margin-top: 35px;
    transition: 0.2s all ease;
}

.header-left a i {
    font-size: 18px;
    display: inline-block;
    margin-left: 10px;
    color: #FFF;
}

.header-left a:hover {
    opacity: 0.8;
}

.header-right img {
    width: 100%;
}

.slide-area {
    background: #003f77;
    padding: 10px 0;
    overflow: hidden;
}

.slide-area ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-area ul li {
    display: inline-block;
    padding: 0 5px;
    border-right: 1px solid #828FAE;
}

.slide-area ul li:last-child {
    border-right: none;
}

.slide-area ul li img {
    max-width: 40px;
}

.slide-area ul li span {
    font-size: 15px;
    font-weight: 400;
    color: #FFF;
}

.slide-area ul li .white {
    color: #A4A9B5;
}

.slide-area ul li small {
    color: #E3E3E3;
    font-size: 14px;
    font-weight: 300;
}

/*=== service-area start ===*/
.service-area {
    padding: 130px 0 85px;
}

.service-item {
    border: 1px solid #DBE4EC;
    padding: 65px 15px 30px;
    text-align: center;
    border-radius: 30px;
    min-height: 275px;
    margin: 8px 0;
}

.service-item img {
    max-width: 100%;
}

.service-item h5 {
    font-size: 22px;
    font-weight: 500;
    color: #C7D5E1;
    margin-bottom: 20px;
}

.service-item h5 img {
    max-width: 100%;
}

.service-item  h2 {
    font-size: 34px;
    font-weight: 400;
    color: #003F75;
}

.service-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #003f75;
    text-align: center;
    margin: 35px 0 12px;
}

.service-item p {
    font-size: 15px;
    font-weight: 400;
    color: #006db0;
    text-align: center;
    margin-bottom: 0;
}

.serv-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.serv-cnt1 {
    border: none;
    justify-content: center;
    align-items: flex-start;
}

.service-area .row > * {
    padding-left: 8px;
    padding-right: 8px;
}

.serv-inner {
    height: 65px;
}

.serv-cnt h6 {
    font-size: 20px;
    font-weight: 400;
    color: #222A3B;
}

.serv-cnt a {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    background: #003f75;
    display: inline-block;
    padding: 14px 26px;
    border-radius: 15px;
    transition: 0.2s all ease;
    margin-top: 16px;
}

.serv-cnt a i {
    font-size: 17px;
    color: #C0C7D6;
    margin-left: 10px;
}

.serv-cnt a:hover {
    opacity: 0.8;
}

/*=== about-area start ===*/
.about-area {
    padding: 50px 0;
}

.about-item img {
    max-width: 100%;
}

.about-item h4 {
    font-size: 24px;
    font-weight: 500;
    color: #C7D5E1;
}

.about-item h2 {
    font-size: 30px;
    font-weight: 400;
    color: #003f75;
    margin: 20px 0;
}

.about-item p {
    font-size: 15.5px;
    font-weight: 400;
    color: #006db0;
    margin-bottom:;
}

.about-item {
    margin: 60px 0;
}

/*=== partner-area start ===*/
.partner-area {
    padding: 50px 0 120px;
}

.part-left h4 img {
    max-width: 100%;
}

.part-left h4 {
    font-size: 24px;
    font-weight: 500;
    color: #C7D5E1;
}

.part-left h2 {
    font-size: 30px;
    font-weight: 400;
    color: #222A3B;
    margin-top: 20px;
}

.part-right img {
    width: 100%;
}

/*=== footer-area start ===*/
.footer-area {
    background: #FAFBFD;
    padding: 100px 0;
}

.footer-item .logo2 img {
    max-width: 180px;
    margin-bottom: 10px;
}

.footer-item p {
    font-size: 10px;
    font-weight: 400;
    color: #7284AD;
}

.footer-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #003C70;
    margin-bottom: 18px;
}

.footer-item ul li {
    padding: 8px 0;
}

.footer-item ul li a img {
    max-width: 100%;
    margin-right: 14px;
}

.footer-item ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #7284AD;
    transition: 0.2s all ease;
}

.footer-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: #003C70;
    margin-bottom: 18px;
}

.footer-item input {
    font-size: 16px;
    font-weight: 400;
    color: #7284AD;
    width: 80%;
    display: block;
    background: #FFFFFF;
    padding: 15px 25px;
    border: none;
    outline: none;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer-item form {
    position: relative;
    margin-top: 30px;
}

.footer-item button {
    width: 58px;
    height: 58px;
    line-height: 58px;
    display: inline-block;
    text-align: center;
    font-size: 17px;
    background: #FFFFFF;
    color: #003C70;
    border: none;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.2s all ease;
}

.footer-item button:hover {
    background: #003C70;
    color: #FFF;
}

.footer-link ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #7284AD;
}

.social-icon ul li {
    display: inline-block;
}

.social-icon ul li a img {
    max-width: 100%;
}

.footer-item {
    margin: 10px 0;
}

.footer-item ul li a:hover {
    opacity: 0.8;
}

.social-icon,
.footer-link {
    margin-top: 50px;
}

#outer {
    padding: 30px 0;
}

#tick li, 
#tick2 li { 
    position:absolute; 
    left: 0px;
}

#tick, 
#tick2 { 
    position:relative; 
    display:block; 
    width:5100px; 
    margin:0; 
    content=""; 
    display:table; 
    height: 0px; 
}

::-moz-selection { /* Code for Firefox */
  color: #ff !important;
  background: #e7dabf !important;
}

::selection {
  color: #ff !important;
  background: #002f59 !important;
}

/*
========================
Contact us page
========================
*/

.c-img {
    width: 95px;
    height: 90px;
    border-radius: 15px;
    background-color: #F6F8FC;
    line-height: 87px;
    text-align: center;
}

.cu-hero .media {
    margin-bottom: 45px;
}

.cu-hero .media h4 {
    margin: 0;
    font-size: 22px;
    color: #D9D9D9;
    margin-bottom: 5px;
    font-weight: normal;
}

.cu-hero .media a {
    color: #828fae;
    font-size: 20px;
    word-break: break-all;
    font-weight: 300;
}

.cu-hero {
    padding: 150px 0 50px;
}

.cu-hero .row {
    padding-top: 50px;
    flex-wrap: wrap;
}

.cu-hero h2 {
    font-size: 75px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 0;
}

.cu-hero p {
    font-size: 22px;
    color: #898F9D;
    font-weight: normal;
}

.contact-form {
    max-width: 800px;
    margin: 100px auto;
    background-color: #F6F8FC;
    padding: 120px;
}

.contact-form p {
    margin: 0;
    color: #222A3B;
    font-size: 18px;
    font-weight: normal;
}

.contact-form input {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    display: block;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #C8D0E0;
    outline: none;
    margin-bottom: 40px;
    padding: 8px 0px;
    color: #222A3B;
    font-size: 16px;
}

.contact-form textarea {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    display: block;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #C8D0E0;
    outline: none;
    margin-bottom: 40px;
    padding: 8px 0px;
    color: #222A3B;
    font-size: 16px;
    height: 45px;
}

::placeholder {
    color: #B4BED5;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #B4BED5;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #B4BED5;
    opacity: 1;
}

.contact-form [type="submit"] {
    border: none;
    width: 180px;
    padding: 15px;
    display: block;
    margin: auto;
    margin-bottom: 0;
    border-radius: 5px;
    background-color: #828FAE;
    color: #fff;
    text-align: center;
    margin-top: 70px;
}

.contact-form [type="submit"]:hover {
    opacity: 0.9;
}

.contact-form h2 {
    font-size: 26px;
    color: #C7D5E1;
    margin-bottom: 50px;
    margin-top: 0;
    font-weight: 500;
}







.panel-default>.panel-heading {
  color: #333;
  background-color: #fff;
  border-color: #e4e5e7;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.panel-default>.panel-heading a {
  display: block;
  padding: 10px 15px;
}

.panel-default>.panel-heading a:after {
  content: "";
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right;
  transition: transform .25s linear;
  -webkit-transition: -webkit-transform .25s linear;
}

.panel-default>.panel-heading a[aria-expanded="true"] {
  background-color: #eee;
}

.panel-default>.panel-heading a[aria-expanded="true"]:after {
  content: "\2212";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.panel-default>.panel-heading a[aria-expanded="false"]:after {
  content: "\002b";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion-option {
  width: 100%;
  float: left;
  clear: both;
  margin: 15px 0;
}

.accordion-option .title {
  font-size: 20px;
  font-weight: bold;
  float: left;
  padding: 0;
  margin: 0;
}

.accordion-option .toggle-accordion {
  float: right;
  font-size: 16px;
  color: #6a6c6f;
}

.accordion-option .toggle-accordion:before {
  content: "Expand All";
}

.accordion-option .toggle-accordion.active:before {
  content: "Collapse All";
}

.logotext {
    color: #fff;
}

.copyright {
    color: #7e8fb4;
    font-size: 10px;
    margin-top: 10px;
}