


/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Raleway", sans-serif;
  
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #56b8e6;
  --color-secondary: #1b2f45;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
button{
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  text-align: center;
  text-decoration: none;
  color: white;
 
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

* {
  margin: 0px  ;
  padding: 0px ;
  box-sizing: border-box;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  transition: opacity 0.1s linear;
  
}

body.index-page{
  top: 0px;
}

body.translated {
  opacity: 0.1;
}
a {
  color: white;
  text-decoration: none;
  transition: 0.3s;

}

a:hover {
 
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
h1{
  font-size: 56px;
  font-weight: 500px;
}

p{
  font-size: 16px;
}
img{
  max-width: 100%;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background:black;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color:rgb(255, 97, 0) ;
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background:rgb(47, 49, 146);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(86, 184, 230, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 24px 0;
  
}

@media (max-width: 1200px) {
 
  .header .clickable a {
    display: none;
  }
}


.header.sticked {
  background: rgb(214, 208, 208);
  padding: 12px 0;
}
.header.sticked  a{
  color: white;
}

.header .sticked .navbar a:hover,
 .sticked .navbar .active,
 .sticked.navbar .active:focus,
 .sticked.navbar li:hover>a {
  color: rgb(255, 97, 0);
}



.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

.header .logo img {
  max-height: 40px;
 
}

.header .logo1{
  display: none;
}
.header.sticked .logo1 img{
  max-height: 40px;
 display: block;
  margin-right: 6px;
}
.header.sticked .logo{
  display: none !important;
}
.header.sticked .logo1{
  display: block !important;
}
 header .search{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  z-index: 10;
  cursor: pointer;
}
.search .icon{
  color: white;
  font-size: 30px;
 
  
}
 .searchBox{
  position: absolute;
 right: -100%;
 width: 100%;
 height: 100%;
 display: flex;
  background: white;
  align-items: center;
  padding: 0 30px;
  transition: 0.5s  ease-in-out;
  z-index: 99;

}
.searchBox.active{
  right: 0;
}
 .searchBox input{
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  font-size: 1.25rem;
  background: white;
  color: black;
border:1px solid black;
border-radius: 25px;
padding: 30px;
  
}
.skiptranslate iframe{visibility: hidden; display: none;} 
.searchBtn{
  position: relative;
  top: 5px;
  transition:0.5s  ease-in-out; 
}

 .closeBtn{
  opacity: 0;
  visibility: hidden;
  transition:0.5s  ; 
  scale: 0;
  font-size: 35px;
  margin-left: 20px;
}
.closeBtn.active{
  opacity: 1;
  visibility: visible;
  transition:0.5s  ; 
  scale: 1;
} 
.menuToggle{
  position: relative;
  display: none;
}


.dropdown_lang {
  position: relative;
  display: inline-block;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 10px 12px;
  text-decoration: none;
  display: block;
  text-align: center;
  
}

.dropdown-content a:hover {
  background-color: rgb(47, 49, 146) ;
  color: white;
}

.dropdown_lang:hover .dropdown-content {
  display: block;
}




.dropbtn {
  background-color: white;
  color: black;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:focus {
  outline: none;
}



  /* call action */

  .phone-sticy-banner {
    position: absolute;
    left: 50px;
    bottom: 10px;
    z-index: 2;
    color: black;
   border: 1px solid black;
   
}
.call-bt {
  position: relative;
  display: flex;
  justify-content: center;
}

.call-bt img {
  display: inline-block;
  max-width: 100%;
}

.calls-ban {
  position: absolute;
 
}
.calls-ban img {
  display: inline-block;
  max-width: 100%;
}

.phone-sticy-banner a {
  font-weight: 500;
  font-size: 18px;
 
  color:white;
  
}


.clickable a {
 
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
 
}

@media(max-width:670px){
  .clickable a {
    display: none;
  }
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1000px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-default);
    font-size: 17px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: rgb(255, 97, 0);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
  }
  .navbar .form-inline{
    display: flex;
    padding-left: 20px;
    margin-left: 25px;

  }
  
  .navbar .form-inline button{
    margin-left: 20px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: rgb(255, 97, 0);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}


@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(27, 47, 69, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    display: block;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 35px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}


@media(max-width:650px){
  .mobile-nav-show {
    font-size: 38px;
    margin-left: 25px;
   
}
.search .icon{
  margin-right: 20px;
}
.goog-te-gadget-simple{
  max-width: 170px;
}
.goog-te-gadget .span{
  margin-right: 20px;
}
.google_translate_element{
  max-width: 170px;
}

}


@media (max-width:500px) {
  

.header .logo {
    display:block;
   
}
.goog-te-gadget-simple{
  max-width: 170px;
}
.goog-te-gadget .span{
  margin-right: 20px;
}
.google_translate_element{
  max-width: 170px;
}
  
}
@media (max-width:320px){
  .goog-te-gadget-simple{
    max-width: 170px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/banner.png") ;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
}
.hero .container {
  z-index: 1;
}

.banner_slider_wrap{
  position: absolute;
  left: 40%;
  top: 0;
}
.banner_slider .slick-next {
 
  font-size: 0px;
  border: 0px;
  width:40px;
  height: 70px;
  background-size: 80%;
  position: absolute;
  top: 50%;
left:1100px;
  margin-top: -30px;
  z-index: 999999;
}

.banner_slider .slick-prev {
 
  font-size: 0px;
  border: 0px;
  width:40px;
  height: 70px;
  background-size: 80%;
  position: absolute;
  left: 0;
   top: 50%;
  margin-top: -30px;
  z-index:99999;
}
.banner_slider .slick-dots{
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 100%;
  z-index: 10;
  text-align: center;
}
.banner_slider .slick-dots li{
list-style: none;
width: 15px;
height: 15px;
background: gray;
border-radius: 50%;
display: inline-block;
margin:0 5px ;
}

.banner_slider .slick-dots li.slick-active{
  background: black;
}
.banner_slider .slick-dots li button{
  display: none;
}




  
 





.hero h1 {
  margin: 0;
  font-size: 55px;
  font-weight: 700;
  line-height: 80px;
  color: #fff;
  word-spacing: 20px;
  font-family: var(--font-secondary);
}

.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  font-family: var(--font-default);
  border-left: 2px solid var(--color-primary);
  margin: 40px 0;
}
.hero .vdo_link{
  margin-top: 40px;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: rgb(47, 49, 146);
}

.hero .btn-get-started:hover {
  background: rgb(255, 97, 0);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: white;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: rgb(47, 49, 146);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: rgb(255, 97, 0);
}
@media(min-width:1400px){
  .hero h1 {
   
    font-size: 48px;
    line-height: 75px;
    word-spacing: 5px;
 
  }
  
}
@media(max-width:1400px){
  .hero h1 {
   
    font-size: 48px;
    line-height: 75px;
    word-spacing: 5px;
 
  }
  
}
@media(max-width:1200px){
  .hero{
  
  background-position: center;
  }
  .hero h1 {
   
    font-size: 45px;
    line-height: 60px;
    word-spacing: 5px;
    
   
 
  }
  
  .logo1 img{
    margin-left: 5px;
    width: 140px;
  }

}
@media(max-width:850px){
  
  .hero h1 {
   
    font-size: 40px;
    line-height: 60px;
    word-spacing: 5px;
    margin-left: 20px;
   
 
  }
  .hero .vdo_link{
    margin-left: 20px;
  }


}
@media(max-width:450px){
  .hero{
 
  background-position:center center;
  }
  .hero h1 {
   
    font-size: 40px;
    line-height: 55px;
    word-spacing: 10px;
    margin-left: 20px;
   
 
  }
  .hero .btn-get-started {
    padding: 10px 20px;
  border-radius: 30px;

  }
  .hero .vdo_link{
    margin-left: 20px;
  }
}


@media(max-width:380px){
 
  .hero h1 {
   
    font-size: 38px;
    line-height: 55px;
    word-spacing: 5px;
    margin-left: 20px;
   
   
 
  }
  .hero .btn-get-started {
    padding: 10px 19px;
  border-radius: 28px;

  }
  .hero .vdo_link{
    margin-left: 20px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

section.about{
 
  position: relative;
  margin: 30px 0;
}
section .about .row{
 padding-right: 20px;
}
 .about .land-img1{
  margin-left: 20px;
 }

.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.about .content p {
  margin: 30px 0;
  color: #29486a;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}
.mission-vision{
  background-color: #cccfd3;
}
.head_vision {
  font-size: 56px;
  font-weight: 500;
}
.head_vision h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}
.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: black;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.vision p{
  font-size: 16px;
  font-weight: 400;
}
.head_mission {
  font-size: 56px;
  font-weight: 500;
}
.misssion p{
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}


@media (max-width: 992px) {
  .about .col-lg-6 {
      width: 100%;
  }
  .about .col-lg-6 .land-img1{
     width: 100%;
     margin-left: 0;
    
  }
  .about .col-lg-6 .land-img1 img{
   
    width: 100%;
  }
}
@media (max-width: 775px) {
  .col-lg-6 .land-img1 {
      flex: 0 0 auto;
      width: 50%;
  }
}




@media (max-width: 980px) {
  .container, .container-lg, .container-md, .container-sm {
      max-width: 860px;
  }}

 
@media (max-width: 850px) {
  .container, .container-md, .container-sm {
   
    justify-content: space-around;
  }
  #mission .card{
    margin: 20px;
  }

}
@media (max-width: 560px) {
  .vision h2{
    font-size: 45px;
  font-weight: 400;

  }
  .mission h2{
    font-size: 45px;
    font-weight: 400;
  }
  .vision h3{
    font-size: 20px;
  }
    
  .mission h3{
    font-size: 20px;
    text-align: left;
    
  }
  .mission-vision{
    margin-bottom: 0px;
  }
  
}

/* director */
section.director{
  padding-bottom: 100px;
  background-color: rgb(255, 97, 0);
}
.director .director-img{
    margin-left: 100px;
    margin-top: 50px;
    width: 400px;
    height: 460px;
    object-fit: cover;
}
.director-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


section.director.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.director h4 {
 text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 20px;
}
 section.director p {

  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  text-align: justify;
  word-spacing: 5px;
}
.director span {

  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  
}
.director .col-lg-6 img{
  margin-left: 50px;
 
}



.director-w {
  width: 87%;
}

@media (min-width: 992px) {
  section.director.container, section.director.container-lg, section.director.container-md, section.director.container-sm {
      max-width: 960px;
  }
}
@media (min-width: 992px) {
  section.director.col-lg-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
  }
}
@media (min-width: 992px) {
  section.director.col-lg-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
  }
  .director .director-img{
    margin: 0 auto;
  }
}
@media (max-width:992px){
  .director .director-img{
    display: block;
    margin: 0 auto;
   
}
.director .shaiju{
  margin-top: 0px;
}
}
  @media (max-width: 767px) {
    section.director.director{
        width: 100%;
    }
    .director .director-img  {
      margin: 0 auto;
    }
}

@media (max-width:355px){
  .director h4 {
    
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}
.director .director-img {
  margin: 0 auto;
}


}


/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
  color: rgb(47, 49, 146);
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# opportunity
--------------------------------------------------------------*/
.opportunity h2{
 font-size: 38px;
 font-weight: 500;
  }
  .growth h2{
    font-size: 38px;
    font-weight: 500;
     }

.financial p{
  font-size: 16px;
  font-weight: 400;
 
}
.Business p{
  font-size: 16px;
  font-weight: 400;
  
}
.employment p{
  font-size: 16px;
  font-weight: 400;
}
.discounts p{
  font-size: 16px;
  font-weight: 400;
}

.call-to-action p{
  color: white;
  font-size: 16px;
  font-weight: 400;
}
.disposable p{
  font-size: 16px;
  font-weight: 400;
}
.enthusiasm p{
  font-size: 16px;
  font-weight: 400;
}
.population p{
  font-size: 16px;
  font-weight: 400;
}
.diverse p{
  font-size: 16px;
  font-weight: 400;
}

 .call-to-action h3{
 
  font-size: 25px;
 
  line-height: 25px;
}
 .call-to-action h2{
  color: white;
  font-weight: 500;
}

.call-to-action2 p{
  color: white;
  font-size: 16px;
  font-weight: 400;
}
.call-to-action2 h3{
 
  font-size: 25px;
 
  line-height: 25px;
}
 .call-to-action2 h2{
  color: white;
  font-weight: 500;
}



.expanding p{
  font-size: 16px;
  font-weight: 400;
}
.Diversification p{
  font-size: 16px;
  font-weight: 400;
}
.Collaborating p{
  font-size: 16px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/banner-2.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}
.call-to-action h2{
  font-size: 38px;
  font-weight: 500;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 20px;
 
  line-height: 40px;
 
}
.call-to-action h2{
  color: white;
  font-weight: 500;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: white;
 
  background:rgb(255, 97, 0);
}

.call-to-action .cta-btn:hover {
  background: rgb(47, 49, 146);
  color: white;
 
}

.call-to-action2 {
  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/banner-2.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}
.call-to-action2 h2{
  font-size: 38px;
  font-weight: 500;
}

@media (min-width: 1365px) {
  .call-to-action2 {
    background-attachment: fixed;
  }
}

.call-to-action2 h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 20px;
 
  line-height: 40px;
 
}
.call-to-action2 h2{
  color: white;
  font-weight: 500;
}

.call-to-action2 p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action2 .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: white;
 
  background:rgb(255, 97, 0);
}

