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

body {
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #2c7ae7;
  height: 100vh;
  position: relative;
}

header .nav-bgc {
  position: fixed;
  width: 100vw;
  height: 10vh;
  background-color: #fff;
  top: 0;
  z-index: 1010101;
}

@media (min-width: 375px) {
  header .nav-bgc {
    height: 8vh;
  }
}

@media (min-width: 768px) {
  header .nav-bgc {
    height: 6vh;
  }
}

@media (min-width: 1024px) {
  header .nav-bgc {
    height: 4.5vh;
  }
}

@media (min-width: 1600px) {
  header .nav-bgc {
    height: 6vh;
  }
}

header .nav-bgc .logo {
  position: fixed;
  top: 0;
  width: 30vw;
  height: 10%;
  z-index: 2;
  cursor: pointer;
}

@media (min-width: 375px) {
  header .nav-bgc .logo {
    height: 8%;
  }
}

@media (min-width: 768px) {
  header .nav-bgc .logo {
    height: 70px;
  }
}

header .nav-bgc .logo img {
  width: 130px;
  position: fixed;
  top: 3%;
  left: 35%;
  z-index: 1330;
}

@media (min-width: 768px) {
  header .nav-bgc .logo img {
    width: 150px;
    top: 20px;
    left: 41%;
  }
}

@media (min-width: 1024px) {
  header .nav-bgc .logo img {
    transform: translateX(-24vh);
  }
}

@media (min-width: 1600px) {
  header .nav-bgc .logo img {
    transform: translateX(-30vh);
  }
}

header .nav-bgc .menu-btn {
  position: fixed;
  left: 30px;
  top: 5%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all .5s ease-in-out;
  z-index: 3;
}

@media (min-width: 375px) {
  header .nav-bgc .menu-btn {
    top: 30px;
  }
}

@media (min-width: 1024px) {
  header .nav-bgc .menu-btn {
    display: none;
  }
}

header .nav-bgc .menu-btn .menu-burger {
  width: 20px;
  height: 3px;
  background-color: #2c7ae7;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}

header .nav-bgc .menu-btn .menu-burger::before,
header .nav-bgc .menu-btn .menu-burger::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: #2c7ae7;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}

header .nav-bgc .menu-btn .menu-burger::before {
  transform: translateY(-10px);
}

header .nav-bgc .menu-btn .menu-burger::after {
  transform: translateY(10px);
}

header .nav-bgc .menu-btn.open .menu-burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}

header .nav-bgc .menu-btn.open .menu-burger::before {
  transform: rotate(45deg) translate(35px, -35px);
}

header .nav-bgc .menu-btn.open .menu-burger::after {
  transform: rotate(-45deg) translate(35px, 35px);
}

header .nav-bgc nav .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(-150%);
  list-style-type: none;
  transition: all .5s ease;
  background-color: white;
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
}

@media (min-width: 1024px) {
  header .nav-bgc nav .menu {
    transform: translateX(0);
    background-color: transparent;
    height: 5vh;
    flex-direction: row;
    top: 8.6vh;
    justify-content: space-around;
    width: 60vw;
    left: 30vw;
  }
}

@media (min-width: 1600px) {
  header .nav-bgc nav .menu {
    width: 40vw;
    left: 38vw;
  }
}

header .nav-bgc nav .menu.open {
  transform: translateX(0);
}

header .nav-bgc nav li a {
  color: #2c7ae7;
  text-decoration: none;
  font-weight: 500;
  line-height: 50px;
  font-size: 20px;
}

@media (min-width: 375px) {
  header .nav-bgc nav li a {
    font-size: 25px;
    line-height: 60px;
  }
}

@media (min-width: 768px) {
  header .nav-bgc nav li a {
    font-size: 35px;
    line-height: 100px;
    position: relative;
    top: -120px;
  }
}

