@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary-color: #003366;
  --success-color: #00695c;
  --purple-color: #5e3370;
  --danger-color: #922b21;
  --warning-color: #b9770e;
  --brown-color: #874c1f;
  --main-color: #0080FF;
;
  --main-color-2: black;
  --linear-color: linear-gradient(270deg, #eabf76 0%, #000000 98.62%);
  --linear-color-2: linear-gradient(0deg, #eabf76 26.97%, #000000 78.09%);

  --main-color-3: #fff;
  --main-color-4: transparent;

  --main-three-font-family: "Poppins", sans-serif;
  --text-color: #656565;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-three-font-family);
  color: var(--main-color-2);
  font-weight: 300;
  margin: 0px;
}
p,
span,
strong,
li,
a {
  font-family: var(--main-three-font-family);
}

body {
  font-size: 16px;
}
.bg-main{
  background: var(--main-color) !important;
}

.bg-main-two{
  background: var(--main-color-2) !important;
}
.container-fluid{
  padding: 0;
}

.text-main {
  color: var(--main-color);
}
.card {
  margin: 10px 0px;
}

/* buttons */
.btn-outline:before {
  content: "";
  height: 1000px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: all 0.2s linear 0s;
  width: 0;
  z-index: -1;
}
.btn-outline:hover:before {
  opacity: 1;
  width: 100%;
}
.btn-outline {
  background: transparent;

  padding: 10px 20px;
  border-radius: 4px;

  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 0.6s ease 0s;
  overflow: hidden;
}

/* Navbar Start */
.navbar {
  /* background: var(--main-color-4); */
  z-index: 3;
  width: 100%;
}
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--main-color-3);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.navbar ul .nav-item {
  padding: 0.5rem 1rem;
}
.navbar-nav.bordered{
  border: 1px solid var(--main-color-3);
  border-top-width: 0px;
  border-bottom-width: 0px;
  margin: 0px 20px 0px 0px;
}
.navbar .nav-item.bordered {
  border: 1px solid var(--main-color-3);
  border-top-width: 0px;
  border-bottom-width: 0px;
  margin: 0px 10px;
}

.navbar ul .nav-item a.nav-link {
  color: var(--main-color-3);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0pc;
  position: relative;
  padding: 0px !important;
  transition: all 0.5s ease;
  text-transform: uppercase;
}

.navbar ul .nav-item a.active {
  font-weight: 700;
  color: var(--main-color) !important;
}
.navbar ul .nav-item a.nav-link:focus {
  color: var(--main-color-3);
}
.navbar ul .nav-item a.nav-link:hover {
  color: var(--main-color);

  /* font-weight: 500; */
  transition: all 0.5s ease;
}
.btn-main {
  background: var(--main-color);
  color: var(--main-color-3);
  padding: 10px 20px;
  text-transform: capitalize;
  transition: all 0.5s ease;
  border: 1px solid var(--main-color-3);
  border-radius: 30px;
  text-decoration: none;
}
.btn-main:hover {
  background: var(--main-color-2);
  border: 1px solid var(--main-color-3);
  color: var(--main-color-3);
}
.btn-black {
  border-color: var(--main-color-2);
  background: var(--main-color-2);
}
.btn-black:hover {
  border-color: var(--main-color-2);
  background: var(--main-color-3);
  color: var(--main-color-2);
}

.btn-outline-black {
  background: var(--main-color-2);
  color: var(--main-color-3);
}
.btn-outline-black:hover {
  background: var(--main-color-4);
  border-color: var(--main-color-2);
}

/* Dropdown */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.555em;
  vertical-align: middle;
  content: "\f078"; /* Font Awesome down arrow */
  font-family: 'FontAwesome';
  border: 0px !important;
  font-weight: 800;
  transition: transform 0.5s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg); /* Flip the arrow upward */
}
.dropdown-menu[data-bs-popper]{
  left: -500% !important;
  top: 42px !important;
  margin-top: 0px;

}

.mega-menu {
  width: 900px !important;
  left: -500%;
  right: 0 !important;
  top: 30px !important;
  max-height: 500px !important;
  color: black;
  display: block !important;
  visibility: hidden !important;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear !important;
  border: 0px;
  border-radius: 0px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding: 0px !important;
}



.mega-menu.gallery {
  left: -185% !important;
  width: 350px !important;
}
.mega-menu.resources {
  left: -134% !important;
  width: 300px !important;
}

