/*Primary Colors*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=PT+Serif:wght@400;700&family=Poppins:wght@400;600&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

body {
  background: #1c2431;
  color: #7a9ec1;
  line-height: 1.58;
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

main.main {
  position: relative;
  padding: 2.2rem 0 0rem;
  width: 100vw;
  overflow: hidden;
}

a {
  color: #65e2d9;
  transition: all 400ms;
}

a:hover,
a:active,
a:focus {
  color: #65e2d9;
  outline: none;
  text-decoration: none !important;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  
}

section {
  width: 100vw;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: scale(0);
  background: rgba(0, 0, 0, 0.233);
  transition: all 300ms ease;
}

/* Mobile Nav Styling */
.mobile-nav-toggle {
  z-index: 999;
  border: 0;
  background: none;
  font-size: 17.6px;
  display: none;
  outline: none;
  cursor: pointer;
}

.mobile-nav-toggle i {
  background: #1c2431;
  color: #fff;
  transition: all 0.4s;
}

@media screen and (max-width: 620px) {
  .mobile-nav-toggle {
    display: block;
  }
}

.btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0.7rem 3.5rem;
  border-radius: 50px;
  transition: all 0.5s;
  margin: 1.1rem;
  color: #212529;
  font-size: 20px;
  background: linear-gradient(to right, #65e2d9, #339ecc);
  box-shadow: 0 2px 25px rgb(3 6 12 / 42%);
  z-index: 2;
}

.btn-get-started:hover {
  background: white;
  color: #339ecc;
  transform: translate3d(0, -0.6rem, 0);
  box-shadow: 0 1px 30px rgba(3, 6, 12, 0.986);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  transform: scale(0);
  background: #65e2d9;
  color: white;
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 0.5rem 0.6rem 0;
  line-height: 1.2;
  font-size: 2rem;
  border-radius: 50%;
  right: 1.2rem;
  bottom: 1.5rem;
  z-index: 11;
  transition: all 350ms;
}

.back-to-top :hover {
  transform: scale(1.1);
}

.back-to-top.show-toTop-btn {
  display: block;
  transform: scale(1);
  z-index: 100;
}

.back-to-top i {
  padding-top: 0.9rem;
  color: white;
}

/*------------------------------------
 Header 
*/
.header {
  padding: -0.2rem 0;
  height: 5.6rem;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  left: 0;
  top: 0;
  right: 0;
  transition: all 450ms;
  z-index: 990;
}

.header.header-scrolled-view {
  background-color: #dfdcdc;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding: 15px 0;
  height: 4rem;
  box-shadow: 0 1px 12px rgba(1, 12, 22, 0.14);
}

.header #logo img{
  vertical-align: middle;
    border-style: none;
}

.header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
  width: 33%;
  height: 65%;
  position: relative;
  display: -webkit-flex;
  margin: -60px 0px 0px 640px;
  padding: 10px 0px 0px 10px;
  transition: all 0.3s ease;
  background-color: #fff;
  border-radius: 50px 40px;
}

/*------------------------------------
# Navigation Menu
*/
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row nowrap;
}

.nav-menu,
.nav-menu * {
  padding: 0;
  list-style: none;
}

.nav-menu{
  display: flex;
  align-items: center;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 1px 30px rgba(5, 10, 20, 0.25);
  background: white;
  position: absolute;
  display: none;
  transform: scale(0);
  top: 100%;
  left: -10%;
  z-index: 99;
  transition: all 400ms ease;
}

.nav-menu ul ul {
  margin: 0;
}

.nav-menu ul li {
  min-width: 180px;
  transition: all 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #2e2c2c;
  transition: 0.3s;
  display: block;
  font-size: 1.62rem;
  text-transform: none;
}

.nav-menu ul li a:hover {
  color: #65e2d9;
}

.nav-menu>.menu-active>a:hover {
  color: black;
}
.nav-menu li {
  position: relative;
  white-space: nowrap;
  height: 96%;
}

