
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: white;
  color: black;

}

a {
  text-decoration: none;
  color: #67b0d1;
}                                                                                                                                                               

a:hover {
  color: #8ec4dd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

#main {
  margin-top: 90px;
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  background: #e64e08;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #063cec;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 24px 0;
  background: rgba(103, 176, 209, 0.8);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgb(243, 112, 5);
  padding: 12px;
}

#header .logo h1 {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}

@media (max-width: 768px) {
  #header.header-scrolled {
    padding: 15px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: static;
}

.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: 8px 16px;
  margin-left: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  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 {
  background: rgba(255, 255, 255, 0.2);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 10px;
  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.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
  color: #2f4d5a;
}

.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: #67b0d1;
}

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

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin: 0;
  padding: 10px;
  display: block;
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li strong {
  padding: 10px 0 10px 20px;
  display: block;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
  padding: 8px 10px;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #67b0d1;
}

.navbar .megamenu: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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43, 111, 142, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2f4d5a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #67b0d1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #67b0d1;
}

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

.navbar-mobile .megamenu ul li a,
.navbar-mobile .megamenu ul li:hover>a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
}

.navbar-mobile .megamenu ul li a:hover,
.navbar-mobile .megamenu ul li .active,
.navbar-mobile .megamenu ul li .active:hover {
  color: #67b0d1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
  margin-top: -15px;
  /* background: linear-gradient(rgb(58 55 181 / 50%), rgb(55 162 181 / 20%)), url(../img/hero-containerirstpagebanner) top center; */
}
video{
  margin-top: -62px;
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -500;
}
.bannercover{
  margin-top: -62px;
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -400;
  /* background: linear-gradient(rgb(58 55 181 / 50%), rgb(55 162 181 / 20%)) */
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 150px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  /* margin-top: 55px; */
  
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 150px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  /* margin-top: 55px; */
  
}
#hero .hero-container img{
  width: 100%;
  margin-top: -200px;
   height: 100%; 
}

#hero h1 {
  margin: 0 0 100px 0;
    font-size: 70px;
    font-weight: 700;
    line-height: 6px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 6px 0 2px #000000;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    text-overflow: clip;
}

#hero h2 {

  width: 500px;
  color: #fff;
  margin-bottom: 50px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
  margin-top: 10px;
  line-height: 29px;
  word-spacing: 9px;
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#hero{
  margin-bottom: 0;
  width:100%;
  height: 110vh;
  background-size:97%;
  position: relative;
  margin-bottom: -90px;
  object-fit: cover;
  background-position: center;
  background-attachment: fixed;
}
 @media all and ( min-width:0px) and (max-width: 480px) {
  #hero {
    margin-top:80px;
    width:100%;
    height:250px;
    background-size:100%;
    position: relative;
     margin-bottom:70px; 
     object-fit: cover; 
     background-position: center;
     background-attachment: fixed; 
     background-repeat: initial;
     /* background: linear-gradient(rgb(58 55 181 / 50%), rgb(55 162 181 / 20%)), url(../img/hero-containerirstpagebanner) top center; */
   }

}  
@media all and ( min-width:481px) and (max-width: 767px) {
  #hero {
    margin-top:20px;
    width:100%;
    height:300px;
    background-size:100%;
    position: relative;
     margin-bottom:100px; 
     object-fit: cover; 
     background-position: center;
     background-attachment: fixed;
     background-repeat: initial;
     /* background: linear-gradient(rgb(58 55 181 / 50%), rgb(55 162 181 / 20%)), url(../img/hero-containerirstpagebanner) top center; */
   }

}   
/* @media all and(min-width:220px) and (max-width:480px ) {
  #hero{
    width: 100%;
    height: 300px;
    /* background: linear-gradient(rgba(55, 142, 181, 0.5), rgba(55, 142, 181, 0.2)), url(../img/mainbanner.jpg) top center; */
    /* background-size: cover;
    position:relative;
  } */
  /* #hero h1 {
    display: flex;
    margin: 15px;
    font-size: 38px;
    line-height: 35px;
  }

  #hero h2 {
    width: 300px;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-container{
    position: absolute;
    bottom: 0;
    top: 108px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
} */ */

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f8fbfd;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
  display: inline-block;
}

