/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap'); */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family:  'Roboto', sans-serif;; */
}

@font-face {
  font-family: sfProdisplay-regular;
  src: url("../font/SFPRODISPLAYREGULAR.OTF");
}
@font-face {
  font-family: sfProdisplay-bold;
  src: url("../font/SFPRODISPLAYBOLD.OTF");
}

:root{
  --theme-color:#e9b61b;
  --text-color:#3e4145;
}
h1{font-family: sfProdisplay-bold;}
h5{font-family: sfProdisplay-regular;}
p{font-family:sfProdisplay-regular ; color:var(--text-color)}
img{
    max-width: 100%; 
    margin: auto; 
} 
.top-header{
    background-color: #1f3a70;
    padding: 10px 0;
}
.top-header .top-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header .left-nav{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    
}
.top-header .left-nav p{
    margin: 0;
    color: #fff;
}
.top-header .right-nav{
    text-align: end;
}
.top-header .right-nav a{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}
.top-header .right-nav a:first-child{
    margin-right: 20px;
}
.top-header .right-nav i{
    padding-right: 15px;
    font-size: 16px;
    color: #e9b61b;
}

/* nav-bar */
nav{
    width: 100%;
    height: 100%;
    /*overflow: hidden;*/
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
    display: flex;
    align-items: center;
    position: relative;
  }
  nav .navbar{
    
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
   height: 80px;
}
  
  .navbar .logo{
    width: 90px;
  }

  .navbar .logo img{
    width: 100%;
    
  }
  .sub_menu ul{padding: 0;}
  .sub_menu ul li{padding: 10px 0!important;border-bottom: 1px dotted #cfcfcf; margin-bottom: 0!important;}
  .in-btn{
    display: flex;
    align-items: center;
  }
  .in-btn i{padding-right: 10px;font-size: 16px;}
  .in-btn a{
    color: #fff;
/*    border: 1px solid;*/
    display: block;
    width: 100%;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #ffb91b;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 23px;
    font-weight: 700;
  }
  .in-btn a:hover{background-color: #EBBC1C;}
  .navbar .logo a{
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
 
  nav .navbar .links{
    display: flex;
    width: 60%;
    margin-bottom: 0;
  }
  nav .navbar .links li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 21px;
  }
  nav .navbar .links li a{

    text-decoration: none;
    white-space: nowrap;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 700;
  }
  nav .navbar .links li a:hover{
    color: #ffb91b;
  }
  nav .navbar .links li a.active{
    color: #ffb91b;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow{
    transform: rotate(180deg);
    }
  
  nav .navbar .links li .arrow{
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
  }
  nav .navbar .links li .sub-menu{
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #3E8DA8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: block;
  }
  .navbar .links li .sub-menu li{
    padding: 0 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .navbar .links li .sub-menu a{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }
  .navbar .links li .sub-menu .more-arrow{
    line-height: 40px;
  }
  .navbar .links li .htmlCss-more-sub-menu{
    /* line-height: 40px; */
  }
  .navbar .links li .sub-menu .more-sub-menu{
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
  }
  .links li .sub-menu .more:hover .more-sub-menu{
    display: block;
  }
  .navbar .search-box{
    /* position: relative; */
    width: 20%;
  }
  .navbar .search-box i{
    height: 100%;
    text-align: center;
    font-size: 22px;
    color: #4a4a4a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
  }
  .navbar .search-box .input-box{
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .navbar.showInput .search-box .input-box{
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
  }
  .search-box .input-box::before{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
  }
  .search-box .input-box input{
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
  }
  .navbar .nav-links .sidebar-logo{
    display: none;
  }
  .navbar .fa-bars{
    display: none;
  }
  .bigbutton{
    position:absolute;
    right: 0;
    width: 15%;
  }
  @media (max-width:920px) {
    nav .navbar{
      max-width: 100%;
      padding: 0 25px;
    }
  
    nav .navbar .logo a{
      font-size: 27px;
    }
    nav .navbar .links li{
      padding: 0 10px;
      white-space: nowrap;
    }
    nav .navbar .links li a{
      font-size: 15px;
    }
  }
  @media (max-width:800px){
    nav{
      /* position: relative; */
    }
    .navbar .fa-bars{
      display: block;
    }
    nav .navbar .nav-links{
      position: fixed;
      top: 0;
      left: -100%;
      display: block;
      max-width: 270px;
      width: 100%;
      background:  #3E8DA8;
      line-height: 40px;
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.5s ease;
      z-index: 1000;
    }
    .navbar .nav-links .sidebar-logo{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .sidebar-logo .logo-name{
      font-size: 25px;
      color: #fff;
    }
      .sidebar-logo  i,
      .navbar .fa-bars{
        font-size: 25px;
        color: #000;
      }
    nav .navbar .links{
      display: block;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    nav .navbar .links li .arrow{
      line-height: 40px;
    }
  nav .navbar .links li{
      display: block;
    }
  nav .navbar .links li .sub-menu{
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li{
    border-bottom: none;
  
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow{
    transform: rotate(0deg);
    }
    .navbar .links li .sub-menu .more-sub-menu{
      display: none;
    }
    .navbar .links li .sub-menu .more span{
      /* background: red; */
      display: flex;
      align-items: center;
      /* justify-content: space-between; */
    }
  
    .links li .sub-menu .more:hover .more-sub-menu{
      display: none;
    }
    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu{
      display: none;
    }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu{
        display: block;
      }
      .navbar .nav-links.show1 .links .htmlcss-arrow,
      .navbar .nav-links.show3 .links .js-arrow{
          transform: rotate(180deg);
  }
      .navbar .nav-links.show2 .links .more-arrow{
        transform: rotate(90deg);
      }
  }
  @media (max-width:370px){
    nav .navbar .nav-links{
    max-width: 100%;
  } 
  }
.hero-section{
   
    overflow: hidden;
}
.wrapper{position: absolute; width: 100%; right: 0; top: 50%; transform: translateY(-50%);}
.slide{position: relative;}
  .owl-carousel{
    width: 100%;
    height: auto;
  }
  .slide-1{
    width: 100%;
    height: auto;
  }
 .hero-section .owl-dots{
     position: absolute;
     bottom: 2%;
     left: 46%;
     transform: translateY(-50%);
 }
 .hero-section.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color:#fff ;
    border-radius: 10px;
 }
 .hero-section.owl-theme .owl-dots .owl-dot.active span{
    height: 10px;
    border-radius: 10px;
    background-color: #ededed;
 } 
 .slide-content{
  max-width: 550px;
  width: 100%;
  float: right;
 }
 .slide-content h1{
    font-size: 60px;
    font-weight: 600;
    text-transform: capitalize;
    color: #083a6f;
 }
 .slide-content p{
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: #4d4d4dc9;
    margin-top: 20px;
 }
 .slide-content button{
    background-color: #ffb91b;
    border: 1px solid #ffb91b;
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    margin-top: 30px;
 }
 .slide-content button:hover{
    background-color: #083a6f;
    color: #fff;
    border: 1px solid #083a6f;
 }
 .about-section{
    padding-top: 60px;
    margin-bottom: -2px;
 }
 .about-section .about-img{
    height: 100%;
 }
.about-section .about-img img{
    float: right;
    
    margin-top: auto;
    height: 100%;
    object-fit: contain;
}
.about-section .about-content{
   
  
    margin-left: 60px;
}
.about-section .about-content h4{
    color: #ffb91b;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.about-section .about-content h5{
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    word-spacing: 0;
    color: #083a6f;
}
.about-section .about-content p{
    font-size: 17px;
    font-weight: 400;
    text-align: justify;
    padding-top: 10px;
    margin-bottom: 0;
}
.about-section .about-two{
  align-items: center;
}
.about-section .about-btns{
  padding: 30px 0;
}
.about-section .about-btns a{
    background-color: #ffb91b;
    border: 1px solid #ffb91b;
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    margin-top: 0;
    text-decoration: none;
    margin-left: 0;
    display: inline;
}
.about-section .about-btns a:hover{
    background: #1f3a70;
    color: #fff;
    border-color:#1f3a70 ;
}
.about-section .img-about img{
    float: right;
    margin-right: -14px;
}
.about-section .about-parent{
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.about-section .about-parent .about-img-right h5{
  color: #083a6f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  padding-left: 10px;
}
.a-con h2{
    font-size: 18px;
    font-weight: 600;
    padding-top: 6px;
}
.service-section{
    background-color: #1f3a70;
    padding: 70px 0 90px;
    /*margin-bottom: -50px;*/
}
.service-section .container-serv{
    max-width: 80%;
    margin: auto;
}
.service-section .service-parent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
}
.service-section .about-content{
    width: 50%;
}
.service-section .about-content h4{
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}
.service-section .about-content h5{
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    word-spacing: 0; 
    color: #fff;
}
.service-section .service-content{
    width: 50%;
}
.service-section .service-content p{
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    color: #fff;
}
.service-section .parent-div{
    text-align: center;
    border: 1px solid #fff;
    padding: 20px 10px ;
    background: #fff;
    border-radius: 10px;
   overflow: hidden;
   
}
.service-section .img-center{
  transition: 0.5s ease;
}
.service-section .img-center>img {
   height: 120px;
}
.service-section .img-center:hover{
  transform: scale(1.1);
}
.service-section .img-center h6{
    font-size: 15px;
    font-weight: 700;
    padding-top: 15px;
}
.card-section .card-content{
  text-align: center;
  width: 900px;
  margin: 0 auto;
  /*padding: 80px 0 10px;*/
}
.card-section .card-head h5{
   font-size: 15px;
   font-weight: 500;
   color: #ffb91b;
   text-transform: uppercase;
}
.card-section .card-head h3{
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 400;
    padding: 10px 0 15px;
    color: #083a6f;
}
.card-section .para {
     font-size: 18px;
     font-weight: 400;
     color: #464444;
}
.cards-wrapper .card-bod{
     padding: 30px 0 20px;
}
.card-bod .card-title{
  font-size: 20px;
  font-weight: 600;
  color: #083a6f;
}
.card-bod .card-date{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
}
.card-bod .card-text{
  font-size: 16px;
  font-weight: 500;
}
.card-bod .btn-cls{
  padding: 10px 0 0;
  display: flex;
  align-items: center;
}
.card-bod .btn-cls a{
  text-decoration: none;
  color: #ffb91b;
  text-transform: capitalize;
}
.container-card{
  margin: 0 auto;
  padding: 60px 0;
}
.cards-wrapper {
  display: flex;
  justify-content: center;
}
.card img {
  max-width: 100%;
  max-height: 100%; 
  object-fit: cover;
  object-position: center;
} 

.card-flex .btn-cls img{
  width: 30px;
  margin-left: 10px;
}
.card {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  border-radius: 0;
}
.carousel-inner {
  padding: 0;
}
.carousel-control-prev {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
}
.carousel-control-next {
  background-color: #e1e1e1;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}
@media (min-width: 768px) {
  .card img {
    height: 11em;
  }
}

.migrate-section{
 
  background-size: contain;
  background-repeat: no-repeat;
  padding: 20px 0 40px;
    background-position: bottom;
    position: relative;
}
.migrate-section .left-migrate{
  max-width: 660px;
  width: 100%;
}
.migrate-section .left-migrate h5{
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
}
.migrate-section .left-migrate p{
  font-size: 17px;
  color: #333;
  font-weight: 400;
  max-width: 450px;
}
.migrate-section .parent-mig .left-mig img {
    width: 20px;
}
.migrate-section .parent-mig h5 {
    margin-bottom: 0;
}
.migrate-section .migrate-div {
  padding: 50px 0 0;
} 
.migrate-section .parent-mig{
  display: flex;
  align-items: flex-end;
  padding-top: 15px;
}

.migrate-section .parent-mig .left-mig{
  padding-right: 10px;
}

 .parent-mig .right-mig h5{
  align-items: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
 
}
.footer-section{
  background-color: #1f3a70;
  padding: 40px 0;
}
.footer-section .footer-parent{
  display: flex;
  justify-content: space-between;
}
.footer-section .footer-cont{
  max-width: 80%;
  margin: 0 auto;
}
.footer-section .footer-section-1{
  width: 40%;
}
.footer-section .footer-img img{
  height: 80px;
}
.footer-section .footer-content p{
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0 5px;
  color: rgba(246, 247, 248, 0.6);
  padding-right:55px;
  
}
.footer-section .footer-parent li a:hover {
    color: #ECBC1C;
}
.footer-section .footer-icon ul{list-style: none;padding-left: 0;}
.footer-section .footer-icon li a{
    text-decoration: none;
    color: rgba(246, 247, 248, 0.6);
    font-size: 16px;
}
.footer-section .footer-icon li i{
  padding-right: 12px;
  color: #ffb91b;
}
.footer-section .footer-section-2{
  width: 22%;
}
.footer-section .footer-section-2 .footer-2-title h2{
   font-size: 25px;
   font-weight: 500;
   color: #fff;
/*   margin: 0;*/
}
.footer-section .footer-section-2 ul{
  list-style: none;
  padding-top: 15px;
  padding-left: 5px;
}
.footer-section .footer-section-2 li{
  margin-bottom: 5px;
  font-size: 15px;
  font-family: "sfProdisplay-regular";
  color: rgba(246, 247, 248, 0.6);
}
.footer-section .footer-section-2 li a{
  font-size: 15px;
  font-family: "sfProdisplay-regular";
  color: rgba(246, 247, 248, 0.6);
  text-decoration: none;
}
.footer-section .footer-section-3{
  width: 19%;
}
.footer-section .footer-section-3 .footer-3-title h2{
  font-size: 25px;
   font-weight: 500;
   color: #fff;
}
.footer-section .footer-section-3 ul{
  list-style: none;
  padding-top: 15px;
  padding-left: 5px;
}
.footer-section .footer-section-3 li{
  margin-bottom: 10px;
  font-size: 15px;
  font-family: "sfProdisplay-regular";
  color: rgba(246, 247, 248, 0.6);
}
.footer-section .footer-section-3 li a{
  font-size: 15px;
  font-family: "sfProdisplay-regular";
  color: rgba(246, 247, 248, 0.6);
  text-decoration: none;
}
.footer-section.footer-section-4{
  width: 19%;
}
.footer-section .footer-section-4 .footer-4-title h2{
  font-size: 25px;
   font-weight: 500;
   color: #fff;
}
.footer-section .footer-section-4 ul{
  list-style: none;
  padding-top: 15px;
  padding-left: 5px;
}
.footer-section .footer-section-4 li{
  margin-bottom: 10px;
  font-size: 15px;
  font-family: "sfProdisplay-regular";
  color: rgba(246, 247, 248, 0.6);
}
.footer-section .footer-section-4 li a{
  font-size: 15px;
  font-family: "sfProdisplay-regular";
  color: rgba(246, 247, 248, 0.6);
  text-decoration: none;
}
.copyright-section{
  background-color: #1f3a70;
}
.border-cont{border-top: 1px solid transparent; padding-bottom: 6px;}
.copyright-section .copt-pad{
  /* padding-top: 23px;
  padding-bottom: 7px; */
  padding-top: 12px;
}
.copyright-section .copy-content p{
  font-size: 14px;
  font-weight: 400;
  color: rgba(246, 247, 248, 0.6);
  margin-bottom: 0;
}
.copyright-section .policy{
  float: right;
}
.copyright-section .policy h4{
  color: rgba(246, 247, 248, 0.6);
  font-size: 14px;
  font-weight: 400;
}
.copyright-section .policy a{
  text-decoration: none;
  color: rgba(246, 247, 248, 0.6);
}
.copyright-section .policy a:hover{color: #ECBC1C;}
.coltab-main{display: flex;justify-content: center;flex-wrap: wrap;margin: -5px;} 
.col-tabs{margin: 5px;width: 15%;cursor: pointer;}  
.col-tabs a{text-decoration: none; color: #000;}
.res{display: flex; justify-content: space-between; }
.nav-links {
  width: 80%;
}
.logo-main{width: 10%;}
.resposnive_nav{width: 50px; display: none;}
.resposnive_nav span{display:block; width: 30px; height: 3px; margin-bottom: 6px; background: var(--text-color);  position: relative; transition: 0.5s ease}
.activenav .resposnive_nav span:nth-child(1){transform: rotate(-45deg); top: 10px;}
.activenav .resposnive_nav span:nth-child(2){opacity: 0;}
.activenav .resposnive_nav span:nth-child(3){transform: rotate(45deg); bottom: 8px; }


/*----------about us------------*/
.hero-section-ab{
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40vh;
  position: relative;
}

.hero-section-ab .hero-position{
  position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
}
.hero-section-ab .heading-title h1{
  font-size: 55px;
  font-weight: 600;
  color: #fff;
}
.hero-section-ab nav{
background: transparent;
}
.hero-section-ab .breadcrumb{
background: transparent;
padding: 0;
}
.hero-section-ab .breadcrumb-item a{
color: #fff;
font-size: 18px;
font-weight: 400;
text-decoration: none;
}
.hero-section-ab .breadcrumb-item a:hover{color: #EEBA1B;}
.hero-section-ab .breadcrumb-item.active  {
color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before{
color: #fff;
content: ">";
font-size: 18px;
}
.ab-section{
padding-bottom: 104px;
background-image: url(../images/wave.png);
background-repeat: no-repeat;
background-position: bottom right;
}
.ab-section .ab-title{
text-align: center;
max-width: 960px;
margin:  auto;
padding: 80px 0 60px;
}
.ab-section .ab-title h6{
color: #ffb91b;
font-size: 15px;
font-weight: 500;
text-transform: uppercase;
}
.ab-section .ab-title h2{
font-size: 38px;
font-weight: 400;
color: #083a6f;
padding: 0 180px;
}
.ab-section .ab-title p{
font-size: 18px;
font-weight: 500;
}
.ab-section .parent-ab{
display: flex;
align-items: center;
}
.ab-section .parent-ab .ab-left-head h2{
font-size: 28px;
font-weight: 400;
color: #083a6f;
padding-bottom: 15px;
}
.ab-section .parent-ab .ab-left-head p{
font-size: 18px;
font-weight: 400;
color: #4d4d4d;
}
.ab-section .parent-ab .ab-img{width: 50%;}
.ab-section .parent-ab .ab-img img{margin-left: -94px;}
.ab-section .parent-ab .ab-left-head{width: 50%;margin-left: -45px;}
.ab-section .parent-mission{
display: flex;
padding-top: 80px;
}
.ab-section .parent-mission .ab-mission h3{
 font-size: 33px;
 font-weight: 400;
 color: #083a6f;
 
}
.ab-section .parent-mission .ab-mission p{
font-size: 18px;
font-weight: 400;
}
.ab-section .parent-mission .ab-mission .btn-cls{
    padding: 0 0 20px;
}
.ab-section .parent-mission .ab-mission .btn-cls a{
text-decoration: none;
color: #e9b61b;
text-transform: capitalize;
}
.ab-section .parent-mission .ab-mission .btn-cls img{
padding-left: 8px;
}
.servive-section-ab{
  background-color: #1f3a70;
  padding: 100px 0 100px;
}
.servive-section-ab .ab-service-title{max-width: 500px;}
.servive-section-ab .ab-service-title h6 {
  color: #ffb91b;
  text-transform: uppercase;
  font-size: 15 px;
}
.servive-section-ab .ab-service-title h2{
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  word-spacing: 0; 
  color: #fff;
} 
.team-section{
  padding-bottom: 60px;
}
.team-section .team-title{
  text-align: center;
  max-width: 960px;
  margin:  auto;
  padding: 80px 0 30px;
  }
 
.team-section .team-title h6{
  color: #ffb91b;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  }
 
.team-section .team-title h2{
  font-size: 38px;
  font-weight: 400;
  color: #083a6f;
  padding: 0 180px;
  }
 
.team-section .team-title p{
  font-size: 17px;
  font-weight: 500;
  color: #5d5d5d;
  }
.team-section .team-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-section .box-parent{
  padding: 14px;
}
.team-section .team-content-title{
  text-align: center;
}
.team-section .team-content-title h4{
  color: #083a6f;
  font-size: 27px;
  font-weight: 600;
  text-transform: capitalize; 
  padding-top: 25px; 
}
.team-section .team-content-title p{
  margin-top: -10px;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: #686868;
}
nav .srch-icon i{
  display: none;
}

.migrate-section::after{
content: "";
width: 100%;
height: calc(100% - 0px);
background: #ecbc1c;
position: absolute;
z-index: -1;
bottom: 0;
}
.model-popup .modal-footer button{
    display: block;
    margin: auto;
    background: #ecbc1c;
    padding: 8px 25px;
    border-radius: 6px;
    color: #fff;
    width: 180px;
    
}
.model-popup .modal-title{
  margin-bottom: 0;
    line-height: 1;
    text-align: center;
    color:#083a6f;
    font-size: 25px;
    font-weight: 600;
    width: 100%;
}
.model-popup .form-control:focus{
  border-color: #bcbcbc;
  box-shadow: none;
}
input::placeholder{
  color: #cbcbcb;
}
.model-popup .form-control{
  width: 90%;
  margin: auto;
  padding: 10px;
}
.model-popup .form-group label {
    display: none;
}
.model-popup .form-group{
  margin-bottom: 0px;
}
/*.model-popup .modal-body{
  padding-bottom: 41px;
}*/
.model-popup .modal-body .col-form-label{
  padding-left: 48px;
    font-size: 14px;
    color: #9b1717;
}
.model-popup textarea.form-control{
  min-height: 150px;
}
.model-popup input::placeholder{
   color: #8f8f8f;
   font-size: 14px;
}
.model-popup textarea::placeholder{
  color: #8f8f8f;
  font-size: 14px;
}

/*-------service-page-----*/

.serv-section {
background-image: url(../images/wave.png);
background-repeat: no-repeat;
background-position: bottom right;
  padding: 60px 0 80px;
}
.serv-section .box-part{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
}
.serv-section .box-part  .box-img img:hover{
   transform: scale(1.2);
}
.serv-section .box-part  .box-img img{
  transition: 0.5s ease;
}
.serv-section .serv-content{
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.serv-section .serv-content h4{
  color: #ffb91b;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
.serv-section .box-part .hover-box a{text-decoration: none;}
.serv-section .box-part .hover-box{
  width: calc(33.33% - 15px);
  border: 1px solid #c1c1c1;
  padding: 30px;
  margin: 15px 0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  min-height: 370px;
}
.serv-section .hover-box .box-content{
  transition: 0.5s ease;
}
.serv-section .hover-box .box-content:hover{
  transform: scale(1.1);
}

.serv-section .serv-content h5{
font-size: 38px;
font-weight: 400;
color: #083a6f;
padding: 0 180px;
}
.serv-section .serv-content p{
  color: var(--text-color);
  font-size: 16px;
  font-weight: 300;
}
.serv-section .box-para h6{
  color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    padding: 15px 0  5px;
}
.serv-section .box-para p{
  font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

/*----services-section----*/
.product-section{
  padding: 60px 0 80px;
  background-image: url(../images/wave.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.product-section .pro-content{
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.product-section .pro-content h4{
  color: #ffb91b;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
.product-section .pro-content h5{
  font-size: 38px;
  font-weight: 400;
  color: #083a6f;
  padding: 0 180px;
  }
  .product-section .pro-content p{
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;
    margin: 20px 0 40px;
  }
  .product-section .product-img-parent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
  .product-section .product-img-parent .image-part{
    width: auto;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
  }
  .product-section .product-img-parent .image-part img{
    width: 100%;
    transition: 0.5s ease-in-out;
/*    height: 100%;*/
    height: 300px;
    object-fit: cover;
  }
  .product-section .product-title{
    /*position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0% , rgba(0,0,0,0.8 )100%);
    background: linear-gradient(to bottom, #0000 0% , #0003 100%);*/
    background: #1f3a70;
    padding: 25px 20px;
    min-height: 345px;
    /* height: 325px;
}
.product-section .product-title p{ /*color: #fff;*/ font-weight: 500;}
  .product-section .product-title h2{
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
  }
  .product-section .product-title p {
    color: #e3e3e3;
}
  .product-section .product-img-parent .image-part img:hover{
    transform: scale(1.2);
   
  }
  .product-section .product-img {
    overflow: hidden;
    height: 300px;
  }
  /*--------------------*/
  .career-section{
    padding-bottom: 30px;
  }
 
  .career-section .career-content h2{
    color: #083a6f;
    font-weight: 600;
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
  }
  
    .career-section .career-content p{
      color: var(--text-color);
      font-size: 16px;
      font-weight: 300;
      margin: 20px 0 px;
    }

    .career-content {
      display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    }
    .career-section .career-main{
      flex-basis: 100%;
      margin-bottom: 30px;
    }
    .career-section .career-main ul{
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 10px;
      list-style: none;
      padding: 0;
    }
    .career-section .career-main ul li{
      color: #083a6f;
      font-weight: 600;
    }

    .career-main hr {
      background-color: #083a6f !important;
      margin: 2rem 0 !important;
    
    opacity: .7 !important;
    }
    .career-section .career-main ul li:before {
      content: "|";
    color: var(--text-color);
    opacity: 0.7;
    padding-right: 10px;
    }
    .career-section .career-main ul li:first-child:before{display: none;}
    .career-section .career-main ul li span{
      color: var(--text-color);
      font-weight: 400;
    }
   .get-btn {
    padding: 10px 0;
    /*text-align: center;*/
   }
   .get-btn a{
    text-decoration: none;
    background: var(--theme-color);
    color: #000;
    display: block;
    width: 160px;
    padding: 14px 0px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all .3s ease;
   }

   .get-btn a:hover{
    background-color: #083a6f;
    color: #fff;
    border: 1px solid #083a6f;


   }

   /*-----form-section------*/
   .p60 {
    padding: 60px 0;
   }
   .carr-frm ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
}
.carr-frm ul li {
  flex: 1;
  flex-basis: 32.5%;
  padding-left: 0 !important;
}
.carr-frm ul li:last-child, .carr-frm ul li:nth-last-child(2) {
  flex-basis: 100%;
}
.file-input {
  display: inline-block;
  text-align: left;
  background: #fff;
  padding: 10px;
  width: 100%;
  position: relative;
  border-radius: 3px;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
}
.file-input > [type='file'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
}
.file-input > .button {
  display: inline-block;
  cursor: pointer;
  background: #eee;
  padding: 8px 16px;
  border-radius: 2px;
  margin-right: 8px;
}

.site-btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: #fff;
  padding: 8px 30px 8px 30px;
  margin: 30px 0px 0px 0px;
  border-radius: 4px;
  background: #083a6f;
}
.site-btn:hover{
  background-color: #fff;
  color: #083a6f;
  border: 1px solid #083a6f;
}
   /*-----immigration----*/
   .immigration-serv-section .immigration-parent{
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap; 
    padding: 101px 0;
   }
   .immigration-serv-section .immigration-parent .immigration-left{
    width: 33%;
        align-self: flex-start;
   }
   .immigration-serv-section .immigration-parent .immigration-left .immi-head{
    font-size: 35px;
    font-weight: 400;
    color: #000;
    margin-top: -15px;
   }
   .immigration-serv-section .immigration-parent .immigration-left ul{
    margin-bottom: 0;
    padding: 30px 0 40px;
    list-style: none;
   }
   
   .immigration-serv-section .immigration-parent .immigration-left a{
   border: 2px solid #7e7e7e57;
    display: block;
    width: 440px;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
   }
   .immigration-serv-section .immigration-parent .immigration-left a:hover{
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
   }
   .immigration-serv-section .immigration-parent .immigration-left a i{
    float: right;
    padding-top: 5px;
   }
   .immigration-serv-section .immigration-parent .immigration-right{
    width: 63%;
   }
   .immigration-serv-section .immi-parent{
    position: relative;
   }
   .immigration-serv-section .immi-parent .immi-title{
    position: absolute;
    left: 39%;
    top: 44%;
    transform: translate(-50% ,-20%);
   
}
.immigration-serv-section .immi-parent .immi-title .icon-immi{
  padding-bottom: 33px;
}
.immigration-serv-section .immi-parent .immi-title .immi-content h2{
    color: #fff;
    padding: 0 0 12px;
    font-size: 27px;
}
.immigration-serv-section .immi-parent .immi-title .immi-content p{
  color: #ffffffc2;
  font-weight: 300;
  font-size: 18px;
  
}
.immigration-serv-section .immi-parent .immi-title .immi-num{
  color: #fff;
  font-weight: 500;
  font-size: 22px;
}
.immigration-serv-section .immigration-right .immi-right-title h2{
  font-size: 25px;
  color: var(--text-color);
  font-weight: 600;
  padding: 50px 0 0px;
}
.immigration-serv-section .immigration-right .immi-right-title p{
  font-size: 16px;
  color: #686868;
  padding-top: 0;
}
.arrow-section{
  position: relative;
}
.arrow-section .arrow-side {
  position: fixed;
  bottom: 25px;
  right: 25px;
  
}
.arrow-section .arrow-side i{
  font-size: 20px;
  color: #fff;
}
.arrow-part{
    border: 1px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #083a6f;
    cursor: pointer;
}
#topmain{display: none;}

.get-btn a{


position: relative;
overflow: hidden;
z-index: 1;
border: 1px solid var(--theme-color);

}

/* button:after, .get-btn a::after{
  content: "";
  width: 0;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: -1;



  
}
button:before , .get-btn a::before{
  content: "";
width: 0;
  background: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: -1;
 
}


button:hover::after, .get-btn a:hover::after{
 width: 50%;

}

button:hover::before, .get-btn a:hover::before{
  
  width: 50%;
} 

button{position: relative !important; z-index: 1; overflow: hidden;}
button:hover , .get-btn a:hover{ color: var(--theme-color);}*/
.owl-dot:before , .owl-dot::after{
  display: none;
}
.owl-theme .owl-dots .owl-dot{outline: none;}
.pad0{padding: 0!important;}
.immigration-serv-section{padding: 60px 0;}
.immigration-serv-section .immi-head{margin-bottom: 25px;}
.immi-image img{    filter: brightness(2);}
.sub_menu{background: #fff;padding: 20px;position: absolute;top: 20px;left: 0;width: 250px;display: none;    z-index: 9999;}
.sub_menu ul {flex-direction: column;align-items: baseline;}
.sub_menu ul li {margin-bottom: 10px;}
.res ul li:hover .sub_menu {display: block;transition: all 0.5s ease-in-out;}

/*==== Contact Form ========*/
form#contactForm{
  padding-top: 15px;
}
.contact .title {
    font-size: 25px;
}
.location-list h3 {
    font-size: 22px;
}
.location-list .clist {
    padding: 0px;
}
.location-list .clist li {
    list-style-type: none;
    padding: 7px 0;
}
.location-list .clist li p {
    margin-bottom: 0;
}
.location-list .clist li a {
    text-decoration: none;
    padding-left: 5px;
    color: #083a6f;
}
.location-list .clist li a:hover {
    color: #ffb91b;
}
.location-list .clist li:first-child span {
  padding-bottom: 10px;
  display: inline-block;
}
.location-list .clist li:last-child {
  padding-top: 0;
}
.ui-widget.ui-widget-content {
  z-index: 99 !important;
}
.location-list .clist li:first-child span strong {
  display: inline-block;
  padding-bottom: 10px;
}
form#contactForm input#submit {
    background: #ffb91b;
    border: 1px solid #ffb91b;
    margin-top: 8px;
}
.model-popup .modal-footer button:hover{
    background: #083a6f;
    color: #fff;
}

.copyright-section hr {
  margin: 0 !important;
  background-color: #bcbcbc45 !important;
  opacity: 1 !important;
}


.hero-title nav{box-shadow: none;}
.career_heading{margin-bottom: 25px;font-size: 38px;font-weight: 400;color: #083a6f;padding: 0 180px;text-align: center;}

/*product lisiting owl nav*/

.product-listing.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 96px);
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    pointer-events: none;
    transition: all .3s;
}
.product-listing .owl-nav i {
    font-size: 50px;
}
.product-listing .owl-nav>* {
    pointer-events: all;
}
.owl-theme .owl-nav [class*='owl-'] {
   background: transparent;
    color: #000;
    text-decoration: none;
    --size: 30px;
    width: 60px;
    height:60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
     transition: all .3s;

}
.owl-theme .owl-nav [class*='owl-']:hover {
    background: #a5a5a5;
    color: #FFF;
}

.parent-ab.aboutArea {
  display: initial !important;
}
.parent-ab.aboutArea .ab-img {
  width: 50%;
    float: left;
    margin-right: 25px;
}
.parent-ab.aboutArea .ab-img img {
  margin-left: 0 !important;
}
.parent-ab.aboutArea .ab-left-head {width: auto;
    margin-left: 0;}

.service-section.service-ico .img-center>img  {height: auto;}
.service-section.service-ico .img-center h6 {height: 6ch;}
