/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}
a {
  text-decoration: none;
  color: #5a5af3;
}
a:hover {
  color: #2a2af0;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}
.mt-5 {
  margin-top: -6.5rem !important;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 120px;
  z-index: 996;
  background: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 2px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #004c9a;
  line-height: 0;
}
.back-to-top:hover {
  background: #000;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: #fff;
}
#header.header-scrolled,
#header.header-inner-pages {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
}
#header .logo a {
  color: #5a5af3;
}
#header .logo img {
  max-height: 40px;
}
@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  color: #004c9a;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
}
.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  font-weight: 600;
  color: #004c9a;
}
.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #004c9a;
  text-decoration-line: underline;
}
.profileIcon {
  margin-top: -16% !important;
}

.container .getstarted {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 10px;
  color: #ffffff;
  background-color: #004c9a;
  width: 140px;
  text-align: center;
}
.container .getstarted:hover {
  color: #fff;
  background: #004c9a;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #5a5af3;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #005ba7;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(48, 47, 84, 0.9);
  transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #434175;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #5a5af3;
}
.navbar-mobile .getstarted {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #5a5af3;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: white;
  border-bottom: 2px solid white;
}
#hero .container {
  padding-top: 80px;
}
#hero h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 56px;
  color: #004c9a;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 18px;
}
#hero h1 span {
  margin: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 56px;
  color: #ff9800;
  font-family: 'Poppins', sans-serif;
}
#hero p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: #1b2f46;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 12px;
}
#hero h2 {
  margin: 10px 0 0 0;
  font-size: 20px;
}
#hero .btn-get-started,
#hero .btn-get-quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 2px;
  transition: 0.5s;
  border-radius: 10px;
}
#hero .btn-get-started {
  background: #004c9a;
  color: #fff;
  margin-right: 10px;
}
#hero .btn-get-started:hover {
  background: #2f74bad4;
}
#hero .btn-get-quote {
  color: #5a5af3;
  border: 2px solid #5a5af3;
}
#hero .btn-get-quote:hover {
  background: #5a5af3;
  color: #fff;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 24px;
    line-height: 36px;
  }
  #hero h1 span {
    font-size: 24px;
    line-height: 36px;
  }
  #hero p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #1b2f46;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 12px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .container .getstarted {
    display: none;
  }

  #hero {
    text-align: center;
  }
  #hero ul {
    text-align: left;
    font-size: 14px;
  }
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started,
  #hero .btn-get-quote {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
