
/* button style */
.btn {
  -moz-user-select: none;
  user-select: none;
  background: #006399;
  border: medium none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 0;
  margin-bottom: 0;
  padding: 20px 18px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  font-family: "Poppins", Arial, sans-serif;
  position: relative; }
  .btn:hover {
    background: #021a47;
    color: #fff; }
    .btn:hover::before {
      top: -8px;
      left: -8px; }
  .btn::before {
    position: absolute;
    background: #001c2b;
    width: 100%;
    height: 100%;
    content: "";
    top: 8px;
    left: -8px;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; }

.border-white{
    border:1px solid white;
}

.shadow-d{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}
.shadow-r{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    border:1px solid silver;
}
.gradient-d{
    background: #001c2b; 
    background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgb(0, 28, 43)); 
    background: -o-linear-gradient(right,rgba(255,0,0,0),rgb(0, 28, 43));
    background: -moz-linear-gradient(right,rgba(255,0,0,0),rgb(0, 28, 43)); 
    background: linear-gradient(right, rgba(255,0,0,0), rgb(0, 28, 43));
}
.top-bg {
    background: #001c2b;
}
.btn.hero-btn {
    position: relative;
    box-shadow: -8px 8px 0 #fff; 
}
.btn.hero-btn:hover {
    box-shadow: 8px 8px 0 #fff; 
}
.arrow-btn {
  background: #001c2b;
  padding: 20px 10px;

  /*display: inline-block;*/
  line-height: 0;
  /*position: absolute;
  right: 0;
  bottom: 0; */
}
.arrow-btn:hover{
    background: #021a47;
}

/* scrollUp */
#scrollUp {
  background: #006399;
  height: 50px;
  width: 50px;
  right: 31px;
  bottom: 40px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  border: 2px solid #fff; }
  @media (max-width: 767px) {
    #scrollUp {
      right: 16px; } }

#scrollUp:hover {
  color: #fff; }

/* Sticky*/
.sticky-bar {
  left: 0;
  margin: auto;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 9999;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  background: #fff; }

/* Sticky end */
.section-padding {
  padding-top: 50px;
  padding-bottom: 50px; }


/*NAV BAR*/
.header-area .header-top {
    padding: 13px 0; 
}
.header-area .header-top .header-info-left ul li{
    color: #fff;
    display: inline-block;
    margin-right: 33px;
    padding-right: 33px;
    border-right: 1px solid #fff;
    font-size: 14px; 
}

.header-area .header-top .header-info-left ul li a{
    color: #fff;    
}

.header-area .header-top .header-info-left ul li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0px; 
}

.header-area .header-top .header-info-right ul li {
    color: #fff;
    font-size: 14px; 
}

.header-area .slicknav_btn {
    top: -27px; 
}

.main-header {
    position: relative;
    z-index: 3; 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header .header-bottom {
    padding: 18px 0; } 
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main-header .header-bottom {
    padding: 18px 0; } 
}
@media (max-width: 767px) {
    .main-header .header-bottom {
    padding: 18px 0; } 
}

.main-header .main-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 1; 
    }
.main-header .main-menu ul li a {
    color: #021a47;
    font-weight: 500;
    padding: 28px 19px;
    display: block;
    font-size: 16px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; 
}
.main-header .main-menu ul li:hover > a {
    color: #ffffff;
    background-color: #021a47;
}
.main-header .main-menu ul ul.submenu {
    position: absolute;
    width: 170px;
    background: #fff;
    left: 0;
    top: 120%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    padding: 17px 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; 
}

.main-header .main-menu ul ul.submenu > li {
    margin-left: 7px;
    display: block; 
}
.main-header .main-menu ul ul.submenu > li > a {
        padding: 6px 10px !important;
        font-size: 14px;
        color: #0b1c39; 
}
.main-header .main-menu ul ul.submenu > li > a:hover {
    color: #0b1c39;
    background: none; 
}

.main-header ul > li:hover > ul.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%; 
}
.header-area .header-top {
    padding: 13px 0; 
}
.header-area .header-top .header-info-left ul li{
    color: #fff;
    display: inline-block;
    margin-right: 33px;
    padding-right: 33px;
    border-right: 1px solid #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px; 
}
.header-area .header-top .header-info-left ul li a{
    color: #fff;  
}
.header-area .header-top .header-info-left ul li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0px; 
}
.header-area .header-top .header-info-right ul li {
    color: #fff;
    font-size: 14px; 
}

.header-sticky ul li a {
    padding: 10px 19px; }
  
  .header-sticky.sticky-bar.sticky .main-menu ul > li > a {
    padding: 20px 20px; }
  
.slicknav_menu .slicknav_icon-bar {
    background-color: #001c2b !important; 
 }
  
.header-sticky.sticky-bar.sticky .header-btn .get-btn {
    padding: 20px 35px; 
}