.section-title h2 {
  font-size: 17px;
    font-weight: 400;
    padding: 3px;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    display: inline;
    background-color: black;
}

/* .section-title h2::after {
  content: "";
  width: 90px;
  height: 1px;
  display: inline-block;
  background: #fd9042;
  margin: -1px 14px;
} */

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: rgb(255, 81, 1);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 80px;
  margin-bottom: -100px;
}
/* .abtborder{
  width: 485px;
  position: absolute;
  height: 500px;
  border: 10px solid #009df9;
} */
.abtimg{
  position: relative;
    margin-left: 30px;
    margin-top: 30px;
    height: 500px;
    width: 485px;
}
/*@media(max-width:768px){*/
/*  .abtborder {*/
/*    width: 75%;*/
/*    position: absolute;*/
/*    height: 500px;*/
/*    border: 10px solid #0779ad;*/
/*}*/
.abtimg {
  position: relative;
  margin-left: 28px;
  margin-top: 22px;
  height: 500px;
  width: 388px;
margin-bottom: 10%;
}
b, strong {
  font-weight: bolder;
  color: #000000;
}
.abtsec{
  margin-top: -35px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ef6603;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ef6603;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ef6603;
}

.about .content .btn-learn-more:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #d4d6df;
  padding: 15px;
  transition: 0.3s;
  color: #2a2c39;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #ef6603;
}

.features .nav-link.active {
  background: #ef6603;
  color: #fff;
  border-color: #ef6603;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ef6603;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.servmain{
  margin-bottom: 20px;
}
.services .icon-box::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #4a72ba;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #67b0d1;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
  box-shadow: 0px 0px 4px black;
  transition-property: all ;
  transition-duration: 1s;
}
.counts .count-box:hover {
  box-shadow: 0px 0px 17px black;

}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: orange;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color:black;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color:orange;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(103, 176, 209, 0.8), rgba(103, 176, 209, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.galary{
  width: 100%; 
  height: 267px;
}
@media(max-width:100%){
    .galary{
          width: 100%; 
  height: 267px;
    }
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #ecf5f9;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #2f4d5a;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #67b0d1;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0px 0px 5px black;
  transition-property: all;
  transition-duration: 1s;
}
.portfolio .portfolio-wrap:hover{
  box-shadow: 8px 8px 15px #2e2f30;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(103, 176, 209, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(103, 176, 209, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* opacity: 0; */
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 0;
  bottom: 0;
  scale: 1.5;

}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.swiper-slide{
  box-shadow: 0px 0px 0px black;
  transition-property: all;
  transition-duration: 1s;
  margin: 10px auto;
}
.swiper-slide:hover{
  box-shadow: 0px 0px 10px black;
  transition-property: all;
  transition-duration: 1s
}

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #67b0d1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #67b0d1;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(47, 77, 90, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
#testimonials{
    display:none;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 10px auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #4b73ba;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #67b0d1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #67b0d1;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.client-logo{
  padding: 20px 20px;
}

.clnt-img{
  max-width: 100%;
    height: 120px;
}
.pic{
  max-width: 100%;
    height: auto;
    padding-top: 15px;
}
.team .member .pic {
  overflow: hidden;
}
.tm{
  flex: 0 0 auto;
    width: 20%;
    box-shadow: 2px 2px 5px black;
    margin: 10px 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}
@media(max-width:768px){
  .tm{
    flex: 0 0 auto;
    width: 100%;
    box-shadow: 2px 2px 5px #fff;
    margin: 10px 0px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}
.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #2f4d5a;
  box-shadow: 0px 2px 15px rgba(248, 244, 244, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
  max-height: 300px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  color: #2d74ba;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: black;
  font-weight: 600;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #52869d;
}

.team .member .social a:hover {
  color: #67b0d1;
}

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

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}
.cntmain{
  margin-bottom: 50px;

 
}
.cnt{
  box-shadow: 0px 0px 1px black;

  transition-property:all;
  transition-duration: 1s;
  margin-bottom: 22px;
   }
.cnt:hover{
    box-shadow: 0px 0px 16px black;
   }
   iframe{
    transition-property:all;
    transition-duration: 1s;
   }
   iframe:hover{
    box-shadow: 0px 0px 16px black;

   }