.mega-menu ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.mega-menu ul .dropdown-header {
  font-size: 25px;
  font-weight: 700;
  text-decoration: underline;
  font-family: var(--main-font-family);
  color: var(--main-color-2);
  text-transform: uppercase;
}
.mega-menu ul li {
  padding: 0.3rem 1rem;
}
.mega-menu li a {
  color: black !important;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}
.mega-menu li:hover a {
  background: var(--main-color);
  color: var(--main-color-3) !important;
  transition: all 0.5s ease;
  /* text-decoration: underline; */
}
.mega-menu li {
    position: relative;
}
.mega-menu li:hover::before{
  background: var(--main-color) !important;
}
.mega-menu li::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  /* left: 10px; */
  bottom: 0;
  background: var(--main-color);
}

/* Base styles for the dropdown menu */


/* Swiper */

.mySwiper {
  width: 100%;
  height: 600px;
}

.mySwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  height: 600px;
  opacity: 1 !important;
  border-radius: 10px;
  font-size: 70px;
 
  /* background: linear-gradient(90deg, #000000 19%, rgba(0, 0, 0, 0) 81.73%) url(data-image); */

}

.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
    border-radius: 10px;

}

.mySwiper .swiper-slide .slide-text {
  display: grid;
  background: var(--main-color-4);
  height: 100%;
  place-content: center;
  text-align: start;
  width: 50%;
  font-weight: 700;
  margin: 0 20px 20px 20px;
}
.banner-division-text {
  display: grid;
  background: var(--main-color-4);
  height: 300px;
  place-content: center;
  text-align: center;
  backdrop-filter: brightness(0.5);
}
.banner-division-text h2 {
  font-size: 50px;
  font-weight: 500;
  color: var(--main-color-3);
}

.mySwiper .swiper-slide .slide-text h1 {
  font-size: 70px;
  font-weight: 700;
  /* font-family: var(--main-two-font-family); */
  color: var(--main-color-3);
}
.mySwiper .swiper-slide .slide-text p {
  font-weight: 300;
  font-size: 45px;

  color: var(--main-color-3);
}

button.slick-disabled {
  opacity: 0.5;
  cursor: no-drop !important ;
}

/* .animate__slower{
  animation-delay: 1ms;
} */
.mySwiper .swiper-pagination {
  margin-bottom: 0px;
  text-align: start;
  padding: 35px;
}

.mySwiper .swiper-pagination-bullet {
  width: 8px;
  border-radius: 50%;
  background: var(--main-color-3) !important;
  
  border: 1px solid var(--main-color-3) !important;
  color: var(--main-color-3);
  position: relative;
  opacity: 1;
  margin: 0 5px !important;
  text-align: start;

  transition: all 0.5s ease;
}

.mySwiper .swiper-pagination-bullet .buttet-text {
  position: absolute;
  top: -35px;
  left: 0;
  white-space: nowrap;
  width: 100%;
  margin: auto;
}
.mySwiper .swiper-pagination-bullet-active {
  background: var(--main-color) !important;
  width:52px;
  border-radius: 4px;
  border-color: var(--main-color) !important;
}

/* Header section End */
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Who we are */

.who-we-are-text h3{
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0px;
  font-family: var(--main-three-font-family);
}
.who-we-are-text p{
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  color: var(--text-color);
  margin-top: 20px;
  font-family: var(--main-three-font-family);
}


.who-we-are-image-below{
  position: relative;
  width: 50%;
  height: 400px;
  background-image: url("/assets/images/who-we-are-below.jpg");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.who-we-are-image-above{
  position: absolute;
  width: 50%;
  height: 300px;
  top: 13%;
  left: 30%;
  background-image: url("/assets/images/who-we-are-above.jpg");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.who-we-are-image-above img{
  width: 100%;
  height: 100%;
  object-fit: cover;
    border-radius: 10px;
}
.who-we-are-image-below img{
  width: 100%;
  height: 100%;
  object-fit: cover;
   border-radius: 10px;
}

/* competencies start */
.competencies h2{
 font-size:50px;
  font-weight: 700;
  line-height: 85px;
  letter-spacing: 0px;
}
.competencies .card-bg{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 150px;
  width: 100%;
  border-radius: 10px;
  margin: 10px 0px;
  overflow: hidden;
}
.competencies .card-bg h3{
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0px;
  color: var(--main-color-3);
  text-align: start;
  display: grid;
  align-items: end;
  min-height: 100%;
  padding: 10px;
}
.competencies .bg-hydromet{
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) , url("/assets/images/competencies/hydromet.png");
}
.competencies .bg-security{
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) , url("/assets/images/competencies/security.png");
}
.competencies .bg-building{
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) , url("/assets/images/competencies/building.png");
}
.competencies .bg-civil{
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) , url("/assets/images/competencies/civil.png");
}
.competencies .bg-data-centers{
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) , url("/assets/images/competencies/data-centers.png");
}
.competencies .bg-renewable{
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) , url("/assets/images/competencies/renewable.png");
}
.competencies .bg-dams{
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) , url("/assets/images/competencies/dams.png");
}
.competencies .bg-camera{
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) , url("/assets/images/competencies/camera.png");
}