.call-to-action2 .cta-btn:hover {
  background: rgb(47, 49, 146);
  color: white;
 
}



/* project */


a.pro-btn{
  margin: 0 auto;
}


 .pro-btn{
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: white;
 text-align: center;
  background:rgb(255, 97, 0);
}

 .pro-btn:hover {
  background: rgb(47, 49, 146);
  color: white;
 
}





/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}
.team-member .member-img {
  border: 1px solid #000000ad;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #31547c;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--color-primary);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}
/*--------------------------------------------------------------
/* project */
/* --------------------------------------------------------------*/ 



section.opportunity{
  background: white;
  position: relative;
 
}



@media (min-width: 992px) {
  section.opportunity .row.col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
  }
}
@media(max-width:992px){
  .team .member-info h4{
   font-size: 22px !important; 
  
  }
}
@media(max-width:750px){
 .img-fluid{
  display: block;
    margin: 0 auto;
 }
 .team .member-info h4{
  font-size: 22px !important;
 }
}


/*--------------------------------------------------------------
# gallery Section
--------------------------------------------------------------*/

section .photo-gallery h3 {
  padding: 50px 0;
  font-weight: 400;
  text-align: center;
  font-size: 40px;
}
section.photo-gallery.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
  margin-right: calc(-.5* var(--bs-gutter-x));
  margin-left: calc(-.5* var(--bs-gutter-x));
}

