:root {
  --color1: #48B345;
  --color2: #0159A4;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  scroll-behavior: smooth;
}

body {
  padding-right: 0 !important;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header,
nav {
  display: block;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul ul {
  margin-bottom: 0;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

img {
  vertical-align: middle;
  border-style: none;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button,
input {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button {
  text-transform: none;
}

[type=submit],
button {
  -webkit-appearance: button;
}

[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.collapse:not(.show) {
  display: none;
}



.ptb-100 {
  padding-top: 100px;
}

.mtb-100 {
  margin-top: 100px;
}

.bg-f8f8f8 {
  background-color: #f8f8f8;
}

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: var(--color2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(color1);
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}

.default-btn:hover,
.default-btn:focus {
  color: #ffffff;
}

.default-btn:hover span,
.default-btn:focus span {
  width: 225%;
  height: 562.5px;
}

.about-image {
  position: relative;
  padding-bottom: 90px;
}

.about-image img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0 10px 0 0;
}

.about-content {
  padding-left: 15px;
}

.about-content span {
  display: block;
  color: var(--color1);
  margin-bottom: 10px;
  font-size: 18px;
}

.about-content .hlight {
  text-transform: uppercase;
  margin-bottom: -3px;
  font-size: 26px;
  line-height: 42px;
  color: var(--color2);
  font-weight: 900;
}

.about-content .default-btn {
  margin-top: 10px;
}

.about-inner-area {
  margin-top: 30px;
}

.about-text-box {
  background-color: #ffffff;
  padding: 30px;
  margin-top: 30px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}

.about-text-box h3 {
  margin-bottom: 17px;
  text-transform: uppercase;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  font-weight: 900;
}

.about-text-box h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 1px;
  background-color: var(color1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.about-text-box p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14.5px;
}

.about-text-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color2);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 5px;
}

.about-text-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.about-text-box:hover h3 {
  color: #ffffff;
  border-color: #ffffff;
}

.about-text-box:hover p {
  color: #ffffff;
}

.about-text-box:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }
  .ptb-100 {
    padding-top: 60px;
  }
  .default-btn {
    font-size: 13px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    padding-bottom: 12px;
  }
  .about-image {
    padding-bottom: 0;
  }
  .about-image img {
    width: 100%;
  }
  .about-image img:nth-child(2) {
    position: relative;
    right: 0;
    bottom: 0;
    border-radius: 0;
    margin-top: 20px;
  }
  .about-content {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }
  .about-content span {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .about-content .hlight {
    font-size: 25px;
  }
  .about-inner-area {
    margin-top: 10px;
  }
  .about-text-box {
    padding: 25px;
  }
  .about-text-box h3 {
    font-size: 16px;
  }
  .about-text-box p {
    font-size: 13px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image {
    padding-bottom: 90px;
  }
  .about-image img {
    width: auto;
  }
  .about-image img:nth-child(2) {
    position: absolute;
    border-radius: 0 10px 0 0;
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }
  .default-btn {
    font-size: 14px;
  }
  .ptb-100 {
    padding-top: 70px;
  }
  .about-content {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }
  .about-content span {
    font-size: 16px;
  }
  .about-content .hlight {
    font-size: 35px;
  }
}

.single-services-box {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  height: 260px;
  z-index: 1;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.single-services-box .icon {
  font-size: 65px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  margin-top: -15px;
  margin-bottom: 12px;
}

.single-services-box .icon .icon-bg img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto !important;
  display: inline-block !important;
  z-index: -1;
}

.single-services-box .h3 {
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
}

.single-services-box .h3 a {
  display: inline-block;
  color: #144168 !important;
}

.single-services-box .h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  background-color: #e1dfe1;
  height: 1px;
  width: 70px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .read-more-btn {
  display: inline-block;
  margin-top: 10px;
  color: var(--color2);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}

.single-services-box .read-more-btn:hover {
  letter-spacing: .5px;
}

.single-services-box .box-shape img {
  position: absolute;
  left: 0;
  top: 0;
  width: auto !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block !important;
}

.single-services-box .box-shape img:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.single-services-box:hover {
  background: var(--color2);
}

.single-services-box:hover .icon {
  color: #4e97de;
}

.single-services-box:hover .h3 {
  color: #ffffff;
}

.single-services-box:hover .h3 a {
  color: #ffffff !important;
}

.single-services-box:hover p {
  color: #ffffff;
}

.single-services-box:hover .read-more-btn {
  color: #4e97de;
}

.single-services-box:hover .box-shape img:nth-child(1) {
  opacity: 0;
  visibility: hidden;
}

.single-services-box:hover .box-shape img:nth-child(2) {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }
  .single-services-box {
    padding: 25px;
  }
  .single-services-box .icon {
    font-size: 50px;
    margin-top: -12px;
  }
  .single-services-box .h3 {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .single-services-box .read-more-btn {
    margin-top: 5px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }
  .single-services-box .icon {
    font-size: 55px;
    margin-top: -13px;
  }
  .single-services-box .h3 {
    font-size: 18px;
  }
  .single-services-box .read-more-btn {
    font-size: 14px;
  }
}

.why-choose-us-area .container-fluid {
  padding: 0;
}

.why-choose-us-area .container-fluid .row {
  margin: 0;
}

.why-choose-us-area .container-fluid .row .col-lg-5, .why-choose-us-area .container-fluid .row .col-lg-7 {
  padding: 0;
}

.why-choose-us-content {
  background-color: var(--color2);
  background-image: url(../img/why-choose-bg.jpg);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-choose-us-content .content {
  max-width: 705px;
  overflow: hidden;
  padding-left: 70px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.why-choose-us-content .content .title {
  margin-bottom: 10px;
}

.why-choose-us-content .content .title .sub-title {
  color: #4e97de;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.why-choose-us-content .content .title h2 {
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 900;
  line-height: 15px;
}

.why-choose-us-content .content .title p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
}

.why-choose-us-content .content .features-list {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 0;
  margin-top: 0;
}

.why-choose-us-content .content .features-list li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  color: #e5e5e5;
  position: relative;
  padding-left: 82px;
  padding-right: 15px;
  padding-top: 30px;
}

.why-choose-us-content .content .features-list li .icon {
  position: absolute;
  left: 15px;
  top: 35px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  color: #ffffff;
  background-color: #4e97de;
  text-align: center;
  font-size: 28px;
}

.why-choose-us-content .content .features-list li span {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
}

.why-choose-us-content .content .features-list li:hover .icon {
  background-color: #ffffff;
  color: #4e97de;
}

.why-choose-us-image {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-choose-us-image img {
  width: auto !important;
  display: none !important;
}

.why-choose-us-slides {
  height: 100%;
}

.why-choose-us-slides .owl-stage-outer {
  width: 100%;
  height: 100%;
}

.why-choose-us-slides .owl-stage-outer .owl-stage {
  height: 100%;
}

.why-choose-us-slides .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}

.why-choose-us-slides.owl-theme .owl-nav {
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.why-choose-us-slides.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
  font-size: 35px;
}

.why-choose-us-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 25px;
}

.why-choose-us-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #4e97de;
  background-color: transparent;
}

.why-choose-us-slides.owl-theme .owl-dots {
  line-height: .01;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  margin-top: 0;
}

.why-choose-us-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 2px;
  margin: 0 3px;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
}