/* competencies end */

/* Services Section Start */
.services h2{
 font-size:50px;
  font-weight: 700;
  line-height: 85px;
  letter-spacing: 0px;
  text-align: center;
}
.services .card{
     position: relative;
    z-index: 0;
    border: 0px;
}
.services .card::after{
  content:"";
  position: absolute;
  background: var(--main-color);
  width: 100%;
  height: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  bottom: 0;
  z-index: 1;
  transition: all 0.5s ease;
}
.services .card:hover::after{
  height: 5px;
  transition: all 0.5s ease;
  /* box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 4px 0px #0000004D; */

  box-shadow: 0px 8px 12px 6px #00000026;

}

.services .card .card-body h3{
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0px;
}
.btn-services{
  font-size: 13px;
  color: var(--main-color);
  font-weight: 300;
  line-height: 23px;
  text-decoration: none;
}

/* Services Section End */
/* Choose Us STart */
.choose-us h2{
  font-size:50px;
  font-weight: 700;
  line-height: 67px;
  letter-spacing: 0px;
}
.card.bg-main{
  position: relative;
  border-color: var(--main-color-4);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  color: var(--main-color-3);
  z-index: 1;
  border: 0px !important;
}
.choose-us .card.bg-main h3{
  font-size: 58px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0px;
  color: var(--main-color-3);
  margin: 20px 0px;
}
.choose-us .card.bg-main h5{
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0px;
   color: var(--main-color-3);
     /* margin-bottom: 0.5rem; */
}
.choose-us .card.bg-main p{
  /* font-size: 1px; */
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0px;
  margin-top: 10px;
}

.choose-us .card.bg-main::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  /* left: 0; */
  background: var(--main-color-2);
  z-index: -1;
  height: 0px;
  width: 0px;
  border-radius: .25rem;
}
.choose-us .col-md-4:nth-child(2n) .card.bg-main::before{
   /* top: 0; */
  right: 0;
}
.choose-us .col-md-4:not(:nth-child(2n)) .card.bg-main::before{
   /* top: 0; */
  left: 0;
}

.choose-us .card.bg-main:hover::before{
  height: 100%;
  width: 100%;
  transition: all 0.5s ease;
  border-color: var(--main-color-2);
}


/* Partner Section Start */