.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: center;
 
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #fc6501;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f0f7fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #000000;
  font-weight: 900;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background-color: #67b0d1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #67b0d1;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #8ec4dd;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(243, 112, 5);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  color: black;
  font-weight: 900;
}

#footer .footer-top .footer-info {
  margin-top: -90px;
  margin-bottom: 15px;
  background: white;
  color: #2f4d5a;
  border-top: 4px solid #f8620b;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 900;
  color: orangered;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #5a402f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #67b0d1;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 19px;
  font-weight: 900;
  color: black;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b5d9e9;
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #a2cfe3;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f13b03;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #1332e2;
}

#footer .copyright {
  border-top: 1px solid #f86007;
  color: white;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center; 
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}



/*--------------------------------
social media left side
---------------------------------*/



#leftsocial{
  display: flex;
    width: 25px;
    flex-direction: column;
    position: fixed;
    z-index: 1000;
    top: 25%;
}
@media(max-width:768px){
    #leftsocial{
        display: flex;
    width: 100%;
    flex-direction: row;
    position: fixed;
    top:90%;
    z-index: 1000;
    }
}
#leftsocial a{
  display: contents;
  margin: -3;
  color: #000000;
}
.st-btn {
  background-color: whitesmoke;
  display: flex;
  width: 53px;
  height: 57px;
  align-items: center;
  overflow: hidden;
  border: 1px solid black;
  transition-property: all;
  transition-duration: 1s;

}
.st-btn:hover {
  background-color: whitesmoke;
  display: flex;
  width: 145px;
  height: 57px;
  align-items: center;
}
.st-btn > img {
  margin: 18px 10px;
  margin-right: 15px;
  width: 25px;
  height: 25px;
  align-items: center;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}



/* services new  */

#services{
  background-color: #fe3f00;
  display: flex;
  flex-wrap: wrap
}


@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&amp;family=Montserrat:wght@700&amp;display=swap");

:root {
  /* Colors */
  --brand-color: hsl(46, 100%, 50%);
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
  /* Fonts */
  --font-title: "Montserrat", sans-serif;
  --font-text: "Lato", sans-serif;
}

/* RESET */



.card__title {
  font-size: 2.25rem;
  font-family: var(--font-title);
  color: var(--white);
  line-height: 1.1;
}

.flow > * + * {
  margin-top: var(--flow-space, 1em);
}

/* CARD COMPONENT */

.card {
  display: grid;
  place-items: center;
  width: 275px;
  max-width: 21.875rem;
  height: 340px;
  margin: 15px;
  overflow: hidden;
  border-radius: 0.625rem;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.card > * {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.card__background {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}

.card__content {
  --flow-space: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-end;
  height: 55%;
  padding: 12% 1.25rem 1.875rem;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.3) 10%,
    hsl(0, 0%, 0%) 100%
  );
}

.card__content--container {
  --flow-space: -7.75rem;
}

.card__title {
  position: relative;
  width: fit-content;
  width: -moz-fit-content; /* Prefijo necesario para Firefox  */
}

/* .card__title::after {
  content: "";
  position: absolute;
  height: 0.3125rem;
  width: calc(100% + 1.25rem);
  bottom: calc((1.25rem - 0.5rem) * -1);
  left: -1.25rem;
  background-color: var(--brand-color);
} */

.card__button {
  padding: 0.75em 1.6em;
  width: fit-content;
  width: -moz-fit-content; /* Prefijo necesario para Firefox  */
  font-variant: small-caps;
  font-weight: bold;
  border-radius: 0.45em;
  border: none;
  background-color: var(--brand-color);
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: var(--black);
}

.card__button:focus {
  outline: 2px solid black;
  outline-offset: -5px;
}