.nav-menu li:hover > ul {
  display: block;
  transform: scale(1);
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu a {
  padding: 6px 8px 10px 28px;
  text-decoration: none;
  display: inline-block;
  color: black;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: capitalize;
  outline: none;
}

.nav-menu a:hover {
  color: #65e2d9;
}

.nav-menu .fa{
  display: none;
}

@media screen and (max-width: 600px) {
  .nav_menu_container {
    display: none;
    opacity: 0;
    transform: scale(0);
  }
}

/* Mobile Nav Styling */
.mobile-nav {
  position: fixed;
  top: 84px;
  padding: 1.4rem 0 0 1rem;
  bottom: 24px;
  z-index: 998;
  background: #1c2431;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 380px;
  box-shadow: 0 3px 28px rgba(0, 0, 0, 0.18);
  overflow-y: auto;
  transition: all 0.44s;
}

.mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  position: relative;
}

.mobile-nav li a {
  font-size: 1rem;
  text-align: center;
  text-transform: capitalize;
  overflow: hidden;
  padding: 6px 1.2rem;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.mobile-nav li a:hover {
  color: #65e2d9;
}

@media screen and (max-width: 620px) {
  .mobile-nav.active {
    transform: translateX(-50%) scale(1);
  }
}

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  font-family: 'Poppins', sans-serif;
}
nav{
  position: absolute;
    top: 80%;
    left: 88%;
    transform: translate(-50%, -50%);
    background: #2193b0;
    width: 119px;
    line-height: 40px;
    padding: 8px 25px;
    border-radius: 60px;
}
nav label{
  color: white;
  font-size: 22px;
  font-weight: 500;
  display: block;
  cursor: pointer;
}
.button span{
  float: right;
  line-height: 40px;
  transition: 0.5s;
}
.button span.rotate{
  transform: rotate(-180deg);
}
nav ul{
  position: absolute;
  background: #1b1b1b;
  list-style: none;
  top: 75px;
  left: 0;
  width: 100%;
  border-radius: 5px;
  display: none;
}
[id^=btn]:checked + ul{
  display: block;
}
nav .menu:before{
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  background: #1b1b1b;
  right: 20px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
}
nav ul li{
  line-height: 40px;
  padding: 8px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
nav ul li label{
  font-size: 18px;
}
nav ul li a{
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
}
nav ul li a:hover,
nav ul li label:hover{
  color: cyan;
}
nav ul ul{
  position: static;
}
nav ul ul li{
  line-height: 30px;
  padding-left: 30px;
  border-bottom: none;
}
nav ul ul li a{
  color: #e6e6e6;
  font-size: 17px;
}
nav ul li span{
  font-size: 20px;
  float: right;
  margin-top: 10px;
  padding: 0 10px;
  transition: 0.5s;
}
nav ul li span.rotate{
  transform: rotate(-180deg);
}
input{
  display: none;
}

@media screen and (max-width:830px) {
  .nav{
    top: 80%;
    left: 80%;
  }
  
}

/*------------------------------------
# Intro Section
--------------------------------------*/
#intro {
  /* display: table; */
  width: 100vw;
  min-height: 106vh;
  padding: 1rem 0.5rem;
  max-height: max-content;
  overflow: hidden;
  position: relative;
  background: #c7ccd5;
}

#intro::after {
  display: table;
}

#intro .carousel-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: url(../images/HARSH.png) no-repeat;
  background-size: cover;
  background-position: 50% 33%;
  background-size: 90%; /* padding-top: 5rem ; */ /* min-width: 100vw; */ /* height: 100vh; */
  background-color: #2196b0;
}
.containers{
  display: none;
}

@media screen and (max-width: 1472px) {
  .header .container-fluid {
    height: auto;
    width: fit-content;
    padding: 10px 20px 0px 0px;
    margin: -60px 0px 0px 290px;
    /* word-wrap: wrap;  */
  }

  .featured-services .about h1{
    margin: 0px 0px 40px 400px;
}
}