section.gallery{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 50px 0;
  position: relative;
  margin: 50px 0
}
section.gallery.content{
  width: 300px;
  
  /* margin: 15px; */
  text-align: center;
  border-radius: 20px;
  /* float: left; */
  padding:20px;
  position: relative;
}
section.gallery.content img{
  width: 100%;
  text-align: center; 
  margin: 0 auto;
  display: block;
  height: 300px;
  object-fit: cover;
}
section.gallery.content h3{
  margin-top: 10px;
}
section.gallery.gallery-head .content p{
  text-align: center;
  color: black;
}

.video-g1 {
  margin: 15px 0 0;
}
.video-g1 h3 {
    font-size: 21px !important;
    font-family: Inter;
    font-weight: 500 !important;
    padding: 15px 0 !important;
}

@media(max-width:1200px){
  section.gallery.content{
      width:30%;
  }

}
@media(max-width:850px){
  section.gallery.content{
      width: 50%;
      height: auto;
  }
 
}
@media(max-width:768px){
  .image-zoom-wrapper img{

    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }

}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}



.contact .info-item i {
  font-size: 20px;
  background:rgb(47, 49, 146)  ;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: rgb(47, 49, 146) ;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .contact__map {
  height: 450px;
  
}
.contact.contact__map iframe {
  width: 75%;
}




@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}