@media (any-hover: hover) and (any-pointer: fine) {
  .card__content {
    transform: translateY(40%);
    transition: transform 500ms ease-out;
    transition-delay: 500ms;
  }

  .card__title::after {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 1000ms ease-in, transform 500ms ease-out;
    transition-delay: 500ms;
    transform-origin: right;
  }

  .card__background {
    transition: transform 500ms ease-in;
  }

 

  .card:hover .card__background,
  .card:focus-within .card__background {
    transform: scale(1.1);
  }

  .card:hover .card__content--container > :not(.card__title),
  .card:hover .card__button,
  .card:focus-within .card__content--container > :not(.card__title),
  .card:focus-within .card__button {
    opacity: 1;
    transition: opacity 500ms ease-in;
    transition-delay: 1000ms;
  }

  .card:hover .card__title::after,
  .card:focus-within .card__title::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
    transition: opacity 500ms ease-in, transform 500ms ease-in;
    transition-delay: 500ms;
  }
}
.cardhead{
  color: rgb(54 32 173);
    font-family: anton;
    text-align: center;
    display: flex;
    font-size: 20px;

    font-weight: bold;
    padding: 2%;
    transition: 1s;


}
.textbg{
  background-color: yellow;
position: relative;
top: -120px;
width: 95%;
display: flex;
justify-content: center;
border-radius: 11px;
}
.textbg:hover{
  transition: 1s;
  background-color: #ffffffeb;
  position: relative;
  top: -120px;
  width: 95%;
  display: flex;
  justify-content: center;
  border-radius: 11px;
  box-shadow: 0px 0px 15px white;
}
.cardhead:hover{
  color: red;
    font-family: anton;
    text-align: center;
    display: flex;
    /* font-size: 23px; */
    font-weight: bold;
    transition: 1s;
 
    /* text-shadow: 5px 5px 9px black; */
}

/* read more btn  */

/* 7 */

#more1 {display: none;}
#more2 {display: none;}
.col-md-5{
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-7 {
  background: linear-gradient(0deg, rgba(255,151,0,1) 0%, rgba(251,75,2,1) 100%);
    line-height: 42px;
    padding: 5px;
    border: none;
  }
  .btn-7 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .btn-7:before,
  .btn-7:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: rgba(251,75,2,1);
    box-shadow:
     -7px -7px 20px 0px rgba(255,255,255,.9),
     -4px -4px 5px 0px rgba(255,255,255,.9),
     7px 7px 20px 0px rgba(0,0,0,.2),
     4px 4px 5px 0px rgba(0,0,0,.3);
    transition: all 0.3s ease;
  }
  .btn-7:before{
     height: 0%;
     width: 2px;
  }
  .btn-7:after {
    width: 0%;
    height: 2px;
  }
  .btn-7:hover{
    color: rgba(251,75,2,1);
    background: transparent;
  }
  .btn-7:hover:before {
    height: 100%;
  }
  .btn-7:hover:after {
    width: 100%;
  }
  .btn-7 span:before,
  .btn-7 span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: rgba(251,75,2,1);
    box-shadow:
     -7px -7px 20px 0px rgba(255,255,255,.9),
     -4px -4px 5px 0px rgba(255,255,255,.9),
     7px 7px 20px 0px rgba(0,0,0,.2),
     4px 4px 5px 0px rgba(0,0,0,.3);
    transition: all 0.3s ease;
  }
  .btn-7 span:before {
    width: 2px;
    height: 0%;
  }
  .btn-7 span:after {
    height: 2px;
    width: 0%;
  }
  .btn-7 span:hover:before {
    height: 100%;
  }
  .btn-7 span:hover:after {
    width: 100%;
  }
  
  #aboutcontainer
{
  display: flex;
  width: 90%;
  height: 600px;
  /* border: 2px solid red; */
}

#aboutcontainer #aboutimg
{
  width: 30%;
  height: 200px;
  /* border: black; */
}
#aboutcontainer #aboutimg img{

  width: 100%;
}
#aboutdesc{
  
  width: 70%;
  /* border: 2px solid black; */
}

.description{
width: 100%;
height: 190px;
/* border: 2px solid blue; */
margin-top:10px;
/* animation: sliding 10s,
cursor .10s step-end infinite alternate; */
animation-duration: 10s;
animation-name: slidein;

}