.section-bg {
  background-color: #2f74ba14;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 15px;
  position: relative;
  color: #004c9a;
}
.section-title p {
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 20px;
  color: white;
}
.about .content p {
  font-weight: 500;
  line-height: 28px;
  font-size: 14px;
  color: white;
}
.about .content p:last-child {
  margin-bottom: 0;
}
#about .btn-get-start,
#hero .btn-get-quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 20px 30px 20px 30px;

  margin-bottom: 15px;
  border-radius: 2px;
  transition: 0.5s;
  border-radius: 10px;
}
#about .btn-get-start {
  background: white;
  color: #004c9a;
  margin-right: 10px;
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 60px 0;
}
.why-us .box {
  background: #fff;
  text-align: center;
  padding: 20px 15px;

  box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 11%);
  border-radius: 20px;
  transition: all ease-in-out 0.3s;
  background-color: white;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease 0;
  transition: all 0.5s ease 0;
  transition: all 0.5s ease 0s;
  height: 240px;
}
.why-us .box span {
  background-color: #3ec4ff6e;
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  border-radius: 90px;
  width: 40px;
  position: relative;
  z-index: 3000;
  margin-inline: auto;
}
.why-us .box b {
  background-color: #f8808173;
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  border-radius: 90px;
  width: 40px;
  position: relative;
  z-index: 3000;
  margin-inline: auto;
}
.why-us .box strong {
  background-color: #f3911e85;
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  border-radius: 90px;
  width: 40px;
  position: relative;
  z-index: 3000;
  margin-inline: auto;
}
.why-us .box h4 {
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #004c9a;
  text-align: center;
  padding-top: 2px;
}
.why-us .box p {
  color: #000;
  font-size: 15px;
  margin: 2px;
  padding: 0;
  text-align: center;
  padding-bottom: 30px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box .icons {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  margin-left: 20px;
  background-color: white;
  border-radius: 15px;
}

/*SERVICES ICON BOX END*/

/*SERVICES ICON BOX START*/

.services .icon-box {
  text-align: left;
  padding: 10px 60px 50px 19px;
  transition: all ease-in-out 0.3s;
  background: #fff0;
  box-shadow: 0px 0 6px 0 rgb(0 0 0 / 8%);
  border-start-end-radius: 45px;
  border-bottom-left-radius: 45px;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: center;
}
.services .icon-box .icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background-color: white;
  border-radius: 15px;
}
.services .icon-box .icon:hover {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  margin-left: 20px;
  background-color: white;
  border-radius: 15px;
}
.services .icon-box:hover {
  background: #004c9a;
  color: #ffff;
}
.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box h4 a {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: #004c9a;
}
.services .icon-box h4:hover {
  color: #ffffff;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 600;
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 0;
}
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}
.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.features .icon-box h3 a {
  color: #434175;
  transition: ease-in-out 0.3s;
}
.features .icon-box:hover h3 a {
  color: #5a5af3;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}
.contact .info-box i {
  font-size: 32px;
  color: #5a5af3;
  border-radius: 50%;
  padding: 8px;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  background: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-start-end-radius: 45px;
  border-bottom-left-radius: 45px;
  border-color: #004c9a;

  border-top-style: solid;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 5px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5a5af3;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type='submit'] {
  background: #004c9a;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0px;
  width: 350px;
}
.contact .php-email-form button[type='submit']:hover {
  background: #2f74bad4;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
label {
  display: inline-block;
  padding-top: 10px;
  font-size: 15px;
}
.form-control:disabled,
.form-control:read-only {
  background-color: #ffffff;
  opacity: 1;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f1f1f7;
  min-height: 40px;
  margin-top: 68px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color: #434175;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #565396;
  content: '/';
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
}
#footer .footer-top {
  padding: 259px 30px 10px 90px;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  margin-top: -35px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
}
#footer .footer-top .footer-contact p {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}
#footer .footer-top h4 {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
  margin-top: -20px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #5a5af3;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 17px;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ffffff;
}
#footer .footer-newsletter {
  font-size: 15px;
  margin-top: -20px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter p {
  color: white;
  font-size: 17px;
}
#footer .copyright {
  color: white;
  font-size: 17px;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff;
  color: #434175;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 6%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #004c9a;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 18px;
  margin: 40px 30px 20px 20px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  height: 221px;
  text-align: left;
  transition: 0.3s;
  margin-top: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.testimonials .testimonial-item .stars {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 70px;
  border-radius: 50%;
  border: rgba(0, 0, 0, 0.2) 2px solid;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  text-align: left;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
  text-align: left;
}
.testimonials .testimonial-item p {
  margin: 0 auto 4px auto;
  text-align: left;
  font-size: 14px;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}
@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }
  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
  }
}

/*RESPONSIVE Media Quries*/