.main-header .main-menu ul li:hover > a {
      color: #ffffff;
      background: #021a47; }

.main-header .main-menu ul ul.submenu {
    position: absolute;
    width: 170px;
    background: #fff;
    left: 0;
    top: 120%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    padding: 17px 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }

.get-btn {
  padding: 28px 30px;
  background: #001c2b;
  color: #ffffff;
  display: block; 
}
.get-btn:hover {
    color: #ffffff; }

.slicknav_menu .slicknav_nav a:hover {
  background: transparent;
  color: #001c2b; }

.slicknav_menu {
  background: transparent;
  margin-top: 0px !important; }

.mobile_menu {
  position: absolute;
  right: 0px;
  width: 100%;
  z-index: 99; }



/*HOME ->Intro-hero*/
.intro-hero {
    margin-top: -1px; 
    /*background-color: #001c2b;*/
}

.hero-height {
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.intro-hero .intro-box{
    background-color: #001c2b;

    padding: 39px 70px 56px 68px;
    margin-left: -25px;
    margin-right: 25px;
    position: relative;
    overflow: hidden; 
    color: white;
    border-radius: 10px;
}
.intro-hero .intro-box h1{
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 14px;
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.2;
    text-transform: uppercase;

}
.intro-hero .intro-box p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 39px;
    color: #ffffff;
    margin-bottom: 25px;
}


/*Media Query Intro Hero*/
@media (max-width: 767px) {
    .hero-height {
        min-height: 400px; 
    }
    .intro-hero .intro-box{
        padding: 25px 40px 30px 30px;
        margin-left: -20px;
        margin-right: 10px;
    }
    .intro-hero .intro-box h1 {
        font-size: 45px;
        line-height: 1.2; 
    }
}

/*HOME -> Services Area*/
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.services-area {
  flex-wrap: wrap; 
  background-color: #fff;

}

.services-area .single-service {
    padding: 30px 25px;
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    
    height: 420px;
    display: flex;
    flex-direction: column;
    align-content: center;
}

.services-area .single-service i.fa {
  width: 60px;
  height: 60px;
  background-color: #006399;
  font-size: 25px;
  color: #fff;
  line-height: 60px;
  text-align:center;
  margin-bottom:20px;
    transition: .4s;
    border-radius: 50%;
    font-family: "Poppins", Arial, sans-serif;
  
}

.services-area .single-service:hover i.fa {
    border-radius: 50%;
    background-color: #f7f7f7;
    border: 2px solid #001c2b;
    color: #001c2b;
    font-family: "Poppins", Arial, sans-serif;

}

.services-area .single-service .service-fa{
    flex: 1;   
    margin:0 auto;
}

.services-area .single-service .service-head{
    flex: 2;
    
}
.services-area .single-service .service-para{
    flex: 4;
    
}
.services-area .single-service .service-bnt{
    flex: 4;
    
}


.section-title {
  margin-bottom: 60px;
}

.section-title h4 {
    text-transform: capitalize;
    font-size: 22px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
.section-title h4:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background-color: #001c2b;
    bottom: 0;
    left: 50%;
    margin-left: -30px;
}
.section-title h4:after {
    position: absolute;
    background-color: #001c2b;
    content: "";
    width: 10px;
    height: 10px;
    bottom: -4px;
    left: 50%;
    margin-left: -5px;
    border-radius: 50%;
}
.section-title p {
    color: #777;
    font-size: 16px;
    margin-bottom: 100px;
}


/* PRELODER */
.preloader {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    margin: 0 auto; }
  
  .preloader .preloader-circle {
    width: 100px;
    height: 100px;
    position: relative;
    border-style: solid;
    border-width: 3px;
    border-top-color: #001c2b;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    background-color: #ffffff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s; }
  
  .preloader .preloader-circle2 {
    border-top-color: #021a47; }
  
  .preloader .preloader-img {
    position: absolute;
    top: 50%;
    z-index: 200;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s; }
  
  .preloader .preloader-img img {
    max-width: 55px; }
  
  .preloader .pere-text strong {
    font-weight: 800;
    color: #021a47;
    text-transform: uppercase; }
  
  @-webkit-keyframes zoom {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .6s;
      -o-transition: .6s;
      transition: .6s; }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
      -webkit-transition: .6s;
      -o-transition: .6s;
      transition: .6s; } }
  
  @keyframes zoom {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .6s;
      -o-transition: .6s;
      transition: .6s; }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
      -webkit-transition: .6s;
      -o-transition: .6s;
      transition: .6s; } }



/*HOME ->Industires*/
.industries{
    background-color: rgb(224, 224, 224);
}

.industries .text-indu h3{

    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
}

/* .industries .text-indu p{
     font-size: 30px;
} */


/*TEAM*/
.bg-two {
    background: #eee !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #001c2b;
    border-color: #001c2b;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #001c2b;
    border-color: #001c2b;
}

section {
    padding: 60px 0;
}

section .section-title {
    text-align: center;
    color: #001c2b;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    transform: erspective(1000px);
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 312px;
}

.backside .card a {
    font-size: 18px;
    color: #001c2b !important;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #001c2b !important;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}


/* Service thumbnail */



/* Insights Thumbnail */
.insight-thumbnail{
    min-height: 400;
    display: flex;
}

.insight-thumbnail .insight-img{
    background-color: #777;
    flex: 4;
}

.insight-thumbnail .insight-content{
    background-color: #0b1c39;
    flex:2;
}

.insight-thumbnail .insight-btn{
    background-color: #006399;
    flex: 1;
}


.flex-container {
    display: -webkit-flex;
    display: flex;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

.flex-item {
    background-color: cornflowerblue;
    margin: 10px;
}

.item1 {
    -webkit-flex: 2;
    flex: 2;
}

.item2 {
    -webkit-flex: 1;
    flex: 1;
}

.item3 {
    -webkit-flex: 1;
    flex: 1;
}