@media all and (min-width:481px) and (max-width:768px) {

  #aboutcontainer
  {
    display: block; /* Default display */
    width: 90%; /* Full width */
    margin-bottom: 20px; /* Margin for spacing */
  /* Padding for spacing */
    /* background-color:red; */
    /* border: 2px solid red; */
    height:auto;
  }

  #aboutcontainer #aboutimg
  {
    justify-content: center;
    align-items: center;
    margin-left: 120px;
    margin-bottom:90px ;
    width: 60%;
    height: 250px;
    margin-top: -50px;
    /* border: black; */
    /* background-color:red; */
  }
  #aboutdesc
  {
    width: 90%;
    height: 700px;
    margin-left:30px;
    align-items: center;
  }
  .description{
    width: 100%;
    height:auto;
    margin-top:10px;
    
    }
    .para{
      font-size: 16px; /* Medium font size */
    color: black; /* Default font color */
    }
    #ptag{
      display: block;
      width: 80%;
      text-align: center;
    }

}
@media all and (min-width:769px) and (max-width:912px) {

  #aboutcontainer
  {
    display: block; /* Default display */
    width: 90%; /* Full width */
    margin-bottom: 60px; /* Margin for spacing */
  /* Padding for spacing */
    /* background-color:red; */
    /* border: 2px solid red; */
    height:auto;
  }

  #aboutcontainer #aboutimg
  {
    justify-content: center;
    align-items: center;
    margin-left: 120px;
    margin-bottom:90px ;
    width: 60%;
    height: 250px;
    margin-top: -50px;
    /* border: black; */
    /* background-color:red; */
  }
  #aboutdesc
  {
    width: 90%;
    height: 700px;
    margin-left:30px;
    align-items: center;
  }
  .description{
    width: 100%;
    height:auto;
    margin-top:10px;
    
    }
    .para{
      font-size: 16px; /* Medium font size */
    color: black; /* Default font color */
    }
    #ptag{
      display: block;
      width: 80%;
      text-align: center;
    }

}

@media all and (min-width:0px) and (max-width:480px) {

  #ab{
    margin-top: -200px;
  }
  #aboutcontainer
  {
    display: block; /* Default display */
    width: 100%; /* Full width */
    margin-bottom: 20px; /* Margin for spacing */
  /* Padding for spacing */
   /* Background color */
    /* border: 2px solid red; */
    height:auto;
  }

  #aboutcontainer #aboutimg
  {
    margin-left: 80px;
    margin-bottom:90px ;
    width: 60%;
    height: 150px;
    /* border: black; */
  }
  #aboutdesc
  {
    width: 100%;
    /* height: 700px; */
    margin-left:20px;
  }
  .description{
    width: 100%;
    height:auto;
    margin-top:10px;
    word-wrap: break-word;
    color: lightgreen;
    display: inline-block;
    overflow: hidden;
    overflow: auto;
    position: relative;
    
    }
    .para{
      font-size: 10px; /* Medium font size */
    color: black; /* Default font color */
    word-wrap: break-word;
    display: inline-block;
    overflow: hidden;
    overflow: auto;
    }

}





/* @keyframes slidein
{
    from{
      margin-left: 100%;
    }
  to {
    margin-left: 0%;
  }

} 
 

@keyframes sliding{
  from{width: 0;} 

  to {width: 50;}
} */


/* new client css */

.logo-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 20px 0;
}

.logo-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  animation: scroll 20s linear infinite;
}

.logo {
  margin: 0 20px;
  width: 100px;
  height: auto;
  transition: transform 0.2s; 
}

.logo:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}


/* partner new code */

#Parnerdiv{
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: auto auto auto auto;
  width: 80%;
  /* border: 2px solid red; */
  margin: auto;
  margin-top: 20px;
  height: 800px;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
}
#Parnerdiv div {

width:50%;
height: 50%; 
margin: auto;
box-shadow: 5px 5px 5px 5px rgba(36, 36, 36, 0.5); 
/* margin-top: -20px; */
padding: -50px;

}
#Parnerdiv div img{
  width: 100%;
  height:100% ;
}

#Parnerdiv div:hover{
  box-shadow: 10px 10px 10px 10px rgba(36, 36, 36, 0.5);
}

/* galary new code */
#galarycontainer{

width: 90%;
display: grid;
grid-template-columns: repeat(4,1fr); 
grid-template-rows: repeat(2,300px);
/* border: 1px solid red; */
gap: 15px;
margin: auto;
border-radius: 5px;

}

