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

html {
  font-size: 62.8%;
}

::-moz-selection {
  background-color: #06A3DA;
  color: #fff;
}

::selection {
  background-color: #06A3DA;
  color: #fff;
}

h5.heading {
  font-size: 2rem;
  color: #06A3DA;
  font-family: "poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 600 !important;
}

#pre-loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: white;
  z-index: 8;
  display: flex;
  justify-content: center;
  align-items: center;
}
#pre-loader img {
  width: 100px;
  scale: 1.8;
  animation: bumping 1s infinite alternate;
}

@keyframes bumping {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.7);
  }
}
h1.sub-heading {
  font-size: 4rem;
  color: #091E3E;
  font-family: "REM", sans-serif;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 20px;
}

i.fa-times,
i.fa-bars {
  display: none;
}

.section-title h1.sub-heading {
  padding: 0 450px;
}

p.content {
  font-size: 1.6rem;
  font-family: "poppins", sans-serif;
  color: #666;
}

.banner {
  width: 100%;
  height: 320px;
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)), url(https://i.postimg.cc/jS7cXYt0/carousel-1.jpg) no-repeat center center/cover;
}
.banner h1 {
  font-family: "poppins", sans-serif;
  font-weight: 700 !important;
  font-size: 40px;
}
.banner .from-links {
  color: #fff;
  font-size: 20px;
  font-family: "poppins", sans-serif;
  text-align: center;
}
.banner .from-links .circle {
  border-radius: 99em;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
}

.contact-for-call {
  margin-top: 30px;
}
.contact-for-call .phone-icon {
  padding: 10px 18px;
  background: #06A3DA;
}
.contact-for-call .phone-icon i.fa-phone-alt {
  font-size: 20px;
  color: #fff;
}
.contact-for-call .contact-info {
  margin-left: 15px;
}
.contact-for-call .contact-info p {
  font-family: "REM", sans-serif;
  font-size: 2rem;
}
.contact-for-call .contact-info span {
  display: block !important;
  font-family: "roboto", sans-serif;
  letter-spacing: 2px;
  font-size: 2rem;
  color: #06A3DA;
  font-weight: 600;
}

nav.navbar {
  background: transparent;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 7;
  transition: all 0.3s ease;
}
nav.navbar .logo {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  font-family: "poppins", sans-serif;
  letter-spacing: 1px;
}
nav.navbar.sticky {
  background: #fff;
  height: 80px;
}
nav.navbar.sticky .logo {
  color: #091E3E;
}
nav.navbar.sticky ul li a {
  color: #000;
}
nav.navbar ul {
  width: 50%;
}
nav.navbar ul li a {
  color: #fff;
  font-size: 2rem;
  font-family: "poppins", sans-serif;
  position: relative;
}
nav.navbar ul li a::after {
  content: "";
  width: 100%;
  height: 5px;
  background: #06A3DA;
  position: absolute;
  left: 0;
  bottom: -7px;
  border-radius: 2px;
  transition: all 0.3s ease;
  opacity: 0;
}
nav.navbar ul li a:hover::after {
  opacity: 1;
}

.navbar.blog-navbar {
  position: sticky !important;
  top: 0;
  height: 80px;
  background-color: #fff;
}
.navbar.blog-navbar .logo {
  color: black;
}
.navbar.blog-navbar ul li a {
  color: #000;
}

#home {
  height: 100vh;
  width: 100%;
  position: relative;
  background: url(/Images/banner.jpg) no-repeat center center/cover;
}
#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #021838;
  opacity: 0.6;
  z-index: 0;
}
#home .content {
  width: 100%;
  z-index: 1;
}
#home .content h1 {
  font-size: 4rem;
  font-family: "roboto", sans-serif;
  font-weight: 600;
}
#home .content h1 span {
  color: #59e9ee;
}
#home .content p {
  color: #eee;
  font-size: 1.8rem;
  font-family: "poppins", sans-serif;
  margin-top: 20px;
}
#home .content a {
  padding: 10px 30px;
  color: #59e9ee;
  border: 2px solid #59e9ee;
  font-weight: 600;
  font-family: "poppins", sans-serif;
  font-size: 1.7rem;
}
#home .content a:nth-child(2) {
  background: #59e9ee;
  color: #000;
  margin-left: 20px;
}