.footer .footer-content {
  background-color: rgb(47, 49, 146);
  background-size: contain;
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-content .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-content .footer-info .logo p {
  
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
  font-family: var(--font-secondary);
  margin-top: 3px;
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: white;
  margin-top: 35px;
  
}

.footer .footer-content .social-links a {
  font-size: 14px;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: rgba(27, 47, 69, 0.5);
  margin-right: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: rgb(47, 49, 146);
  border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
  background-color: #38618e;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  position: relative;
  padding-bottom: 12px;
 
}
.footer-links h4{
  text-align: left;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
  text-align: left;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: rgb(255, 97, 0);
  font-size: 16px;
  line-height: 0;
  text-align: left;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-align: left;
  font-size: 14px;
}

.footer .footer-content .footer-links ul a:hover {
  color:black ;
  font-weight: 600;
}

.footer .footer-content .footer-contact p {
  font-size: 14px;
  line-height: 23px;
  color: white;
}

.footer .footer-legal {
  background: rgb(255, 97, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 5px;
}


.footer  .copyright {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 5px;
  font-size: 15px;
  color: white;
  background: rgb(255, 97, 0);
  
}
.footer  .copyright  a{
  font-weight: bold;
}

.footer .footer-legal .credits {
  
  padding-left: 3px;
  font-size: 14px;
  
  color: white;
}
.footer .footer-legal .credits a{
  color:rgb(47, 49, 146) ;
}
.footer .footer-legal .credits:hover a{
  color: white;
}
@media (max-width: 992px) {
  .footer.col-md-12{
    flex: 0 0 auto;
    width: 50%;
}
.footer .footer-content h4 {
  text-align: left;
}
.social-links {
  text-align: left;
  
  }
 
}

@media (max-width: 768px) {
  .footer.col-md-6 {
      flex: 0 0 auto;
      width: 30%;
  }
  .footer.col-md-12{
    flex: 0 0 auto;
    max-width: 50%;
   
}
.footer-contact  h4,p {
  text-align: left;
}
.social-links {
text-align: left;

}
.footer .footer-content h4 {
  text-align: left;
}
}

@media (min-width: 1200px) {
  .footer-contact  h4,.footer-contact p {
      text-align: left;
  }
  .social-links{
    text-align: left;
  }
  .footer .footer-content h4 {
    text-align: left;
  }
 
}
@media (max-width:993px){
  
  .footer-contact  h4,.footer-contact p {
    text-align: left;
}
.footer .footer-content h4 {
  text-align: left;
}
.social-links{
  text-align: left;
}
}

@media (max-width:770px){
  .social-links{
    text-align: left;
  }
  .social-links a{
    text-align: left;
  
  }
}



  @media (max-width:470px){
    .copyright p{
      max-width: 300px;
    }
    .credits p{
      max-width: 300px;
    }
    .footer-contact  h4,.footer-contact p {
      text-align: left;
  }
  .footer .footer-content h4 {
    text-align: left;
  }
  .social-links{
    text-align: left;
  }
   }

/* project */

.Project  p{
  text-align: justify;
  max-width: 600px;
}


@media(max-width:992px){
  .houseing-img1{
    margin: 0 auto;
    display: block;
  }
  .Project  h3{
    text-align: center !important;
   
    padding-top: 50px !important;
    margin-bottom: 20px;
   
 
  }
  .Project  p{
    text-align: justify !important;
    
  }
  
 .gadget{
  display: block;
  margin: o auto;
 }
 .gadget_img{
  display: flex;
  flex-direction: column-reverse;
 }

}

@media(max-width:992px){
  .Project  p{
    text-align: justify !important;
    margin: 0 auto;
  }
}

@media(max-width:430px){
  .logo1 img{
  margin-left: 5px;
  width: 100px;
}
}




.Project2  p{
  text-align: justify;
  max-width: 600px;
}


@media(max-width:992px){
  .houseing-img1{
    margin: 0 auto;
    display: block;
  }
  .Project2  h3{
    text-align: center !important;
   
    padding-top: 50px !important;
    margin-bottom: 20px;
   
 
  }
  .Project2  p{
    text-align: justify !important;
    
  }
  
 .gadget{
  display: block;
  margin: o auto;
 }
 .gadget_img{
  display: flex;
  flex-direction: column-reverse;
 }

}

@media(max-width:992px){
  .Project2  p{
    text-align: justify !important;
    margin: 0 auto;
  }
}

@media(max-width:430px){
  .logo1 img{
  margin-left: 5px;
  width: 100px;
}
}





.Project3 p{
  text-align: justify;
  max-width: 600px;
}


@media(max-width:992px){
  .houseing-img1{
    margin: 0 auto;
    display: block;
  }
  .Project3  h3{
    text-align: center !important;
   
    padding-top: 50px !important;
    margin-bottom: 20px;
   
 
  }
  .Project3  p{
    text-align: justify !important;
    
  }
  
 .gadget{
  display: block;
  margin: o auto;
 }
 .gadget_img{
  display: flex;
  flex-direction: column-reverse;
 }

}

@media(max-width:992px){
  .Project3  p{
    text-align: justify !important;
    margin: 0 auto;
  }
}

@media(max-width:430px){
  .logo1 img{
  margin-left: 5px;
  width: 100px;
}
}

@media(max-width:350px){
  .breadcrumbs h2 {
    font-size: 45px;
   
   
}
}




/* video */