/* #galarycontainer div{
/* border: 2px solid black; */

#galarycontainer div img
{
  width: 100%;
  height: 100%;
}

#galarycontainer div img:hover{
  box-shadow: 5px 5px 5px 5px rgba(36, 36, 36, 0.5);   
}



/* @media all and (min-width:481px) and (max-width:800px) {
  #galarycontainer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr); 
    grid-template-rows: repeat(2,300px);
     border: 1px solid red; 
     gap: 15px;
    margin: auto;
    
    }
    
  
  
 }  */


 @media all and (min-width:480px) and (max-width:769px) {

  #galarycontainer{

    width: 95%;
     grid-template-columns: repeat(3,1fr); 
    grid-template-rows: repeat(3,250px);
     
     gap: 15px;
    margin: auto;
    background-color: #111; 
    
     }  
}   


@media all and (min-width:0px) and (max-width:479px) {
  #galarycontainer {
    width: 100%;
     /* display: grid;  */
    grid-template-columns: repeat(2,1fr); 
    grid-template-rows: repeat(4,200px);
    /* border: 1px solid red; */
    gap: 10px;
    margin: auto;
/* background-color: #063cec;     */
    }
    
  

#hero{
  width: 100%;
}
  
  #hero .hero-container{
    width: 100%;
  }

  #hero {
    width: 70%;
    height: 40vh;
    /* background:url(../img/2ndpg/banner/political.jpg) top center; */
    background-size: cover;
    position: relative;
    margin-bottom: -40px;
    margin: auto;
    margin-top: 70px;
  }
  #hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 150px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* margin-top: 55px; */
    
  }


}


.titl{

  width: 500px;
  margin: auto;
  margin-top: 50px;
  background-color: white;
  
}


 
@media all and (max-width:769px) {

  #officeclient{
    display: grid; 
    grid-template-columns: repeat(2,400px); 
    grid-template-rows: repeat(7,250px);
    width: 100%; 
    /* border: 1px solid ;  */
    /* height:700px; */
    /* margin-left: 5%; */
    gap: 5px;
    margin: auto;

}   
#hero{
  width: 80%;
  height: auto;
}
#hero .hero-container{
  width: 100%;
}

#officeculture{
  display: grid; 
    grid-template-columns: repeat(2,400px); 
    grid-template-rows: repeat(7,250px);
    width: 100%; 
    /* border: 1px solid ;  */
    /* height:700px; */
    /* margin-left: 5%; */
    gap: 5px;
    margin: auto;
}
.deskhead{
  display: block;
   margin-top:200px;
}

.deskcontainer{
  display: block;
  width: 60%;
  height: 600px;
  
  flex-wrap: wrap;
  margin: auto;
  margin-left: 10px;
}
.deskcnt1{
  display: block;
  flex-wrap: wrap;
  word-wrap:break-word;
}

.titl{
  width:400px; 
  height: 50px; 
  margin-top:200px; 
  margin-bottom: 70px; 
  margin-left: 20px;
  text-align: center; 
  background-color: white; 
  color:orangered;font: bold;
}
#officesuccess{

  display: grid; 
  grid-template-columns: repeat(2,400px); 
  grid-template-rows: repeat(8,250px);
  width: 100%; 
  /* border: 1px solid ;  */
  /* height:700px; */
  /* margin-left: 5%; */
  gap: 5px;
  margin: auto;

}
#Event{
  display: grid; 
  grid-template-columns: repeat(3,400px); 
  grid-template-rows: repeat(7,250px);
  width: 100%; 
  /* border: 1px solid ;  */
  /* height:700px; */
  /* margin-left: 5%; */
  gap: 5px;
  margin: auto;


}
#hero {
  width: 100%;
  height: 40vh;
  /* background:url(../img/2ndpg/banner/political.jpg) top center; */
  background-size: cover;
  position: relative;
  margin-bottom: -40px;
  margin: auto;
  margin-top: 70px;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 150px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  /* margin-top: 55px; */
  
}


}