.slick-slider2 .slick-prev,
.slick-slider2 .slick-next {
  display: none !important;
}
.slick-slider2 {
  max-height: 70px;
}
.partner-box {
  min-width: 200px !important;
  height: 60px !important;
  align-items: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.partner-box img {
  width: 50%;
  aspect-ratio: 3/2;
  object-fit: contain;
}
.bg-partner h3{
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0px;
}
.grid-center{
  display: grid;
  place-content: center;
  place-items: center;
}


/* Bnner section */
.bg-banner{
  background: linear-gradient(89.9deg, #0080FF 23.05%, #0080FF 48%, rgba(45, 145, 227, 0) 99.91%), url('/assets/images/banner-png.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 200px;
}
.banner-section h3{
  color: var(--main-color-3);
  font-size: 70px;
  font-weight: 300;
}
.banner-text p{
  color: var(--text-color);
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

/* Delivery Section */
.delivery-about-us h3,.our-team h3{
  font-size: 50px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2%;
  letter-spacing: 0px;
  text-align: center;
}
.delivery-about-us p{
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0px;
  color: var(--text-color);
  text-align: center;
}

/* Team Section */
.team-box{
  width: 360px;
  height: 380px;
  /* padding: 0px 20px; */
}
.team-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 10px; */
}
.team-box-content h3{
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 5px;
  /* letter-spacing: 0px; */
}
.team-box-content{
  padding: 30px 0px;
  text-align: center;
}
.bg-team h4{
  font-size: 50px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2%;
  letter-spacing: 0px;
  text-align: center;
}


/* contact us */
.contact-us-btn{
  border-radius: 0px;
}

/* our-approach */
.our-approach .card{
  min-height: 280px;
}
.our-approach .card p{
  margin-top: 20px !important;
}
.our-approach .card .card-body{
  display: grid;
    place-content: space-around;
}

/* services */
.services .image{
  position: absolute;
  width: 100%;
  min-height: 300px;
  z-index: -1;
  transition: all 0.5s ease;
}
.services.projects .image{
  height: 200px;
}
.services .image::before{
  content:"";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(359.9deg, #0080FF 1.55%, #0080FF 26.39%, rgba(45, 145, 227, 0) 99.91%) !important;

  
}
.services .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}
.services .card:hover .image img{
  transform: scale(1.3);
}
.services .card.bg-main{
  background: var(--main-color-4) !important;
  box-shadow: 0px 0px 0px 0px !important;
  overflow: hidden;
  border-radius: 10px;
}

.services .card.bg-main:hover::before,.services .card::after{
  background: var(--main-color-4) !important;
  height: 0% !important;
}
.services .card .card-body{
  position: relative;
  bottom: 0;
  z-index: 0;
  display: grid;
  place-content: end;
  /* min-height: 300px; */
  /* background: linear-gradient(89.9deg, #0080FF 1.55%, #0080FF 26.39%, rgba(45, 145, 227, 0) 99.91%) !important; */
  box-shadow: 0px 0px 0px 0px !important;
}
.mh-300{
  min-height: 300px;
}
.mh-200{
  min-height: 200px;
}
.image-detail img{
  width: 100%;
  height: 300px;
}
.image-detail img{
  width: 100%;
  height: 100%;
}

.contact-us-section p{
  color: var(--text-color);
}

/* Dropzone */
.dropzone {
  width: 98%;
  margin: 1%;
  border: 2px dashed #3498db !important;
  border-radius: 5px;
  transition: 0.2s;
}

.dropzone.dz-drag-hover {
  border: 2px solid #3498db !important;
}

.dz-message.needsclick img {
  width: 50px;
  display: block;
  margin: auto;
  opacity: 0.6;
  margin-bottom: 15px;
}

span.plus {
  display: none;
}

.dropzone.dz-started .dz-message {
  display: inline-block !important;
  width: 120px;
  float: right;
  border: 1px solid rgba(238, 238, 238, 0.36);
  border-radius: 30px;
  height: 120px;
  margin: 16px;
  transition: 0.2s;
}
.dropzone.dz-started .dz-message span.text {
  display: none;
}
.dropzone.dz-started .dz-message span.plus {
  display: block;
  font-size: 70px;
  color: #aaa;
  line-height: 110px;
}

/* Job Detail */
.open-positions-box ul li {
  color: var(--text-color);
}

.slick-dots li button {
  display: none;
}

/* Footer start */
.bg-black {
  background: var(--main-color-2);
}
.footer-bottom{
    border-bottom: 1px solid rgba(255,255,255, 0.2);
}
.footer-bottom .log img{
  width: 100%;
  height: 100%;
  /* margin: 0px auto; */
}
.footer-section {
  margin-top: 100px;
  border-bottom: 1px solid rgba(255,255,255, 0.2);
}
.footer-section h3 {
  font-size: 68px;
  font-weight: 500;
}
.footer-bottom h5 {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--main-three-font-family);
}
.footer-section p,.footer-privacy p{
  font-weight: 300;
}
.footer-bottom p {
  font-size: 14px;
  font-family: var(--main-three-font-family);
  font-weight: 300;
  color: var(--main-color-3);
}

.footer-btn {
  color: var(--main-color-2);
  text-decoration: none;
  position: relative;
  font-size: 12px;
}
.footer-btn:hover,
.footer-btn:focus {
  color: var(--main-color-2);
  text-decoration: underline;
}

.footer-btn:before {
  content: "";
  height: 12px;
  width: 12px;
  left: -25%;
  opacity: 1;
  position: absolute;
  top: 0;
  background: #000;
  border-radius: 50%;
}

.footer-list ul {
  display: flex;
  padding: 0px;
  justify-content: space-between;
}
.footer-list ul li {
  list-style: none;
}
.footer-list ul li:last-child {
  margin-left: 20px;
}
.footer-list ul li a {
  color: var(--main-color-2);
  font-size: 12px;
  font-weight: 400;
  font-family: var(--main-three-font-family);
  text-decoration: none;
  transition: all 0.5s ease;
}
.footer-link-box ul li a:hover {
  color: var(--main-color) !important;
  transition: all 0.5s ease;
  /* text-decoration: underline; */
}
.footer-icon-contact a{
  text-decoration: none;

}
.footer-icon-contact a:hover {
  color: var(--main-color) !important;
  transition: all 0.5s ease;
  /* text-decoration: underline; */
}


.fs-12 {
  font-size: 12px !important;
}
.footer-icon-list .footer-icon:nth-of-type(1) {
  margin: 0px;
}
.footer-icon-list .footer-icon {
  display: inline-block;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: var(--main-color-2);
  color: var(--main-color-3);
  text-align: start;
  line-height: 30px;
}

.footer-bottom ul li a{
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 35px;
}
.footer-icon-list .footer-icon:hover {
  color: var(--main-color) !important;
  transition: all 0.5s ease;
}
.footer-bottom strong{
  font-weight: 300;
}
.footer-link-box{
  max-width: fit-content;
  margin: auto;
}
.border-right-footer{
  border-right: 1px solid rgba(255,255,255, 0.2);
  /* padding-right: 20px; */
}

.footer-list p {
  font-size: 14px;
}

/* Contact */

label{
  font-weight: 600;
  font-family: var(--main-three-font-family);
}

/* Mobile menu start */
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  outline: none;
}
.line {
  fill: none;
  stroke: var(--main-color-3);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.mobile-menu {
  display: none;
}

@media (min-width: 767px) {
  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown .dropdown-menu:hover {
    display: block !important;
    visibility: visible !important;
    opacity: 1;
    /* transition: visibility 0s, opacity 0.3s linear !important; */
    animation: slideInDown 0.5s ease;
  }
  .navbar {
    background-color: var(--main-color-4);
  }
}

@media (max-width: 480px) {
 
  .navbar {
    padding: 0px;
    z-index: 3;
    background: var(--main-color-2);
    /* min-height: 100vh; */
  }
  .navbar-nav {
    min-height: 100vh;
  }
  .navbar-nav.bordered{
    border: 0px;
    /* margin: 0px !important; */
  }
  ul.navbar-nav {
    justify-content: start !important;
  }
  .navbar-toggler:focus {
    box-shadow: 0px 0px 0px 0px;
  }
  .navbar-toggler svg{
    height: 40px;
    width: 40px;
  }
  .navbar-collapse .navbar-brand {
    display: none;
  }
  .navbar-collapse.collapse.show ul {
    --bs-scroll-height: 400px !important;
  }
  .btn-sm-padding {
    padding: 5px 8px;
  }
  .navbar-brand {
    height: 40px;
    width: 80px;
  }
  .navbar-brand img {
    height: 100%;
    width: 100%;
  }
  .banner-text span {
    font-size: 16px;
  }
  .banner-text h2 {
    font-size: 20px;
  }
  .btn-outline {
    padding: 5px 10px;
    font-size: 14px;
  }
  .footer-section h3 {
    font-size: 30px;
  }
  .footer-section p {
    font-size: 14px;
  }
  .footer-list {
    display: block !important;
    margin-top: 10px;
  }
  .col-sm-6 {
    width: 50%;
  }
  /* .swiper-wrapper{
    flex-wrap: wrap !important;
  } */
  .mySwiper .swiper-slide .slide-text p,
  .team-text h3,
  .team-swiper .slick-prev i,
  .team-swiper .slick-next i {
    font-size: 20px !important;
  }
  .mySwiper .swiper-slide,
  .mySwiper {
    height: 600px !important;
  }
  .mySwiper .swiper-pagination {
    margin-bottom: 20px;
  }
  .mySwiper .swiper-pagination-bullet {
    width: 40px;
    margin: 0px 5px !important;
  }
  .mySwiper .swiper-pagination-bullet .buttet-text {
    display: none;
  }
  
  
  .footer-bottom .text-end {
    text-align: start !important;
  }
  .footer-btn {
    margin-left: 20px;
  }
  .team-swiper .slick-prev {
    left: 85% !important;
  }
  
  .team-box .team-box-text {
    font-size: 30px;
  }
 
}