@media only screen and (max-width: 768px) {
  #about .btn-get-start {
    background: white;
    color: #004c9a;
    margin-right: 10px;
  }
  #about .btn-get-start,
  #hero .btn-get-quote {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 30px 9px 30px;
    margin-bottom: 15px;
    border-radius: 2px;
    transition: 0.5s;
    border-radius: 10px;
    margin-left: 100px;
  }
  .about .content h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
  }
  .about .content p {
    font-weight: 500;
    line-height: 28px;
    font-size: 14px;
    color: white;
    text-align: center;
  }
  .contact .php-email-form button[type='submit'] {
    background: #004c9a;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 0px;
    width: 270px;
  }
  #footer .footer-top {
    padding: 145px 0 0px 10px;
  }
  .mt-5 {
    margin-top: 1.5rem !important;
  }
  .section-title h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
    padding-bottom: 15px;
    position: relative;
    color: #004c9a;
  }
  .section-title p {
    margin-bottom: 0;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
  }

  .why-us .box span {
    background-color: #3ec4ff6e;
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    border-radius: 90px;
    width: 40px;
    position: relative;
    z-index: 3000;
    margin-inline: auto;
  }
  .why-us .box b {
    background-color: #f8808173;
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    border-radius: 90px;
    width: 40px;
    position: relative;
    z-index: 3000;
    margin-inline: auto;
  }
  .why-us .box strong {
    background-color: #f3911e85;
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    border-radius: 90px;
    width: 40px;
    position: relative;
    z-index: 3000;
    margin-inline: auto;
  }
  .services .icon-box {
    text-align: left;
    transition: all ease-in-out 0.3s;
    background: #fff0;
    box-shadow: 0px 0 6px 0 rgb(0 0 0 / 8%);
    border-start-end-radius: 45px;
    border-bottom-left-radius: 45px;
    padding: 30px;
    margin-top: 40px;
    width: 290px;
    margin-inline: auto;
  }
  .why-us .box {
    padding: 60px 30px;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 11%);
    transition: all ease-in-out 0.3s;
    background-color: white;

    border-radius: 30px;
    width: 300px;
    max-height: 350px;

    margin-inline: auto;
    height: 360px;
  }
  .why-us .box h4 {
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #004c9a;
    text-align: center;
    padding-top: 2px;
  }
  #about .btn-get-start,
  #hero .btn-get-quote {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 20px 30px 20px 30px;
    margin-bottom: 15px;
    border-radius: 2px;
    transition: 0.5s;
    border-radius: 10px;
  }
  .contact .php-email-form {
    background: #fff;
    box-shadow: 0 0 30px rgb(214 215 216 / 60%);
    padding: 30px;
    border-start-end-radius: 45px;
    border-bottom-left-radius: 45px;
    border-color: #004c9a;
    border-top-style: solid;
    width: 100%;
    margin-inline: auto;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 60px;
  }
  #footer .footer-newsletter {
    font-size: 15px;
    margin-top: 13px;
  }
  #footer .copyright {
    color: white;
    font-size: 12px;
  }
  #footer .footer-top .footer-contact p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    padding-top: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    width: 70px;
    border-radius: 50%;
    border: rgba(0, 0, 0, 0.2) 2px solid;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .why-us .box {
    background: #fff;
    text-align: center;
    padding: 20px 0px;
    -webkit-box-shadow: 0 0px 25px rgb(0 0 0 / 7%);

    border-radius: 20px;

    margin-bottom: 30px;

    transition: all 0.5s ease 0;
    transition: all 0.5s ease 0s;
    max-width: 250px;
    margin-left: 55px;
  }
  .why-us .box span {
    background-color: #3ec4ff6e;
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    border-radius: 90px;
    width: 40px;
    position: relative;
    z-index: 3000;
    margin-inline: auto;
  }
  .why-us .box b {
    background-color: #f8808173;
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    border-radius: 90px;
    width: 40px;
    position: relative;
    z-index: 3000;
    margin-inline: auto;
  }
  .why-us .box strong {
    background-color: #f3911e85;
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    border-radius: 90px;
    width: 40px;
    position: relative;
    z-index: 3000;
    margin-inline: auto;
  }

  .contact .php-email-form button[type='submit'] {
    background: #004c9a;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 0px;
    width: 290px;
  }

  #about .btn-get-start,
  #hero .btn-get-quote {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 8px 30px 9px 30px;
    margin-bottom: 15px;
    border-radius: 2px;
    transition: 0.5s;
    border-radius: 10px;
    margin-left: 245px;
  }
  .services .icon-box {
    text-align: left;
    transition: all ease-in-out 0.3s;
    background: #fff0;
    box-shadow: 0px 0 6px 0 rgb(0 0 0 / 8%);
    border-start-end-radius: 45px;
    border-bottom-left-radius: 45px;
    padding: 30px;
    margin-top: 40px;
    width: 290px;
    margin-inline: auto;
  }
  .contact .php-email-form {
    background: #fff;
    box-shadow: 0 0 30px rgb(214 215 216 / 60%);
    padding: 30px;
    border-start-end-radius: 45px;
    border-bottom-left-radius: 45px;
    border-color: #004c9a;
    border-top-style: solid;
    width: 350px;
    margin-inline-start: auto;
  }
  #footer .footer-top .footer-contact p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    padding-top: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    width: 70px;
    border-radius: 50%;
    border: rgba(0, 0, 0, 0.2) 2px solid;
    margin: 0 auto;
    margin-top: -14%;
  }
}

@media (min-width: 1200px) {
  #hero h1 {
    margin: 0;
    font-size: 46px;
    font-weight: 600;
    line-height: 56px;
    color: #004c9a;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 18px;
  }
  #hero h1 span {
    margin: 0;
    font-size: 46px;
    font-weight: 600;
    line-height: 56px;
    color: #ff9800;
    font-family: 'Poppins', sans-serif;
  }
  #hero p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #1b2f46;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 12px;
  }
}

#footer {
  background: url('img/footer-bg.png') center center no-repeat;
  background-size: 100% 100%;
  margin-top: 20px;
}
@media only screen and (max-width: 600px) {
  #footer {
    background: url('img/bg__mobile.png') center center no-repeat !important;
    background-size: 100% 95% !important;
    padding-left: 22px;
  }
}

@media only screen and (max-width: 768px) {
  #footer {
    background: url('img/bg__mobile.png') center center no-repeat !important;
    background-size: 100% 95% !important;
    padding-left: 22px;
  }
}

@media only screen and (min-width: 1200px) {
  #footer .footer-top {
    padding: 259px 30px 10px 90px;
  }
}
.hide{
  display: none;
}
