* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "regular";
}

@font-face {
  font-family: "light";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
}

@font-face {
  font-family: "bold";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "extrabold";
  src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "black";
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
}

@font-face {
  font-family: "regular";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.font20 {
  font-size: 20px;
}

.font22 {
  font-size: 22px;
}

.font24 {
  font-size: 24px;
}

a {
  text-decoration: none;
  color: black;
}

.p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.title-color {
  color: #1fd97b;
  font-family: bold;
}

a:hover {
  color: #1fd97b;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1fd97b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #1fd97b;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0px;
}

.fixed-top {
  padding: 1px 0px;
  background-color: transparent;
}

.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;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 16px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar li:hover>a {
  color: #1fd97b;
}

.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.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 16px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #000;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #1fd97b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #1fd97b;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar-design {
    background-color: transparent !important;
    justify-content: end !important;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 26px;
  right: 14px;
  font-size: 30px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 60px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;

}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 16px;
  font-family: bold;
  color: #fff;
}

.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: 16px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1fd97b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

[dir="rtl"] .navbar a {
  padding: 10px
}

.header-logo {
  width: 100%;
  height: 50px;
}

.navbar-design {
  background-color: #000;
  border-radius: 25px;
  display: flex;
  justify-content: space-evenly;
}

.language-icon {
  cursor: pointer;
  width: 25px;
}

.section-home {
  background-image: url(../img/banner-img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding-bottom: 50px;
}

.home-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.home-div1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin-top: 25%;
}

.home-heading {
  font-size: 56px;
}

.home-text {
  font-size: 26px;
  margin-top: 22px;
}

.home-div2 {
  background-color: #242834;
  padding: 50px;
  width: 100%;
}

.home-div2-heading {
  display: flex;
  align-items: center;
}

.span-bar {
  background-color: #1fd97b;
  padding: 20px 5px;
  border-radius: 25px;
  margin: 0px 15px;
}

.section-Heading {
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 20px;
  font-family: extrabold;
  font-weight: bold;
  padding: 10px 0px;
  text-align: center;
}

.section-title {
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: extrabold;
  font-weight: bold;
  padding: 10px 0px;
  text-align: center;
}

.section-aboutUs {
  background-image: url(../img/Who-We-Are-BG.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.aboutUs-mainDiv {
  /* height: 59vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 50px 0px;
}

.aboutus-text {
  font-size: 26px;
  text-align: justify;
}

.section-missionVision {
  /* background-image: url(../img/missionVision-img.jpg); */
  background-color: #000;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.missionVision-text-div {
  margin: 100px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.missionVision-title {
  font-family: extrabold;
  font-weight: bold;
}

.missionVision-text {
  background-color: #242834;
  padding: 100px 10px;
}

.section-Pioneering {
  background-image: url(../img/Tree.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.Pioneering-text {
  padding: 50px 10px;
}

.pioneertext {
  font-size: 28px;
}

.Pioneering-text-div {
  margin: 150px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-turnkeysolution {
  background-image: url(../img/turnkey-Solutions-BG.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.turnkeysolution-main-div {
  background-color: #242834;
  margin: 100px 0px 50px;
}

.turnkeysolution-grid {
  padding: 60px 20px;
  border: 1px solid #1fd97b
}

.turnkeysolution-grid-heading {
  font-size: 26px;
}

.turnkeysolution-grid-text {
  margin: 10px 40px;
  text-align: justify;
}

.section-ourExpertise {
  background-image: url(../img/expertise-img.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 80px 0px;
}

.expertise-card {
  border: 1px solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 30px;
}

.footer {
  background-color: #242834;
  color: #fff;
  padding: 40px 0px;
}

.footer-button {
  padding: 10px 20px;
  border: none;
  background-color: #1fd97b;
  color: #fff;
  border-radius: 25px;
}

.footer nav a,
div a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.footer nav a:hover,
div a:hover {
  color: #1fd97b;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.contact-us-section {
  color: #fff;
  background-color: #000;
  padding: 98.5px 0px
}

[dir="rtl"] .contact-us-section {
  padding: 110.5px 0px
}

.contact-us-form-div {
  background-color: #fff;
  color: black;
  border-radius: 25px;
  padding: 50px;
}

.input-container {
  margin-bottom: 20px;
}

label {
  margin-bottom: 5px;
  font-size: 14px;
  color: #000;
}

input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #333;
  padding: 5px 0;
  font-size: 16px;
  outline: none;
  resize: none;
}

[dir="rtl"] .phoneDir {
  text-align: end;
}

textarea {
  padding: 5px 0;
}

input:focus,
textarea:focus {
  border-bottom: px solid #1fd97b;
}

.submit-btn {
  background-color: #242834;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #1fd97b;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in-effect {
  animation: fadeIn 2s ease-in-out forwards;
}

@media (max-width: 575.98px) {

  .home-heading {
    font-size: 37px;
  }

  .home-text,
  .aboutus-text,
  .pioneertext,
  .turnkeysolution-grid-heading {
    font-size: 18px;
  }

  .home-div1 {
    margin-top: 85%;
  }

  .home-div2 {
    padding: 30px 10px;
  }

  .home-div2-heading,
  .missionVision-text-grid {
    margin: 5px 0px;
  }

  .section-aboutUs,
  .section-missionVision {
    height: auto;
  }

  .missionVision-text-div,
  .turnkeysolution-main-div {
    margin: 50px 0px
  }

  .missionVision-text {
    padding: 50px 0px;
  }

  .turnkeysolution-grid-text {
    margin: 10px 0px;
  }

  .contact-us-form-div {
    padding: 50px 10px;
  }
}

@media (max-width: 768px) {
  .flex-center {
    margin: 5px 0px
  }
}