* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

/* HEADER AND DROPDOWN MENU STYLES START HERE */
.headers {
  background-color: #fff;
  position: sticky;
  top: 0;
  padding: 15px 0;
  z-index: 2000;
  box-shadow: 0px 0px 20px #00000057;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  /* margin: 10px auto !important; */
  position: relative;
}

.header img {
  height: 4rem;
}

@media only screen and (min-width: 765px) {
  .header img {
    width: 25%;
    object-fit: contain;
  }
}

.header ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.header ul a {
  text-decoration: none;
}

.header ul a li {
  margin-left: 7px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: bold;
  display: none;
  padding: 8px 10px;
  border-radius: 100px;
  background-color: #fff;
  color: #000;
  transition: 0.2s ease-in;
  cursor: pointer;
}

.header ul i {
  display: block;
}

.header ul a li:hover {
  background-color: #222222;
  color: #fff;
  box-shadow: 0px 0px 5px #00000057;
}

@media only screen and (min-width: 768px) {
  .header ul a li {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    display: block;
  }

  .header ul i {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .header ul a li {
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    display: block;
  }
}

.header ul a li.active {
  background-color: #3d6599;
  color: #fff;
  box-shadow: 0px 0px 5px #00000057;
}

.header .dropdown-content {
  position: absolute;
  top: 60px;
  display: none;
  background-color: #f1f1f1;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 7px;
}

.header .dropdown-content div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 0;
}

.header .dropdown-content a {
  color: #000;
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 100px;
}

.header .dropdown-content a:hover {
  background-color: #222222;
  color: #fff;
  box-shadow: 0px 0px 5px #00000057;
}

.header .dropdown-content a li {
  list-style: none;
  font-family: "Nunito Sans", sans-serif;
}

/* HERO SECTION STYLES STARTS HERE */


.hero-cont {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  height: auto;
  padding-top: 20px;
}

.hero-cont .top {
  width: 100%;
  height: auto;
  /* background-color: aqua; */
}

.hero-cont h1 {
  font-size: 40px;
  font-family: "Nunito Sans", sans-serif;
  color:#fff
}
.hero-cont h1 span {
  color: #fff;
}

.hero-cont .img {
  background-image: url("../images/icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-cont .bottom {
  width: 100%;
  height: 50%;
  display: none;
}

.hero-cont .bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cont .top button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  background-color: transparent;
  color: #fff;
  border: none;
  font-family: "Nunito Sans", sans-serif;
  width: 200px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.hero-cont .top button div {
  width: 38px;
  height: 100%;
  border-radius: 0 20px 20px 0;
  background-color: #3d6599;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding: 0 10px;
  left: 0;
  transition: 0.5s ease-in-out;
}

.hero-cont .top button:hover .arrow {
  width: 100%;
  justify-content: flex-end;
}

.hero-cont .top button:hover .btn-txt {
  width: 100%;
  justify-content: flex-end;
  color: #fff;
}

.hero-cont .top button h6 {
  position: absolute;
  font-size: 16px;
  transition: 0.5s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .hero-cont {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    height: 82vh;
    padding-top: 20px;
  }

  .hero-cont .top {
    width: 60%;
    height: 100%;
  }

  .hero-cont .top img {
    width: 90%;
    margin: 0px auto;
    height: 80%;
    object-fit: contain;
  }

  .hero-cont h1 {
    font-size: 50px;
    font-family: "Nunito Sans", sans-serif;
  }
}

@media only screen and (min-width: 1024px) {
  .hero-cont h1 {
    font-size: 60px;
    font-family: "Nunito Sans", sans-serif;
  }
}

.main {
  padding: 30px 0;
}

.main h1 {
  font-size: 25px;
  color: #3d6599;
  text-align: center;
  margin-bottom: 10px;
}

.main p {
  font-size: 19px;
  text-align: center;
  margin-bottom: 40px;
}

.main p span {
  font-size: 19px;
  text-align: center;
  color: #cd7274;
}

.main .service {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 30px 0;
}

.main .service .item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  width: 30%;
  padding: 50px 10px;
  background-color: #2d3643;
  margin-bottom: 20px;
}

.main .service .item a {
  font-size: 45px;
  text-align: center;
  color: #fff;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
}

.contact div {
  width: 100%;
}

.contact .first h2 {
  font-size: 20px;
  margin-bottom: 30px;
}

.contact .first h1 {
  font-size: 55px;
  margin-bottom: 30px;
}

.contact .first p {
  font-size: 15px;
  margin-bottom: 30px;
}

.contact .first h4 {
  font-size: 18px;
  margin-bottom: 30px;
}
.contact .first h4 span {
  color: #3d6599;
}

.contact .second {
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 20px 20px;
}

.contact .second h2 {
  font-size: 19px;
  margin-bottom: 15px;
}

.contact .second input {
  font-size: 15px;
  margin-bottom: 15px;
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 7px;
}

.contact .second textarea {
  font-size: 15px;
  margin-bottom: 15px;
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 7px;
  resize: vertical;
}

.contact .second .btn-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact .second .btn-holder button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  background-color: transparent;
  border: none;
  font-family: "Nunito Sans", sans-serif;
  width: 220px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.contact .second .btn-holder button div {
  width: 38px;
  height: 100%;
  border-radius: 0 20px 20px 0;
  background-color: #3d6599;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding: 0 10px;
  left: 0;
  transition: 0.5s ease-in-out;
}

.contact .second .btn-holder button div {
  width: 38px;
  height: 100%;
  border-radius: 0 20px 20px 0;
  background-color: #3d6599;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding: 0 10px;
  left: 0;
  transition: 0.5s ease-in-out;
}

.contact .second .btn-holder button:hover .arrow {
  width: 100%;
  justify-content: flex-end;
}

.contact .second .btn-holder button:hover .btn-txt {
  width: 100%;
  justify-content: flex-end;
  color: #fff;
}

.contact .second .btn-holder button h6 {
  position: absolute;
  font-size: 16px;
  transition: 0.5s ease-in-out;
}

@media only screen and (min-width: 765px) {
  .contact {
    flex-direction: row;
  }
  .contact div {
    width: 46%;
  }
}

.footer {
  width: 100%;
  height: auto;
  background-color: #2d3643;
  padding: 30px 0;
}

.footer .footer-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
}

.footer .footer-inner div {
  margin-bottom: 30px;
}

.footer .footer-inner div.one {
  width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
}

.footer .footer-inner div.one div {
  width: 300px;
  height: 100%;
}

.footer .footer-inner div.one img {
  height: 70px;
  object-fit: contain;
}

.footer .footer-inner div.one p {
  text-align: left;
  color: #fff;
  font-size: 18px;
  margin-top: 12px;
}

.footer .footer-inner div.two {
  width: 200px;
  height: 100%;
}

.footer .footer-inner div.two h3 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
}

.footer .footer-inner div.two div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .footer-inner div.two div ul li {
  list-style: none;
}

.footer .footer-inner div.two div ul li a {
  list-style: none;
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer .footer-inner div.three {
  width: 300px;
  height: 100%;
}

.footer .footer-inner div.three h3 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
}

.footer .footer-inner div.three div a {
  font-size: 25px;
  color: #fff;
  text-decoration: none;
}

.footer .footer-inner div.three p {
  font-size: 15px;
  color: #fff;
  margin-top: 40px;
}

@media only screen and (min-width: 900px) {
  .footer .footer-inner div {
    margin-bottom: 0px;
  }
}
