* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

*::-moz-selection {
  background-color: #005570;
  color: #fff;
}

*::selection {
  background-color: #005570;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #005570;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #003140;
}

/***************************** Global Style *****************************/
p {
  font-size: 15px;
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #000;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #003d4f, #005570);
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

/***************************** Animations *****************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floating-y2 {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes floating-y2 {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@-webkit-keyframes floating-x {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

@keyframes floating-x {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

@-webkit-keyframes scaling {
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes scaling {
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container .navbar {
  background-color: #F5F6F8;
}

.navs-container .navbar .nav-link {
  color: #18191F;
  margin: 0 10px;
  text-transform: capitalize;
}

.navs-container .navbar .nav-link.active {
  color: #005570;
  font-weight: bold;
}

.navs-container .navbar .contact-btn {
  background-color: #005570;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
  width: 150px;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  text-align: center;
}

.navs-container .navbar .contact-btn i {
  margin: 0 3px;
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  padding-top: 70px;
  background-color: #F5F6F8;
}

footer .content {
  margin-bottom: 25px;
}

footer .content .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}

footer .content .title {
  color: #858B97;
  font-weight: bold;
  margin-bottom: 1rem;
}

footer .content .links a {
  display: block;
  margin: 10px 0;
  padding: 0 15px;
  font-size: 14px;
  color: #858B97;
}

footer .content .links a:hover {
  color: #005570;
}

footer .copyright {
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid #ccc;
}

footer .copyright .p {
  margin-bottom: 0;
  font-weight: bold;
  text-align: center;
  color: #D2D2D2;
}

/***************************** Public classes *****************************/
.section {
  background-color: #F5F6F8;
  padding: 70px 0;
  overflow: hidden;
}

.form-container .form-group select, .form-container .form-group input {
  height: 60px;
}

.form-container .form-group .form-control {
  border-radius: 15px;
  background-color: #F2F2F2;
  border: 1px solid #F2F2F2;
  font-size: 14px;
}

.form-container .form-group .form-control:focus {
  border: 1px solid #005570;
}

.form-container .submit-btn {
  width: 170px;
  height: 45px;
  border: 1px solid #005570;
  background-color: #005570;
  color: #fff;
  font-size: 500;
  border-radius: 5px;
}

.form-container .submit-btn:hover {
  background-color: #18191F;
}

/***************************** Start Edit Home Page *****************************/
header {
  background-color: #F5F6F8;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

header .text-box .title {
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 4.5rem;
}

header .text-box .p {
  margin-top: 1.5rem;
  font-size: 15px;
  line-height: 2rem;
  color: #28293E;
}

header .text-box .more-btn {
  width: 180px;
  height: 50px;
  line-height: 50px;
  display: block;
  text-align: center;
  font-weight: 600;
  color: #005570;
  position: relative;
  border: 0 solid;
  -webkit-box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
          box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(0, 56, 113, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

header .text-box .more-btn:hover {
  border: 1px solid;
  -webkit-box-shadow: inset 0 0 20px rgba(0, 56, 113, 0.5), 0 0 20px rgba(0, 77, 154, 0.2);
          box-shadow: inset 0 0 20px rgba(0, 56, 113, 0.5), 0 0 20px rgba(0, 77, 154, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
}

header .header-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-sec .about-img {
  width: 100%;
  height: 410px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-bottom: 10px;
}

.about-sec .text-box {
  padding: 15px 0;
}

.about-sec .text-box .title {
  font-weight: 500;
}

.about-sec .text-box p {
  line-height: 1.7rem;
  color: #28293E;
}

.services-sec .main-title {
  line-height: 2.8rem;
  font-weight: 600;
}

.services-sec .service_card {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  position: relative;
  overflow: hidden;
}

.services-sec .service_card .inner {
  position: relative;
  z-index: 1;
}

.services-sec .service_card .inner .icon {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background-color: #83b7c7;
  display: block;
  border-radius: 5px;
}

.services-sec .service_card .inner .icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.services-sec .service_card .inner .title {
  margin-top: 25px;
  text-transform: capitalize;
  font-weight: bold;
}

.services-sec .service_card .inner .p {
  line-height: 1.7rem;
  margin-bottom: .8rem;
}

.services-sec .service_card .inner .more-btn {
  font-weight: bold;
  color: #005570;
}

.services-sec .service_card .inner .more-btn:hover {
  color: #83b7c7;
}

.services-sec .service_card::after {
  content: '';
  width: 100%;
  height: 50%;
  background-color: #005570;
  position: absolute;
  top: -50%;
  left: 0;
  border-radius: 20px 20px 0 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.services-sec .service_card::before {
  content: '';
  width: 100%;
  height: 50%;
  background-color: #005570;
  position: absolute;
  bottom: -50%;
  left: 0;
  border-radius: 0 0 20px 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.services-sec .service_card:hover::after {
  top: 0%;
}

.services-sec .service_card:hover::before {
  bottom: 0%;
}

.services-sec .service_card:hover .icon img {
  -webkit-filter: invert(0) sepia(84%) saturate(7533%) hue-rotate(194deg) brightness(562%) contrast(161%);
          filter: invert(0) sepia(84%) saturate(7533%) hue-rotate(194deg) brightness(562%) contrast(161%);
}

.services-sec .service_card:hover .title,
.services-sec .service_card:hover .more-btn {
  color: #fff;
}

.services-sec .service_card:hover .p {
  color: #ddd;
}

.services-sec .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 45px;
}

.services-sec .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

.services-sec .swiper-pagination-bullet-active {
  background: #005570;
  position: relative;
}

.services-sec .swiper-pagination-bullet-active::after {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: -5px;
  border: 1px solid #005570;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.projects-sec {
  position: relative;
}

.projects-sec .main-title {
  line-height: 2.8rem;
  font-weight: 600;
  z-index: 1;
  position: relative;
}

.projects-sec .project_card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 25px;
  z-index: 1;
}

.projects-sec .project_card .project_img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.projects-sec .project_card .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px 25px;
  left: 0;
  right: 0;
}

.projects-sec .project_card .content .title, .projects-sec .project_card .content .subtitle {
  position: relative;
  z-index: 1;
  color: #fff;
}

.projects-sec .project_card .content::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #005570;
  opacity: .5;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.projects-sec .project_card.card_b {
  position: absolute;
  bottom: 0;
}

.projects-sec .project_card:hover .project_img {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}

.projects-sec .pattern {
  position: absolute;
  top: 25px;
  right: 0;
}

.contact-sec .inner {
  padding: 0 0 70px  0;
  border-radius: 15px;
  background-color: #005570;
  position: relative;
}

.contact-sec .inner .contact-wrapper {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  margin-top: -50px;
  -webkit-box-shadow: 0 0 10px 0 #8dbac7;
          box-shadow: 0 0 10px 0 #8dbac7;
  position: relative;
  z-index: 1;
}

.contact-sec .inner .contact-wrapper .p {
  font-size: 13px;
  color: #28293E;
  line-height: 1.7rem;
}

.contact-sec .inner .pattern1 {
  position: absolute;
  top: 25px;
  right: 5px;
}

.contact-sec .inner .pattern2 {
  position: absolute;
  bottom: 25px;
  left: 5px;
}

.app-sec {
  background-color: #005570;
  border-radius: 0 150px 0 150px;
  padding: 20px 0 0 0;
  position: relative;
}

.app-sec .phone-img {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.app-sec .text-box {
  padding: 85px 0 0 0;
}

.app-sec .text-box .title {
  font-weight: bold;
  color: #fff;
  line-height: 4rem;
}

.app-sec .text-box .p {
  color: #ddd;
  font-size: 16px;
}

.app-sec .text-box .app-links {
  display: inline-block;
}

.app-sec .text-box .app-links a {
  margin: 0 5px;
  display: inline-block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.app-sec .text-box .app-links a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.app-sec .ellipse-r1 {
  position: absolute;
  right: -190px;
  top: -70px;
  -webkit-animation: scaling 2s alternate infinite;
          animation: scaling 2s alternate infinite;
}

.app-sec .ellipse-r2 {
  position: absolute;
  right: -150px;
  bottom: -70px;
  -webkit-animation: floating-y2 1s infinite alternate;
          animation: floating-y2 1s infinite alternate;
}

.app-sec .ellipse-l1 {
  position: absolute;
  left: -190px;
  top: -70px;
  -webkit-animation: floating-y2 1s infinite alternate;
          animation: floating-y2 1s infinite alternate;
}

.app-sec .ellipse-l2 {
  position: absolute;
  left: -150px;
  bottom: -70px;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  -webkit-animation: floating-x 1s infinite alternate;
          animation: floating-x 1s infinite alternate;
}
/*# sourceMappingURL=style.css.map */