@media screen and (max-width: 1100px) {
  #intro .carousel-container {
    background-position: 50% 30%;
    background-size: 90%;
  }

  .header .container-fluid {
    height: auto;
    width: fit-content;
    padding: 10px 20px 0px 0px;
    margin: -60px 0px 0px 100px;
  }
  
}


@media screen and (max-width: 830px) {
  #intro .carousel-container {
    background-image: url(../images/bg830.png);
    background-size: 50%;
    background-position: 50% 37%;
  }

  
  #intro .carousel-container .carousel-content {
    margin-top: 19rem;
  }
  #intro .carousel-container h2 {
    width: 72%;
  }
  #intro .carousel-container p {
    width: 64%;
  }
  .header .container-fluid{
    margin: 133px 0px 0px -42px;
  }
  /* .featured-services .about{
    margin: 0px 0px 40px 80px;
  } */

  .nav{
    top: 80%;
    left: 80%;
  }


 
}

@media screen and (max-width: 800px) {
  #intro .carousel-container {
    background-position: 50% 40%;
    background-size: 50%;
  }
  .featured-services .description{
    color: #65e2d9;
  }
  .featured-services h4 a{
    color: #f8f9fa;
  }
}

@media screen and (max-width:610px){
  .header #logo img{
  vertical-align: middle;
  border-style: none;
}
}
@media screen and (max-width:360px){
  .nav{
    top:260%;
    left: 45%;
  }


}

@media screen and (max-width:705px){
  .header .container-fluid {
    margin: -30px 0px 0px 145px;
}
}

@media screen and (max-width: 658px)
{
  .header .container-fluid {
    margin: -35px 0px -1px 18px;
}
}

@media screen and (max-width: 600px) {
  #intro .carousel-container {
    background-position: 50% 42%;
    background-size: 60%;
  }
  #intro .carousel-container h2 {
    width: 84%;
  }
  #intro .carousel-container p {
    width: 80%;
  }

  .containers{
    padding: 10px;
  }
  .featured-services .about{
    margin: 0px 0px 40px 0px;
    font-weight: 500;
   }

  
}

@media screen and (max-width: 498px){
  .featured-services .about{
    margin: 0px 0px 40px 150px;
  }
}


#intro .carousel-content {
  text-align: center;
  color: white;
  margin-top: 21rem;
  padding: 1.2rem 0.1rem;
}

#intro h2 {
  width: 60%;
  margin: 60px auto 2px;
  font-size: 2rem;
  font-weight: 500;
}

#intro p {
  width: 42%;
  margin: 0 auto 16px;
}

/* Featured Services Section
--------------------------------*/
.featured-services {
  background: #ffff;
  background-size: 100%;
  background-position: 100% 100%;
  width: 100vw;
  padding: 2rem 0 0 0;
  position: relative;
}
.featured-services .about {
  margin: 0px 0px 40px 650px;
  font-weight: 700;
  padding-left: 50px;
  width: 25%;
  color: #7752d6;
  border-radius: 59% 0%;
  align-self: start;
}




.featured-services .box {
  color: #f9fafb;
  text-align: center;
  margin: 0.8rem 0rem 1rem;
}

.featured-services .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: 100%;
  background-position: 100% 100%;
  z-index: -1;
}

.featured-services h4,
.featured-services h4 a {
  font-weight: 700;
  margin: 1.14rem 0;
  font-size: 1.18rem;
  color: black;
}

.featured-services h4 a:hover {
  color: #65e2d9 !important;
}

.featured-services .description {
  font-size: 0.94rem;
  line-height: 24px;
  color: #454545;
  width: 64%;
  margin: 0 auto;
}


.facts {
  padding: 60px 0 20px 0;
  position: relative;
  background: #181f2a;
}