@media all and (max-width:479px) {
  #officeclient{
    display: grid; 
    grid-template-columns: repeat(2,200px); 
    grid-template-rows: repeat(10,200px);
    width: 100%; 
    /* border: 1px solid ;  */
    /* height:700px; */
    /* margin-left: 5%; */
    gap: 5px;
    margin: auto;

}   
#hero{
  margin-top:20px ;
  width: 100%;
  height: 700px;
  margin: auto;
}
#hero .hero-container{
  width: 100%;
  margin: auto;
}
#hero .hero-container img{
  width: 100%;
}
#officeculture{
  display: grid; 
  grid-template-columns: repeat(2,200px); 
  grid-template-rows: repeat(10,200px);
  width: 100%; 
  /* border: 1px solid ;  */
  /* height:700px; */
  /* margin-left: 5%; */
  gap: 5px;
  margin: auto;
}

.deskhead{
  display: block;
   margin-top: -500px; 
   margin-left: 20px;
}

.deskcontainer{
  display: block;
  width: 100%;
  height: 800px;
  position: relative;
 
  flex-wrap: wrap;
  margin: auto;
  margin-left: 10px;
}
.deskcnt1{
  display: block;
  flex-wrap: wrap;
  word-wrap:break-word;
}
.titl{
  width:300px; 
  height: 50px; 
  margin-top:50px; 
  margin-bottom: 70px; 
  margin-left: 20px;
  text-align: center; 
  
 
}

#officesuccess{

  display: grid; 
  grid-template-columns: repeat(2,200px); 
  grid-template-rows: repeat(7,200px);
 max-width:100%; 
  /* border: 1px solid ;  */
  /* height:700px; */
  /* margin-left: 5%; */
  gap: 5px;
  margin: auto;

}

#Event{
  display: grid; 
  grid-template-columns: repeat(2,200px); 
  grid-template-rows: repeat(10,200px);
  width: 100%; 
  /* border: 1px solid ;  */
  /* height:700px; */
  /* margin-left: 5%; */
  gap: 5px;
  margin: auto;


}



}



/* Style new css */



/* nav bar new css code */