.why-choose-us-slides.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #4e97de;
}

.why-choose-us-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: #4e97de;
  width: 25px;
}

.why-choose-us-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 767px) {
  .why-choose-us-image {
    height: auto;
    background-image: unset !important;
  }
  .why-choose-us-image img {
    width: auto !important;
    display: inline-block !important;
  }
  .why-choose-us-slides {
    height: auto;
  }
  .why-choose-us-slides .owl-stage-outer {
    height: auto;
  }
  .why-choose-us-slides .owl-stage-outer .owl-stage {
    height: auto;
  }
  .why-choose-us-slides .owl-stage-outer .owl-stage .owl-item {
    height: auto;
  }
  .why-choose-us-slides.owl-theme .owl-nav [class*=owl-] {
    left: 15px;
    font-size: 25px;
  }
  .why-choose-us-slides.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 15px;
  }
  .why-choose-us-content {
    background-image: unset !important;
  }
  .why-choose-us-content .content {
    max-width: 100%;
    padding-left: 15px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 15px;
  }
  .why-choose-us-content .content .title {
    text-align: center;
  }
  .why-choose-us-content .content .title .sub-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .why-choose-us-content .content .title h2 {
    font-size: 25px;
  }
  .why-choose-us-content .content .title p {
    font-size: 13px;
  }
  .why-choose-us-content .content .features-list {
    text-align: center;
    margin-left: -10px;
    margin-right: -10px;
  }
  .why-choose-us-content .content .features-list li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .why-choose-us-content .content .features-list li .icon {
    position: relative;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .why-choose-us-content .content .features-list li span {
    font-size: 13px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .why-choose-us-content .content .features-list {
    text-align: left;
  }
  .why-choose-us-content .content .features-list li {
    padding-left: 75px;
  }
  .why-choose-us-content .content .features-list li .icon {
    position: absolute;
    left: 15px;
    top: 35px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .why-choose-us-content .content {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }
  .why-choose-us-image {
    height: auto;
    background-image: unset !important;
  }
  .why-choose-us-image img {
    width: auto !important;
    display: inline-block !important;
  }
  .why-choose-us-slides {
    height: auto;
  }
  .why-choose-us-slides .owl-stage-outer {
    height: auto;
  }
  .why-choose-us-slides .owl-stage-outer .owl-stage {
    height: auto;
  }
  .why-choose-us-slides .owl-stage-outer .owl-stage .owl-item {
    height: auto;
  }
  .why-choose-us-content .content {
    max-width: 100%;
    padding-left: 35px;
    padding-top: 50px;
    padding-bottom: 70px;
    padding-right: 70px;
  }
  .why-choose-us-content .content .title {
    text-align: center;
  }
  .why-choose-us-content .content .title .sub-title {
    font-size: 16px;
  }
  .why-choose-us-content .content .title h2 {
    font-size: 35px;
  }
  .why-choose-us-content .content .title p {
    font-size: 15px;
  }
  .why-choose-us-content .content .features-list li span {
    font-size: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-choose-us-content .content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.subscribe-area {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #0c4776;
}

.subscribe-content h2 {
  margin-bottom: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 900;
}

.subscribe-content p {
  color: #ffffff;
  opacity: 0.9;
  margin-top: 10px;
  margin-bottom: 0;
}

.subscribe-form {
  padding-left: 30px;
}

.subscribe-form form {
  position: relative;
}

.subscribe-form form .input-newsletter {
  display: block;
  width: 100%;
  color: #002e5b;
  height: 65px;
  border-radius: 5px;
  border: none;
  padding-left: 15px;
  outline: 0;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.subscribe-form form .input-newsletter::-webkit-input-placeholder {
  color: #99afc3;
}

.subscribe-form form .input-newsletter:-ms-input-placeholder {
  color: #99afc3;
}

.subscribe-form form .input-newsletter::-ms-input-placeholder {
  color: #99afc3;
}

.subscribe-form form .input-newsletter::placeholder {
  color: #99afc3;
}

.subscribe-form form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--color1);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  height: 55px;
  line-height: 55px;
  padding: 0 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.subscribe-form form button:hover {
  color: #ffffff;
  background-color: #000000;
}

.subscribe-form #validator-newsletter {
  color: #ffffff;
  position: absolute;
  left: 0;
  bottom: -32px;
}

.footer-area {
  background-color: var(--color2);
  padding-top: 70px;
  position: relative;
  z-index: 1;
}

.footer-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-line.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget h3 {
  margin-bottom: 30px;
  color: #ffffff;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #0c4776;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
}

.single-footer-widget h3::before {
  bottom: -1px;
  left: 0;
  width: 55px;
  height: 1px;
  background-color: var(color1);
  content: '';
  position: absolute;
}

.single-footer-widget .logo a {
  display: inline-block;
}

.single-footer-widget .logo p {
  color: #ebe7e7;
  margin-bottom: 0;
  margin-top: 15px;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 20px;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-right: 3px;
}

.single-footer-widget .social li a {
  display: inline-block;
  background-color: var(color1);
  color: #002e5b;
  width: 38px;
  font-size: 17px;
  height: 38px;
  line-height: 39px;
  border-radius: 50%;
  text-align: center;
}

.single-footer-widget .social li a:hover {
  background-color: #ffffff;
  color: #002e5b;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .footer-quick-links {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  margin-top: -12px;
}

.single-footer-widget .footer-quick-links li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 12px;
}

.single-footer-widget .footer-quick-links li a {
  display: inline-block;
  color: #ebe7e7;
  text-transform: uppercase;
  font-size: 14px;
}

.single-footer-widget .footer-quick-links li a:hover {
  color: var(color1);
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li {
  color: #ebe7e7;
  font-size: 15px;
  margin-bottom: 12px;
}

.single-footer-widget .footer-contact-info li span {
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  position: relative;
}

.single-footer-widget .footer-contact-info li a::before {
  width: 100%;
  height: 1px;
  background-color: var(color1);
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: var(color1);
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info li:last-child a::before {
  opacity: 1;
  visibility: visible;
}

.copyright-area {
  margin-top: 40px;
  border-top: 1px solid #0c4776;
  padding-top: 25px;
  padding-bottom: 25px;
}

.copyright-area p {
  color: #ebe7e7;
  font-size: 15px;
}

.copyright-area p a {
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
}

.copyright-area p a:hover {
  color: var(color1);
}

.copyright-area ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: right;
}

.copyright-area ul li {
  display: inline-block;
  color: #ebe7e7;
  font-size: 15px;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}

.copyright-area ul li a {
  display: inline-block;
  color: #ebe7e7;
}

.copyright-area ul li a:hover {
  color: var(color1);
}

.copyright-area ul li::before {
  content: '';
  position: absolute;
  top: 5px;
  right: -13px;
  width: 1px;
  height: 14px;
  background-color: #ffffff;
}

.copyright-area ul li:last-child {
  margin-right: 0;
}

.copyright-area ul li:last-child::before {
  display: none;
}

.copyright-area ul li:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }
  .subscribe-area {
    text-align: center;
  }
  .subscribe-content h2 {
    font-size: 25px;
  }
  .subscribe-form {
    padding-left: 0;
    margin-top: 20px;
  }
  .subscribe-form form .input-newsletter {
    height: 60px;
    font-size: 15px;
  }
  .subscribe-form form button {
    position: relative;
    right: 0;
    top: 0;
    font-size: 14px;
    margin-top: 10px;
    display: block;
    width: 100%;
  }
  .footer-area {
    padding-top: 60px;
  }
  .single-footer-widget h3 {
    font-size: 16px;
  }
  .single-footer-widget .footer-contact-info li {
    font-size: 14px;
  }
  .single-footer-widget .footer-quick-links li a {
    font-size: 13px;
  }
  .copyright-area {
    margin-top: 30px;
    text-align: center;
  }
  .copyright-area p {
    font-size: 14px;
  }
  .copyright-area ul {
    text-align: center;
    margin-top: 15px;
  }
  .copyright-area ul li {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .subscribe-form form button {
    position: absolute;
    right: 2.3px;
    top: 2.3px;
    margin-top: 0;
    display: inline-block;
    width: auto;
  }
  .copyright-area {
    text-align: left;
  }
  .copyright-area ul {
    text-align: right;
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }
  .subscribe-content {
    margin-bottom: 20px;
    text-align: center;
  }
  .subscribe-content h2 {
    font-size: 30px;
  }
  .subscribe-form {
    padding-left: 0;
  }
  .single-footer-widget h3 {
    font-size: 18px;
  }
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h2 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

img {
  vertical-align: middle;
  border-style: none;
}

h2 {
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
}

@media print {
  *, ::after, ::before {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  img {
    page-break-inside: avoid;
  }
  h2, p {
    orphans: 3;
    widows: 3;
  }
  h2 {
    page-break-after: avoid;
  }
}

.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-youtube:before {
  content: "\f167";
}

.fab {
  font-family: "Font Awesome 5 Brands";
}

[class^="flaticon-"]:before, [class^="flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
}

.flaticon-cross-out:before {
  content: "\f10d";
}

a {
  outline: 0 !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #002e5b;
  text-decoration: none;
}

a:hover {
  color: #4e97de;
  text-decoration: none;
}

p {
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 15px;
}

p:last-child {
  margin-bottom: 0;
}

h2 {
  color: #002e5b;
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
}

.banner {
  margin-top: 134px;
}

.mobile {
  display: none !important;
}

.banner {
  position: relative;
  border-bottom: 5px solid var(--color1);
}
.modal-box .modal{ top: 90px !important; }

@media (max-width: 768px) {
  .dasktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .banner {
    margin-top: 95px;
  }
}
@media (max-width: 500px) {
   
  .modal-box .modal {
    top: 0px !important;
}
.top-header{
  display: none;
}
}

.banner-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}


.why-choose-us-content .content {
  max-width: 1083px;
  overflow: hidden;
  padding-left: 62px;
  padding-top: 6px;
  padding-bottom: 23px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff0;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.overflow-y {
  height: 560px;
  overflow-y: scroll;
}

.mfp-no-margins img.mfp-img {
  padding: 0;
}

.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}

.mfp-no-margins .mfp-container {
  padding: 0;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  /* -webkit-backface-visibility: hidden; */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

::-webkit-scrollbar {
  width: 1em;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color2);
  outline: 1px solid slategrey;
  border-radius: 20px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .why-choose-us-content .content {
    padding-left: 0;
    padding-top: 10px;
  }
  ::-webkit-scrollbar {
    width: 0.7em;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .why-choose-us-content .content {
    padding-left: 0;
    padding-top: 10px;
  }
  .why-choose-us-content .content {
    padding-right: 16px;
  }
}

@media (max-width: 767px) {
  .why-choose-us-content .content {
    max-width: 1083px;
    overflow: hidden;
    padding-left: 0;
    padding-top: 6px;
    padding-bottom: 0;
    padding-right: 0;
  }
  .list-group-item {
    padding: .75rem .25rem;
  }
  .list-group-flush .list-group-item {
    font-size: 13px;
  }
  .single-services-box {
    margin-bottom: 5px;
  }
  .mtb-100 {
    margin-top: 60px;
  }
  .copyright-area {
    margin-top: 0;
    text-align: center;
  }
  .table {
    font-size: 13px;
  }
  .about-content {
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
  }
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: var(--color2) !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.is-sticky .pearo-nav .navbar {
  background-color: #144168;
  -webkit-box-shadow: -10px 10px rgba(80, 184, 69, 0.71);
  box-shadow: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-right: 25px;
  padding-top: 0;
  padding-left: 25px;
  padding-bottom: 0;
}

.banner .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.banner .owl-theme .owl-dots .owl-dot.active span {
  width: 70px;
  height: 10px;
  background: var(--color1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.banner .owl-theme .owl-dots .owl-dot span {
  background: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.banner .owl-theme .owl-dots .owl-dot {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
          align-items: center !important;
}

.text-center {
  text-align: center !important;
}

@media print {
  *, ::after, ::before {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  img {
    page-break-inside: avoid;
  }
  h2, p {
    orphans: 3;
    widows: 3;
  }
  h2 {
    page-break-after: avoid;
  }
  .container {
    min-width: 992px !important;
  }
}

a {
  outline: 0 !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #002e5b;
  text-decoration: none;
}

a:hover {
  color: #4e97de;
  text-decoration: none;
}

p {
  color: #666666;
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 15px;
}

h2 {
  color: #002e5b;
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
}

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #002e5b;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #4e97de;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}

.default-btn:hover, .default-btn:focus {
  color: #ffffff;
}

.default-btn:hover span, .default-btn:focus span {
  width: 225%;
  height: 562.5px;
}

.join-area {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.join-area::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  z-index: -1;
  background-color: #4e97de;
}

.join-content {
  position: relative;
  background-color: #4e97de;
  max-width: 580px;
  top: 45px;
}

.join-content h2 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 42px;
  font-weight: 900;
}

.join-content p {
  color: #ffffff;
  opacity: 0.95;
}

.join-content .default-btn {
  margin-top: 10px;
}

.join-content .default-btn span {
  background-color: #ffffff;
}

.join-content .default-btn:hover, .join-content .default-btn:focus {
  color: #002e5b;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }
  .default-btn {
    font-size: 13px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    padding-bottom: 12px;
  }
  .join-area {
    margin-top: 60px;
    padding-top: 60px;
  }
  .join-area .col-lg-5 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .join-area .col-lg-7 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .join-area::before {
    height: 100%;
  }
  .join-content {
    margin-bottom: 30px;
    text-align: center;
    top: 0;
    max-width: 100%;
  }
  .join-content h2 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }
  .default-btn {
    font-size: 14px;
  }
  .join-area {
    margin-top: 70px;
    padding-top: 70px;
  }
  .join-area .col-lg-5 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .join-area .col-lg-7 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .join-area::before {
    height: 100%;
  }
  .join-content {
    text-align: center;
    top: 0;
    margin-left: auto;
    margin-bottom: 30px;
    margin-right: auto;
  }
  .join-content h2 {
    font-size: 35px;
  }
}

.ctr-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #3aade1;
  padding-top: 150px;
  padding-bottom: 150px;
}

.ctr-area .shape {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.ctr-content {
  border-radius: 5px;
  padding: 50px;
  position: relative;
  z-index: 2;
  max-width: 590px;
  background-color: #002e5b;
}

.ctr-content h2 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 42px;
  font-weight: 900;
}

.ctr-content p {
  color: #ffffff;
  font-size: 16px;
  margin-top: 5px;
}

.ctr-content .default-btn {
  margin-top: 15px;
  background-color: #3aade1;
}

.ctr-content .default-btn span {
  background-color: #ffffff;
}

.ctr-content .default-btn:hover, .ctr-content .default-btn:focus {
  color: #3aade1;
}

.ctr-image {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 13px;
  }
  .default-btn {
    font-size: 13px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    padding-bottom: 12px;
  }
  .ctr-area {
    padding-top: 60px;
    padding-bottom: 190px;
  }
  .ctr-content {
    padding: 25px;
    text-align: center;
    max-width: 100%;
  }
  .ctr-content h2 {
    font-size: 25px;
  }
  .ctr-content p {
    font-size: 13px;
    margin-top: 5px;
  }
  .ctr-content .default-btn {
    margin-top: 10px;
  }
  .ctr-image {
    position: absolute;
    right: 0;
    top: auto;
    -webkit-transform: unset;
    transform: unset;
    bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 14px;
  }
  .default-btn {
    font-size: 14px;
  }
  .ctr-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .ctr-content h2 {
    font-size: 35px;
  }
}

.logo .logo-white {
  display: none;
}


.modal-closes {
  position: absolute;
  top: -14px;
  right: 0;
  z-index: 3;
  font-size: 47px !important;
  color: red !important;
}
.offer {
  position: fixed;
  right: -65px;
  top: 20%;
  z-index: 99;
  transition: 0.6s ease !important;
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  border-radius: 5px 0 0 5px !important;

}
.offer:hover {
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 99;
}

.ucase{text-transform:uppercase;}
.white{color:#fff;}
.ifeatures{width:500px;padding:50px;background:#144168;box-shadow:5px 5px 10px rgba(0,0,0,.5);}
.ifeatures ul{display:block;margin:0;padding:0;font-size:1.2em;list-style:none;}
.ifeatures ul li{list-style:none;display:block;}
.ifeatures h1{font-size:2em;padding-bottom:15px;margin-bottom:10px;position:relative;}
.ifeatures h1:after{position:absolute;left:0;bottom:0;width:100px;height:5px;background:#4db848;content:"";}
.btn{border-radius:0;}
.btn-danger{background:#cd2122!important;}
.nopad{padding:0!important;}
.nomar{margin:0!important;}
@media screen and (min-width: 240px) and (max-width: 786px){
.ifeatures{padding:25px;position:relative;margin-top:0px;top:0;left:0;right:0;width:auto;background:#005aab;}
.ifeatures ul{font-size:1.2em;}
.ifeatures h1{font-size:1.5em;}
.show-modal{font-size: 12px !important;}
}


.residential-img img{
position: relative;
width: 100%;
overflow: hidden;
transform: scale(1);
transition: all 0.5s ease-in-out;
}

.residential-img a{
  display: block;
  overflow: hidden;
}

.residential-text{
  position: absolute;
  top: 50%;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
}
.residential-text p{
  color: #fff;
  font-size: 25px;
  text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
  transition: all 0.5 ease-in;
}
.residential-img a:hover img{
  transform: scale(1.2);
}
.residential-img a:hover .residential-text p{
  color: #ffffff;
  background: #3fa751;
  padding: 6px 12px;
  border-radius: 8px;
  text-shadow: 0 0 black;
}

.footer-mobile{
  position: fixed;
  width: 100%;
  display: none;
  bottom: 0px;  
  z-index: 99; 
}
.footer-mobile-item{
  width: 50%;
  text-align: center;
}
.footer-call{
  background: #133c7c ;
  display: block;   
  color: #fff;
  height: 51px;
  align-items: center;
  display: flex;
  justify-content: center;
  border-right: 2px;
  font-size: 15px;
}
.footer-btn{
  background: #48b345;
  display: block;    
  color: #fff;
  height: 51px;
  align-items: center;
  display: flex;
  justify-content: center;
  border-right: 2px;   
}
.footer-call i,.footer-btn i{
margin-right: 5px;
}
#Container1 .mix {
  display: none;
}
.mix-item-menu {
  margin-bottom: 40px;
  display: inline-block;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
}

.mix-item-menu button.active {
  color: #0159a4;
  position: relative;
  z-index: 1;
}

.mix-item-menu button {
  padding: 8px 20px;
  margin: 5px;
  border: none;
  background: transparent;
  border-radius: 3px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.mix-item-menu button.active::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 2px;
  width: 30px;
  background-color: #0159a4;
  margin-left: -15px;
}



@media only screen and (max-width: 768px) {
  .footer-mobile{
      display: flex;
  }
  .residential-img{
    margin-bottom: 20px;
  }
  
}