.facts .row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  width: 98%;
  margin: 0 auto;
}

.facts .text-part,
.facts .img-part {
  display: flex;
  margin: 0.85rem 0;
  width: 50%;
}

.facts .text-part {
  padding: 1.8rem 0 0 0.96rem;
  flex-flow: column nowrap;
  justify-content: center;
}

.facts .text-part h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  width: 60%;
  text-align: left;
}

.facts .text-part a.works-links {
  text-decoration: underline solid var(--cyan);
}

.facts .img-part img {
  width: 92%;
  height: 80%;
  align-self: center;
  justify-self: center;
}

@media screen and (max-width: 840px) {
  .facts {
    padding: 30px 0 10px 0;
  }
  .facts .row {
    justify-content: space-between;
    flex-flow: column nowrap;
    align-items: center;
    width: 98%;
    margin: 0 auto;
  }
  .facts .text-part {
    width: 100%;
    padding: 0.4rem;
    text-align: center;
  }
  .facts .text-part h4 {
    text-align: center !important;
    width: 100% !important;
  }
  .facts .text-part:last-of-type {
    order: 4 !important;
  }
  .facts .img-part {
    width: 96%;
    height: 80%;
  }
  .facts .img-part:last-of-type {
    order: 2 !important;
  }
  .facts .img-part img {
    width: 96%;
    height: 98%;
  }

}

 @media screen  and (max-width:418px){
  .featured-services .about {
    margin: 0px 0px 40px 8px;
    font-weight: 600;
    width: 75%;
    font-size: 30px;
   
  }
  nav{
    left: 75%;
  }

}


@media screen and (max-width:412px){
  .featured-services .about {
    margin: 0px 0px 40px -10px;
    font-weight: 600;
    padding-left: 50px;
    width: 95%;
  }


  nav{
    left: 75%;
    top: 80%;

  }
  
}


@media screen  and (max-width:375px){
  .featured-services .about {
    margin: 0px 0px 40px -7px;
    font-weight: 600;
    width: 116%;
    font-size: 30px;
  }
  .header #logo img{
    vertical-align: middle;
    border-style: none;
    height: 10%;
    width: 30%;
    margin: 27px 0px 0px 0px;
  }
  #intro .carousel-container {
    background-position: 50% 28%;
    background-size: 60%;
  }
  #intro h2 {
    margin: -36px auto 2px;
  }


}


@media screen  and (max-width:280px){
  nav{
    left: 62%;
    top: 65%;
  }
  #intro h2{
    margin: -83px 0px 2px 15px;
  }
  .btn-get-started{
    padding: 0.1rem 3rem;
  }
  .featured-services .about{
    margin: 0px 0px 40px -33px;
    width: 115%;
  }
  #intro .carousel-container {
    background-position: 50% 25%;
    background-size: 60%;
  } 
}

@media screen  and (max-width:542px){
  nav {
    top: 80%;
    left: 71%;
  }

  .featured-services .about {
    margin: 0px 0px 40px 95px;
    width: 81%;
  }

}

/* @media screen and (max-width:556px){
  nav{
    top: -25%;
    left: 49%;
  }
  
} */

@media screen  and (max-width:768px)
{
  .profile-card .profile-card_image {
   
   
    margin: 0 auto 15px -20px;
    
}
}

@media screen  and (max-width:1024px){
  .featured-services .about {
    margin: 0px 0px 40px 308px;
    font-weight: 700;
    padding-left: 50px;
    width: 46%;
    color: #7752d6;
    border-radius: 59% 0%;
    align-self: start;
  }
  #intro h2 {
    width: 60%;
    margin: 20px auto 2px;
    font-size: 2rem;
    font-weight: 500;
  }
}

@media screen  and (max-width:912px){
  .featured-services .about {
    margin: 0px 0px 40px 25px;
    width: 86%;
    
}
}




.quote {
  position: absolute;
  top: 6.5%;
  left: 7%;
}