@media all and (max-width:769px) {
 
  #hero {
    width: 100%;
    height: 40vh;
    /* background: url(../img/services1.jpg) top center; */
    background-size: cover;
    position: relative;
    margin-bottom: -40px;
    margin: auto;
    margin-top: 70px;
  }
  #hero .hero-container {
    position: relative;
    bottom: 0;
    top: 150px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* margin-top: 55px; */
    
  }

  #Parnerdiv{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto auto auto ;
    width: 100%;
    /* border: 2px solid red; */
    margin: auto;
    margin-top: 20px;
    height: 800px;
    justify-content: center;
    align-items: center;
    /* gap: 10px; */
  }
  #Parnerdiv div {
  
  width:50%;
  height: 50%; 
  margin: auto;
  box-shadow: 5px 5px 5px 5px rgba(36, 36, 36, 0.5); 
  /* margin-top: -20px; */
  padding: -50px;
  
  }
  #Parnerdiv div img{
    width: 100%;
    height:100% ;
  }
  
  #Parnerdiv div:hover{
    box-shadow: 10px 10px 10px 10px rgba(36, 36, 36, 0.5);
  }
  }
  
  @media all and (max-width:479px) {
    #hero {
      width: 100%;
      height: 40vh;
      /* background: url(../img/services1.jpg) top center; */
      background-size: cover;
      position: relative;
      margin-bottom:40px ;  
      margin-top: 30px;
    }

    
    #hero .hero-container {
      width: auto;
      height: auto;
      position: absolute;
      bottom: 0;
      top: 140px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      /* margin-top: 55px; */
      
    }
    /* #hero .hero-container img{
      margin-top: 40px;
    } */
    #ab{
      margin-top: -170px;
    }
    #main-container{
      margin-top: -50px;
    }

    #Parnerdiv{
      display: grid;
      grid-template-columns: auto auto ;
      grid-template-rows: auto auto auto auto auto auto;
      width: 100%;
      /* border: 2px solid red; */
      margin: auto;
      margin-top: 20px;
      height: 800px;
      justify-content: center;
      align-items: center;
      /* gap: 10px; */
    }
    #Parnerdiv div {
    
    width:50%;
    height: 50%; 
    margin: auto;
    box-shadow: 5px 5px 5px 5px rgba(36, 36, 36, 0.5); 
    /* margin-top: -20px; */
    padding: -50px;
    
    }
    #Parnerdiv div img{
      width: 100%;
      height:100% ;
    }
    
    #Parnerdiv div:hover{
      box-shadow: 10px 10px 10px 10px rgba(36, 36, 36, 0.5);
    }
  }
 


  .navbar {
    padding: 0;
    position: static;
  }
  
  .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: 8px 16px;
    margin-left: 10px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    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 {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 10px;
    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.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #2f4d5a;
  }
  
  .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: #67b0d1;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .megamenu {
    position: static;
  }
  
  .navbar .megamenu ul {
    margin: 0;
    padding: 10px;
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  
  .navbar .megamenu ul li {
    flex: 1;
  }
  
  .navbar .megamenu ul li strong {
    padding: 10px 0 10px 20px;
    display: block;
  }
  
  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
    padding: 8px 10px;
  }
  
  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: #67b0d1;
  }
  
  .navbar .megamenu: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 all and (max-width:769px) {
 
    #hero {
      width: 100%;
      height: 40vh;
      /* background: url(../img/services1.jpg) top center; */
      background-size: cover;
      position: relative;
      margin-bottom: -40px;
      margin: auto;
      margin-top: 70px;
    }
    #hero .hero-container {
      position: absolute;
      bottom: 0;
      top: 150px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      /* margin-top: 55px; */
      
    }
    }
    
    @media all and (max-width:479px) {
      #hero {
        width: 100%;
        height: 35vh;
        /* background: url(../img/services1.jpg) top center; */
        background-size: cover;
        position: relative;
        /* margin-bottom:10px ; */
        margin-bottom: -40px;
        margin: auto;
        margin-top: 50px;
      }
      
      #hero .hero-container {
        width: auto;
        height: auto;
        position: absolute;
        bottom: 0;
        top: 150px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        /* margin-top: 55px; */
        
      }
      
    }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(43, 111, 142, 0.9);
    transition: 0.3s;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #2f4d5a;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #67b0d1;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #67b0d1;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
  
  .navbar-mobile .megamenu ul li a,
  .navbar-mobile .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }
  
  .navbar-mobile .megamenu ul li a:hover,
  .navbar-mobile .megamenu ul li .active,
  .navbar-mobile .megamenu ul li .active:hover {
    color: #67b0d1;
  }
  @media all and (max-width:769px) {
 
    #hero {
      width: 100%;
      height: 40vh;
      /* background: url(../img/services1.jpg) top center; */
      background-size: cover;
      position: relative;
      margin-bottom: -40px;
      margin: auto;
      margin-top: 70px;
    }
    #hero .hero-container {
      position: absolute;
      bottom: 0;
      top: 150px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      /* margin-top: 55px; */
      
    }
    #hero .hero-container img{
      width: 100%;
    }
    #hero .hero-container img{
      width: 100%;
      margin-top: -200px;
    }
    .cntaint{
      display: block;
    }
    .cntaint .rightcnt
    {
      width: 100%;
      text-align: left;
      margin-left: 50px;
      
    }
    .cntaint .leftimg{
      width: 90%;
      margin-left: 40px;
    }
    #hd{
      margin-left: 150px;
    
    }
    
    }
    
    @media all and (max-width:479px) {
      #hero {
        width: 100%;
        height: 40vh;
        /* background: url(../img/services1.jpg) top center; */
        background-size: cover;
        position: relative;
        /* margin-bottom:10px ; */
        margin-bottom: -40px;
        margin: auto;
        margin-top: 65px;
      }
      
      #hero .hero-container {
        width: auto;
        height: auto;
        position: absolute;
        bottom: 0;
        top: 150px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        /* margin-top: 55px; */
        
      }
     
      #hero .hero-container img{
        width: 100%;
        margin-top: -250px;
      }
      .cntaint{
        display: block;
        margin-left: 10px;
      }
      .cntaint .rightcnt
      {
        width: 100%;
        text-align: left;
        
      }
      .cntaint .rightcnt .abtcont{
        width: 100%;
      }
      .cntaint .leftimg{
        width: 100%;
      }
      #hd{
        margin-left:50px;
      }
     
      
    }