.total-count {
  width: 100%;
}
.total-count .box {
  background: #06A3DA;
  display: flex;
  align-items: center;
  padding: 35px 25px;
  position: relative;
  bottom: 50%;
  transform: translateY(-50%);
  box-shadow: 1px 2px 50px rgba(0, 0, 0, 0.3);
}
.total-count .box .icon {
  padding: 15px 20px;
  background: #fff;
  margin-right: 20px;
}
.total-count .box .icon i {
  font-size: 2.5rem;
  color: #06A3DA;
  font-weight: 800;
}
.total-count .box .content p.name {
  font-size: 2.5rem;
  font-family: "poppins", sans-serif;
  font-weight: 700;
  color: #fff;
}
.total-count .box .content h3.num {
  font-size: 3.5rem;
  font-family: "REM", sans-serif;
  margin-top: -5px;
  color: #fff;
}
.total-count .box:nth-child(2) {
  background: #fff;
}
.total-count .box:nth-child(2) .icon {
  background-color: #06A3DA;
}
.total-count .box:nth-child(2) .icon i {
  color: #fff;
}
.total-count .box:nth-child(2) .content p.name {
  color: #06A3DA;
}
.total-count .box:nth-child(2) .content h3.num {
  color: #000;
}
@media screen and (max-width: 951px) {
  .total-count {
    flex-direction: column !important;
  }
  .total-count .box {
    position: initial;
    bottom: none;
    transform: none;
    box-shadow: none;
  }
}

section.about_us .about_content .list-of-req ul,
section#resfSec .about_content .list-of-req ul {
  margin-top: 20px;
}
section.about_us .about_content .list-of-req ul li,
section#resfSec .about_content .list-of-req ul li {
  font-family: "REM", sans-serif;
  font-size: 1.8rem;
  color: #111;
  font-weight: 300;
}
section.about_us .about_content .list-of-req ul li i,
section#resfSec .about_content .list-of-req ul li i {
  color: #06A3DA !important;
}
section.about_us .about_content .list-of-req ul li span,
section#resfSec .about_content .list-of-req ul li span {
  margin-left: 10px;
}
section.about_us .about_content .list-of-req ul li:nth-child(2),
section#resfSec .about_content .list-of-req ul li:nth-child(2) {
  margin-top: 20px;
}
section.about_us .about_content button.btn,
section#resfSec .about_content button.btn {
  height: 60px;
  width: 250px;
  background: #06A3DA;
  margin-top: 30px;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}
section.about_us .about_content button.btn:hover,
section#resfSec .about_content button.btn:hover {
  background-color: #25b6ea;
}

section.features .feature-sec {
  margin-top: 70px;
}
section.features .feature ul {
  list-style: none;
}
section.features .feature ul li {
  margin-bottom: 60px;
}
section.features .feature ul li i {
  font-size: 12px;
  padding: 15px;
  background: #06A3DA;
}
section.features .feature ul li h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #091E3E;
}
section.features .feature ul li p {
  font-size: 15px;
}

section#resfSec form {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 450px;
  padding: 20px;
  background: #06A3DA;
  margin: 40px;
  border-radius: 2px;
}
section#resfSec form input,
section#resfSec form select {
  height: 40px;
  padding-left: 10px;
  border-radius: 2px;
}
section#resfSec form input,
section#resfSec form textarea,
section#resfSec form select {
  font-size: 1.5rem;
  font-family: "REM", sans-serif;
  margin-top: 30px;
  outline: none;
}
section#resfSec form select {
  color: #999;
}
section#resfSec form textarea {
  height: 100px;
  resize: none;
  padding: 2px;
  padding: 10px;
}
section#resfSec form button {
  cursor: pointer;
  height: 40px;
  margin-top: 30px;
  background-color: #091E3E;
  font-size: 17px;
  font-family: "roboto", sans-serif;
  color: #fff;
}