/* Call To Action Section
--------------------------------*/
.call-to-action {
  padding: 3rem 1rem;
  min-height: 50vh;
  position: relative;
}

.call-to-action .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column nowrap;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 2.2rem 2rem;
  position: absolute;
  bottom: -32%;
  left: 50%;
  transform: translateX(-50%);
  width: 66%; /* max-width: 90%; */
  background: #1c2431;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.324),
    0px 6px 14px rgba(0, 0, 0, 0.075);
  z-index: 9;
}

.call-to-action .container .row {
  margin: 0 auto;
  width: 148%;
  transform: translateX(-14.8%); /* border:1px solid cyan; */
  align-items: center;
}

.call-to-action .container .row input {
  display: inline-block;
  width: 65%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.8rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.call-to-action .container .row button {
  /* width: 50% !important; */
  display: inline-block;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.call-to-action .container p {
  width: 84%;
}

@media screen and (max-width: 1050px) {
  .call-to-action .container {
    width: 78%;
  }
  .call-to-action .container .row {
    width: 100%;
    transform: translateX(0);
  }
  .call-to-action .container .row input {
    width: 48%;
  }
}

@media screen and (max-width: 940px) {
  .call-to-action .container {
    width: 88%;
  }
}

@media screen and (max-width: 780px) {
  .call-to-action .container {
    width: 90%;
  }
  .call-to-action .container .row {
    width: 100%;
    transform: translateX(0);
    justify-content: space-around;
  }
  .call-to-action .container .row input {
    width: 50%;
  }
}

@media screen and (max-width: 750px) {
  .call-to-action .container {
    width: 90%;
  }
  .call-to-action .container input {
    width: 50%;
  }
}

@media screen and (max-width: 620px) {
  .call-to-action .container {
    width: 96%;
    margin: 1rem 0;
  }
  .call-to-action .container .row {
    width: 100%;
    transform: translateX(0);
    justify-content: space-around;
  }
  .call-to-action .container .row input {
    width: 45%;
  }
}

@media screen and (max-width: 400px) {
  .call-to-action .container {
    margin: 1rem 0;
  }
  .call-to-action .container input {
    width: 60%;
  }
}

/******************
Footer
**************/
.footer {
  padding: 8.4rem 0 3rem;
  width: 100vw;
  background: #051730;
  font-size: 15px;
}

.footer div {
  margin-bottom: 1rem;
}

.footer .footer-info div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row nowrap;
  width: 100%;
}

.footer .footer-info div p {
  line-height: 1.6;
  padding-left: 1rem;
}

.footer .location i.ion-ios-location {
  width: 12%;
  font-size: 2rem;
}

.footer .social-links a {
  font-size: 1.2rem;
  display: inline-block; /* background: #333; */
  border: 1px solid #fff;
  color: #eee;
  line-height: 1;
  padding: 12px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 2.6rem;
  height: 2.6rem;
  transition: all 0.35s;
}

.footer .social-links a:hover {
  border: none;
  background: #65e2d9;
  color: #f9fafb;
}

.footer .footer-info div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row nowrap;
  width: 100%;
}

.footer .footer-info div p {
  line-height: 1.6;
  padding-left: 1rem;
}

.footer h4 {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  transition: all 0.5s ease;
}

.footer h4:before,
.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

.footer h4:before {
  right: 12%;
  background: #555;
}

.footer h4:after {
  background: #65e2d9;
  width: 6rem;
}

.footer h4:hover::after {
  width: 9rem;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

.footer .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul li:hover a {
  color: #65e2d9;
}

.footer .footer-links ul a {
  color: #eee;
  
}
.footer .footer-contact div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row nowrap;
  text-align: left;
  font-size: 1.1rem;
}

.footer .footer-contact div span:last-of-type {
  width: 84%;
}

.footer .footer-contact div i {
  font-size: 1.4rem;
}