@media (min-width: 1024px) {
  header .nav-bgc nav li a {
    font-size: 15px;
    color: black;
    transition: all 0.2s ease;
  }
  header .nav-bgc nav li a:hover {
    color: #2c7ae7;
  }
}

@media (min-width: 1600px) {
  header .nav-bgc nav li a {
    top: -8vh;
    font-size: 17px;
  }
}

header .nav-bgc nav .socials {
  display: flex;
  justify-content: space-between;
  width: 30vw;
  margin-top: 15px;
}

@media (min-width: 375px) {
  header .nav-bgc nav .socials {
    margin-top: 30px;
  }
}

@media (min-width: 768px) {
  header .nav-bgc nav .socials {
    position: relative;
    bottom: 150%;
  }
}

@media (min-width: 1024px) {
  header .nav-bgc nav .socials {
    display: none;
  }
}

header .nav-bgc nav .socials i {
  font-size: 17px;
}

@media (min-width: 375px) {
  header .nav-bgc nav .socials i {
    font-size: 25px;
  }
}

.banner-text {
  color: white;
}

.banner-text h1 {
  text-align: right;
  width: 79vw;
  position: relative;
  left: -20%;
  top: -4%;
}

@media (min-width: 375px) {
  .banner-text h1 {
    top: -30%;
    width: 50vw;
    left: 0;
  }
}

@media (min-width: 768px) {
  .banner-text h1 {
    font-size: 45px;
    top: -110%;
    left: -15%;
  }
}

@media (min-width: 1024px) {
  .banner-text h1 {
    top: -30vh;
    width: 35vw;
    left: -26vh;
  }
}

@media (min-width: 1600px) {
  .banner-text h1 {
    top: -22vh;
    width: 20vw;
    left: -20vh;
    text-align: left;
  }
}

.banner-text h2 {
  font-size: 20px;
  font-weight: 400;
  width: 90vw;
  position: relative;
  top: 12%;
  line-height: 30px;
}

@media (min-width: 375px) {
  .banner-text h2 {
    top: -20%;
    width: 80vw;
    left: 0%;
  }
}

@media (min-width: 768px) {
  .banner-text h2 {
    top: -22vh;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .banner-text h2 {
    top: -28vh;
    width: 35vw;
    left: -20vw;
  }
}

@media (min-width: 1600px) {
  .banner-text h2 {
    top: -20vh;
    width: 20vw;
    left: -10vw;
    text-align: left;
    font-size: 22px;
    font-weight: 200;
  }
}

.buttons {
  display: flex;
  justify-content: space-around;
  width: 90vw;
  position: relative;
  top: 13%;
}

@media (min-width: 375px) {
  .buttons {
    top: 6%;
  }
}

@media (min-width: 768px) {
  .buttons {
    top: -10%;
    width: 50vw;
    left: 0;
  }
}

@media (min-width: 1024px) {
  .buttons {
    top: -20vh;
    width: 35vw;
    left: -15vw;
  }
}

@media (min-width: 1600px) {
  .buttons {
    top: -8vh;
    width: 20vw;
    left: -10vw;
    text-align: left;
  }
}

.buttons a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  border: solid 1px white;
  border-radius: 15px;
  padding: 10px 15px;
  transition: all 0.5s ease;
}

.buttons a:hover {
  background: #2c7ae7;
  background: linear-gradient(90deg, #2c7ae7 35%, #579bfb 100%);
  border: 1px solid transparent;
}

@media (min-width: 375px) {
  .buttons a {
    font-size: 17px;
    padding: 17px 20px;
    transform: translateY(-130%);
  }
}

.buttons a i {
  font-size: 13px;
  margin-left: 8px;
}

.buttons .aboutus {
  background: #2c7ae7;
  background: linear-gradient(90deg, #2c7ae7 35%, #579bfb 100%);
  border: 0;
}

.buttons .aboutus:hover {
  background: linear-gradient(90deg, #4f97fc 0%, #2c7ae7 61%);
  border: 0;
}

header::before {
  content: "";
  background: url("../images/main-banner-img1.jpg") no-repeat;
  background-position: top;
  background-size: 500%;
  top: 0%;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -10;
  opacity: 1;
}

@media (min-width: 768px) {
  header::before {
    background-size: 200%;
    top: 6%;
  }
}

@media (min-width: 1024px) {
  header::before {
    top: 3%;
    background-size: 170%;
  }
}

@media (min-width: 1600px) {
  header::before {
    background-size: 100%;
  }
}

.services {
  width: 100vw;
  margin-top: 1vh;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 768px) {
  .services {
    margin-top: -36vh;
  }
}

@media (min-width: 1024px) {
  .services {
    margin-top: -20vh;
  }
}

.services .header {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
}

.services ul {
  margin: 20px;
}

@media (min-width: 768px) {
  .services ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .services ul {
    width: 70vw;
    position: relative;
    left: 14%;
  }
}

.services ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid #a7a5a5;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  height: 200px;
  transition: 0 all ease;
}

@media (min-width: 768px) {
  .services ul li {
    width: 40%;
    margin-left: 60px;
    position: relative;
    left: -30px;
  }
}

@media (min-width: 1024px) {
  .services ul li {
    width: 22%;
    height: 250px;
    margin-top: 55px;
  }
  .services ul li:hover {
    background: #2c7ae7;
    background: linear-gradient(90deg, #2c7ae7 35%, #579bfb 100%);
    color: white;
    cursor: pointer;
  }
  .services ul li:hover i {
    color: #2c7ae7;
    background: #fff;
  }
}

.services ul li i {
  font-size: 35px;
  color: white;
  background: #2c7ae7;
  background: linear-gradient(90deg, #2c7ae7 35%, #579bfb 100%);
  line-height: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.services ul li h3 {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .services ul li h3 {
    font-size: 22px;
  }
}

.services ul li p {
  font-size: 14px;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .services ul li p {
    font-size: 18px;
  }
}

.services ul .desktopdisplay {
  display: none;
}

@media (min-width: 768px) {
  .services ul .desktopdisplay {
    display: flex;
  }
}

.whywe {
  font-family: "Montserrat", sans-serif;
  background-color: #eef1fd;
  padding: 3vh 0 3vh 0;
}

@media (min-width: 768px) {
  .whywe {
    margin-top: 5vh;
  }
}

.whywe .header {
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  margin: 2vh 0 2vh 0;
}

@media (min-width: 768px) {
  .whywe ul {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    left: 0;
  }
}

@media (min-width: 1024px) {
  .whywe ul {
    width: 50vw;
    left: 25%;
  }
}

.whywe ul li {
  border-top: solid 1px #81ace9;
  list-style-type: none;
}

@media (min-width: 768px) {
  .whywe ul li {
    width: 50%;
  }
  .whywe ul li:nth-of-type(2) {
    border: 0;
  }
}

@media (min-width: 1024px) {
  .whywe ul li {
    width: 50%;
    margin-top: 30px;
    border: 0;
  }
}

.whywe ul li div {
  font-weight: 700;
  background: #2c7ae7;
  background: linear-gradient(90deg, #2c7ae7 35%, #579bfb 100%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: white;
  border-radius: 50%;
  position: relative;
  top: 28px;
  margin-left: 10px;
}

@media (min-width: 768px) {
  .whywe ul li div {
    margin-left: 60px;
  }
}

.whywe ul li h3 {
  text-align: right;
  width: 60vw;
  position: relative;
  left: 15vw;
  font-weight: 600;
}

@media (min-width: 768px) {
  .whywe ul li h3 {
    left: 16vw;
    width: 30vw;
  }
}

@media (min-width: 1024px) {
  .whywe ul li h3 {
    left: 7vw;
    width: 15vw;
    font-size: 20px;
  }
}

.whywe ul li p {
  margin: 20px 0 20px 0;
  font-weight: 400;
  line-height: 22px;
  margin-left: 60px;
}

@media (min-width: 1024px) {
  .whywe ul li p {
    font-weight: 500;
    font-size: 18px;
  }
}

.whywe ul li:nth-of-type(1) {
  border: 0;
}

.contactus {
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
}

.contactus .wrapper {
  width: 100%;
  max-width: 550px;
  padding: 30px;
  border-radius: 5px;
}

.contactus .wrapper .title h2 {
  color: black;
  text-align: center;
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: 400;
}

.contactus .wrapper .contact-form {
  display: flex;
  flex-direction: column;
}

@media (min-width: 375px) {
  .contactus .wrapper .contact-form {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .contactus .wrapper .contact-form {
    flex-direction: row;
  }
}

.contactus .wrapper .contact-form .input-fields {
  display: flex;
  flex-direction: column;
  margin-right: 4%;
  width: 100%;
}

.contactus .wrapper .contact-form .input-fields input {
  margin: 10px 0;
  background: transparent;
  border: 0px;
  border-bottom: 1px solid #2c7ae7;
  padding: 10px;
  color: black;
  width: 100%;
}

.contactus .wrapper .contact-form .msg {
  width: 100%;
}

.contactus .wrapper .contact-form .msg textarea {
  margin: 10px 0;
  background: transparent;
  border: 0px;
  border-bottom: 1px solid #2c7ae7;
  padding: 10px;
  color: black;
  width: 100%;
  height: 212px;
}

@media (max-width: 375px) {
  .contactus .wrapper .contact-form .msg textarea {
    height: 80px;
  }
}

.contactus .wrapper .contact-form .msg .btn {
  background: #2c7ae7;
  background: linear-gradient(90deg, #2c7ae7 35%, #579bfb 100%);
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

footer {
  font-family: "Montserrat", sans-serif;
  background-color: #303036;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  footer .topfooter {
    display: flex;
    flex-wrap: wrap;
  }
}

footer .topfooter .location {
  padding-top: 40px;
}

@media (min-width: 768px) {
  footer .topfooter .location {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  footer .topfooter .location {
    position: relative;
    left: 20%;
  }
}

footer .topfooter .location ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  line-height: 50px;
  justify-content: left;
  position: relative;
  left: 10vw;
  width: 90vw;
}

footer .topfooter .location ul li:hover {
  cursor: pointer;
}

footer .topfooter .location ul li:hover i {
  color: #2c7ae7;
}

footer .topfooter .location ul li i {
  font-size: 20px;
}

footer .topfooter .location ul li p {
  margin-left: 20px;
}

footer .topfooter .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 60vw;
  position: relative;
  left: 20%;
}

@media (min-width: 768px) {
  footer .topfooter .socials {
    width: 20%;
    left: 40%;
  }
}

@media (min-width: 1024px) {
  footer .topfooter .socials {
    left: -70vh;
    width: 10%;
    top: 11vh;
  }
}

footer .topfooter .socials i {
  margin-top: 20px;
  font-size: 24px;
}

footer .topfooter .socials i:hover {
  color: #2c7ae7;
  cursor: pointer;
}

footer .topfooter .info {
  margin-top: 40px;
}

@media (min-width: 768px) {
  footer .topfooter .info {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  footer .topfooter .info {
    width: 30%;
    position: relative;
    left: 5%;
  }
}

footer .topfooter .info img {
  width: 150px;
  margin-left: 20px;
}

footer .topfooter .info p {
  margin: 15px;
  line-height: 23px;
  font-weight: 300;
  font-size: 15px;
}

footer .rights {
  text-align: center;
  padding-bottom: 20px;
  border-top: 1px solid #555555;
  margin-top: 30px;
}

@media (min-width: 768px) {
  footer .rights {
    margin-top: 60px;
  }
}

footer .rights p {
  margin-top: 10px;
  font-size: 15px;
  color: #adadad;
}
/*# sourceMappingURL=style.css.map */