footer {
  width: 100%;
}
footer .all-links {
  background: #091E3E;
  width: 100%;
}
footer .all-links .box {
  width: 400px;
  padding: 20px;
  background: #06A3DA;
  text-align: center !important;
}
footer .all-links .box p.logo {
  color: #fff;
  font-size: 32px;
  text-align: center !important;
  font-family: "poppins", sans-serif;
  font-weight: 700;
}
footer .all-links .box p.desc {
  text-align: center;
  font-size: 14px;
  font-family: "roboto", sans-serif;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "roboto", sans-serif;
  font-weight: 500;
}
footer .all-links .box .subscribe-form input[type=email] {
  height: 40px;
  width: 240px;
  padding-left: 10px;
  font-size: 15px;
  outline: none;
}
footer .all-links .box .subscribe-form button {
  border: none !important;
  outline: none;
  height: 40px;
  position: relative;
  left: -5px;
  font-size: 15px;
  width: 100px;
  background: #061429;
  cursor: pointer;
  color: #fff;
}
footer .all-links ul {
  list-style: none outside none;
  padding: 20px;
  margin-left: 40px;
}
footer .all-links ul h3 {
  font-family: "REM", sans-serif;
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
footer .all-links ul li {
  margin-top: 20px;
  color: #fff;
  font-family: "poppins", sans-serif;
  font-size: 15px;
}
footer .all-links ul li i {
  color: #06A3DA;
  margin-right: 10px;
}
footer .all-links ul:nth-child(3) li a, footer .all-links ul:nth-child(4) li a {
  transition: all 0.4s ease;
}
footer .all-links ul:nth-child(3) li a:hover, footer .all-links ul:nth-child(4) li a:hover {
  padding-left: 10px;
}
footer .copyright {
  background: #061429;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-family: "poppins", sans-serif;
  font-size: 17px;
}
footer .copyright a {
  text-decoration: underline;
}

.team-sec {
  margin-top: 100px;
}
.team-sec .section-title p {
  text-align: center;
  padding: 0 300px;
  font-size: 15px;
  font-family: "poppins", sans-serif;
  color: #666;
}
.team-sec .team-box-container {
  flex-wrap: wrap;
}
.team-sec .team-box-container .team-box {
  padding: 15px;
  box-shadow: 2px 2px 10px rgba(9, 30, 62, 0.7);
  margin: 20px;
}
.team-sec .team-box-container .team-box .profile-img {
  height: 400px;
  width: 350px;
  overflow: hidden;
}
.team-sec .team-box-container .team-box h1.name {
  font-family: "poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #06A3DA;
  margin-top: 10px;
}
.team-sec .team-box-container .team-box p.role {
  font-size: 16px;
  margin-bottom: 20px;
  color: #666;
}
.team-sec .team-box-container .team-box .social-links {
  margin-top: 20px;
}
.team-sec .team-box-container .team-box .social-links li {
  list-style: none;
  margin-right: 14px;
}
.team-sec .team-box-container .team-box .social-links li a {
  padding: 7px;
  background: #06A3DA;
  color: #fff;
  font-size: 17px;
}

.services-boxes {
  flex-wrap: wrap;
}
.services-boxes .service-box {
  background: #def3fb !important;
  height: 300px;
  width: 350px;
  margin: 20px;
}
.services-boxes .service-box .icon {
  background: #06A3DA;
  align-self: center;
  height: 65px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  font-size: 16px;
}
.services-boxes .service-box .icon i {
  position: relative;
  transform: rotate(-45deg);
  color: #fff;
}
.services-boxes .service-box .content {
  height: 100%;
}
.services-boxes .service-box .content h3 {
  font-weight: 600;
  font-family: "poppins", sans-serif;
  color: #061429;
  font-size: 20px;
}
.services-boxes .service-box .content p {
  font-size: 14px;
  margin-top: 15px;
  font-family: "roboto", sans-serif;
}

.search-bar {
  margin-top: 20px;
  width: 100%;
  padding: 0 200px;
}
.search-bar input {
  width: 100%;
  height: 45px;
  font-family: "roboto", sans-serif;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 17px;
  outline: none;
  border: none;
}
.search-bar input::-moz-placeholder {
  font-style: italic;
}
.search-bar input::placeholder {
  font-style: italic;
}
.search-bar button {
  height: 45px;
  width: 50px;
  background-color: #06A3DA;
  font-size: 17px;
  cursor: pointer;
  color: #fff;
}

.blog-container h1.not-found-msg {
  font-size: 1.6rem;
}
.blog-container .box {
  border: 2px solid rgba(19, 49, 88, 0.5294117647);
  padding: 20px;
  width: 800px;
}
@media screen and (max-width: 800px) {
  .blog-container .box {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.blog-container .box .blog-content h3 {
  font-weight: bold;
  text-transform: capitalize;
  font-family: "poppins", sans-serif;
  font-size: 27px;
  line-height: 38px;
}
@media screen and (max-width: 800px) {
  .blog-container .box .blog-content h3 {
    font-size: 2.8rem;
  }
}
.blog-container .box .blog-content p.blog-desc {
  font-size: 17px;
  font-family: "poppins", sans-serif;
}
@media screen and (max-width: 800px) {
  .blog-container .box .blog-content p.blog-desc {
    font-size: 1.7rem;
  }
}
.blog-container .box a {
  padding: 10px 20px;
  background: #091E3E;
  color: #fff;
  font-family: "poppins", sans-serif;
  font-size: 17px;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .blog-container .box a {
    font-size: 1.7rem;
  }
}

.contact-us-container {
  width: 100%;
}
.contact-us-container .cotact-information {
  width: 100%;
  margin-top: 50px;
}
.contact-us-container .cotact-information form {
  width: 50%;
}
.contact-us-container .cotact-information form input {
  border: 1px solid #061429;
  font-size: 16px;
  margin-top: 20px;
  outline: none;
  padding-left: 10px;
  border-radius: 5px;
  height: 35px;
}
.contact-us-container .cotact-information form textarea {
  border: 1px solid #061429;
  outline: none;
  resize: none;
  font-size: 16px;
  margin-top: 20px;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
}
.contact-us-container .cotact-information form button {
  margin-top: 20px;
  font-size: 16px;
  background: #091E3E;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
}
.contact-us-container .cotact-information .contact-details {
  width: 50%;
  margin-left: 10px;
  height: auto;
  padding: 20px;
}
.contact-us-container .cotact-information .contact-details .box h2 {
  font-size: 25px;
  font-weight: 500;
  font-family: "roboto", sans-serif;
}
.contact-us-container .cotact-information .contact-details .box a {
  font-size: 17px;
  text-decoration: underline;
}
.contact-us-container .cotact-information .contact-details .box.social-icons {
  margin-top: 30px;
}
.contact-us-container .cotact-information .contact-details .box.social-icons h2 {
  margin-bottom: 20px;
}
.contact-us-container .cotact-information .contact-details .box.social-icons a {
  padding: 10px 12px;
  background: #06A3DA;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}
.contact-us-container .cotact-information .contact-details .box.social-icons a:nth-child(3) {
  margin-left: 20px;
}

@media screen and (max-width: 951px) {
  html {
    font-size: 55%;
  }
  nav.navbar i.fa-bars {
    display: block !important;
    font-size: 30px;
    color: #fff;
  }
  nav.navbar.blog-navbar i.fa-bars, nav.navbar.sticky i.fa-bars {
    color: #061429 !important;
  }
  nav.navbar ul {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    justify-content: initial;
    align-items: baseline;
    width: 200px;
    height: 100%;
    padding: 20px;
    color: #fff;
    background: #061429;
    transition: all 0.3s ease;
  }
  nav.navbar ul i.fa-times {
    display: block;
    font-size: 25px;
  }
  nav.navbar ul li {
    margin-top: 20px;
  }
  nav.navbar ul li a {
    font-size: 23px;
    font-weight: 600;
    color: #fff !important;
  }
  nav.navbar ul li a::after {
    all: unset;
  }
  nav.navbar ul li a:hover::after {
    opacity: 0;
  }
  nav.navbar ul.open-nav {
    right: 0 !important;
    transition: all 0.3s ease;
  }
  h1.sub-heading {
    padding: 100px !important;
  }
  .section-title h1.sub-heading {
    padding: 0 110px !important;
  }
  #particles-js {
    position: relative;
  }
  #particles-js .content {
    left: 10px;
    padding: 20px;
    z-index: 1;
    position: absolute;
    width: 100%;
  }
  #about-us {
    flex-direction: column;
  }
  #about-us .about_content {
    width: 100% !important;
  }
  #about-us h1.sub-heading {
    padding: 0 !important;
  }
  #about-us img {
    width: 300px !important;
  }
  .feature-sec {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
  .feature-sec .picture {
    width: 500px !important;
  }
  #resfSec {
    flex-direction: column;
    align-items: baseline !important;
  }
  #resfSec .about_content {
    width: 100% !important;
    padding: 20px;
  }
  #resfSec h1.sub-heading {
    padding: 0 !important;
  }
  .team-box-container {
    justify-content: center;
  }
  .search-bar {
    padding: 0 40px;
  }
  .contact-us-container .section-title h1.sub-heading,
  .container-visit-links .section-title h1.sub-heading {
    padding: 0 !important;
  }
  iframe {
    width: 100%;
  }
  footer .all-links {
    flex-direction: column;
    padding: 50px;
  }
}
@media screen and (max-width: 570px) {
  html {
    font-size: 48%;
  }
  #resfSec form {
    margin-left: 0px !important;
    width: 100% !important;
  }
  .feature-sec .picture {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  footer .all-links .box {
    width: 100% !important;
  }
  .section-title h1.sub-heading {
    padding: 0 !important;
  }
  #particles-js .content a {
    padding: 10px 14px;
  }
  section.about_us .about_content .list-of-req ul {
    margin-left: 10px;
  }
  section.about_us .about_content .list-of-req ul li {
    display: flex !important;
    align-items: center;
  }
  .team-sec .section-title p {
    padding: 0 25px;
  }
  .team-sec .team-box-container .team-box .profile-img {
    height: 373px;
    width: 274px;
    overflow: hidden;
  }
  .team-sec .team-box-container {
    justify-content: center;
  }
  .contact-us-container .cotact-information {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .contact-us-container .cotact-information form {
    width: 100%;
  }
  .contact-us-container .cotact-information .contact-details {
    width: 100%;
    margin-left: 0;
  }
  footer .all-links {
    padding: 10px;
  }
  footer .all-links .box .subscribe-form {
    display: flex !important;
  }
  footer .all-links ul {
    margin-left: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */