@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background: #f2f5ea;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.btn {
  cursor: pointer;
  border-radius: 0px;
  border: 2px solid transparent;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999999;
  -webkit-box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
}
.btn.btn-white {
  background: #fff;
  color: #000;
}
.btn.btn-primary {
  background: #597a9d;
  border: 2px solid #597a9d;
  color: #fff;
}
.main-navbar-light {
  background: transparent !important;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  top: 10px;
}
.navbar-brand {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 30px;
  font-family: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}
.logo {
  background: url("../images/logo_inverse.svg");
  /* filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); */
  /*filter:brightness(0) invert(1);*/
  height: 80px;
  width: 265px;
  background-repeat: no-repeat;
}

.logo {
  background: url("../logo.svg");
  /*filter:invert(1);*/
  height: 160px;
  width: 265px;
  background-repeat: no-repeat;
  margin-top: 10px;
  width: 380px;
}
/* @media screen and (max-width: 770px) and (min-width: 440px) {
  .logo {
    height: 160px;
  }
} */
@media screen and (max-width: 440px) {
  .logo {
    width: 265px;
    background-position: center;
  }
}
.main-navbar-light .navbar-toggler {
  border: none;
  color: #000 !important;
  cursor: pointer;
  padding-right: 0px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.main-navbar-light .navbar-nav > .nav-item > .nav-link {
  font-size: 14px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  color: #000;
  opacity: 1 !important;
}
.main-navbar-light .navbar-nav > .nav-item.active > a {
  color: #000;
  font-weight: 700;
  position: relative;
}
.main-navbar-light.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  margin-top: -130px;
  background: #fff !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 22;
}
.main-navbar-light.scrolled.awake {
  margin-top: 0px;
  -webkit-transition: 0.3s all ease-out;
  -o-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
.main-navbar-light.scrolled .navbar-brand {
  color: #000;
}
.main-navbar-light.scrolled .nav-link {
  padding-top: 0.9rem !important;
  padding-bottom: 0.9rem !important;
  color: #000 !important;
}

.main-navbar-light .navbar-nav > .nav-item.active > a {
  color: #000;
  position: relative;
}
.main-navbar-light.scrolled .nav-item.active > a {
  color: #000 !important;
}
.main-navbar-light .navbar-nav > .nav-item.active > a:before {
  content: "";
  height: 2px;
  background: #000;
  left: 20px;
  right: 20px;
  position: absolute;
  bottom: 20px;
}
.main-navbar-light.scrolled .navbar-nav > .nav-item.active > a:before {
  content: "";
  height: 2px;
  background: #000;
  left: 20px;
  right: 20px;
  position: absolute;
  bottom: 0px;
}
.main-navbar-light.scrolled.awake .logo {
  background: url("../images/logo_inverse.svg");
  filter: invert(1);
  height: 80px;
  width: 265px;
  background-repeat: no-repeat;
}
.main-navbar-light.scrolled .navbar-toggler {
  border: none;
  color: #000 !important;
  cursor: pointer;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.1em;
}
/********Hero-Section************/
.hero-section {
  background-size: cover;
  background-color: #ccc;
  padding: 0;
  position: relative;
}
.hero-section,
.hero-section .row {
  min-height: 700px;
  height: 100vh;
}
.hero-section-sm,
.hero-section-sm .row {
  min-height: 800px;
  height: 80vh;
}

.hero-section .heading {
  color: #fff;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 50px;
  font-family: "Dosis", sans-serif;
}
.hero-section-sm .heading {
  font-size: 70px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .hero-section .heading {
    font-size: 80px;
  }
}
@media (min-width: 768px) {
  .hero-section .heading {
    font-size: 80px;
  }
}
.hero-section {
  background: 
    /* top, transparent red */ linear-gradient(
      rgba(1, 0, 102, 0.3),
      rgba(1, 0, 102, 0.5)
    ),
    /* bottom, image */ url(../images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
/* .hero-section:before{
    
        content: "";
        position: absolute;
        left: 0; right: 0;
        top: 0; bottom: 0;
        background: rgba(0,0,0,.5);
    overflow: hidden;
    z-index: 2;
} */
/********Hero-Section************/
/*****Services******/
.section-services {
  padding-top: 110px;
  padding-bottom: 120px;
  font-family: "Poppins", sans-serif;

  color: #211f24;
}

/* .section-services .header-section {
  margin-bottom: 35px;
} */

.section-services .header-section .title {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background-color: #597a9d;
}

.section-services .header-section .title:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 3px;
  background-color: #597a9d;
}

.section-services .header-section .title span {
  color: #000;
}

.section-services .header-section .description {
  color: #6f6f71;
}

.section-services .single-service {
  margin-top: 40px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.section-services .single-service .part-1 {
  padding: 40px 40px 25px;
}

.section-services .single-service .part-1 i {
  margin-bottom: 25px;
  font-size: 50px;
  color: #010066;
}

.section-services .single-service .part-1 .title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.8em;
}

.section-services .single-service .part-2 {
  padding: 30px 40px 40px;
}

.section-services .single-service .part-2 .description {
  margin-bottom: 22px;
  color: #6f6f71;
  font-size: 14px;
  line-height: 1.8em;
}

.section-services .single-service .part-2 a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.section-services .single-service .part-2 a i {
  margin-right: 10px;
  color: #010066;
}
/*****Services******/
/******Page-Section-1************/
.page-section-1 {
  padding: 100px 0;
}

.section-heading-1 {
  text-transform: uppercase;
}

.section-heading-1 .section-heading-upper {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.section-heading-1 .section-heading-lower {
  display: block;
  font-size: 3rem;
  font-weight: 100;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.bg-faded {
  background-color: rgba(255, 255, 255, 0.85);
}
.intro-1 {
  position: relative;
}

@media (min-width: 992px) {
  .intro-1 .intro-img {
    width: 75%;
    float: right;
  }
  .intro-1 .intro-text {
    left: 0;
    width: 60%;
    margin-top: 3rem;
    position: absolute;
  }
  .intro-1 .intro-text .intro-button {
    width: 100%;
    left: 0;
    position: absolute;
    bottom: -2rem;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .intro-1 .intro-text {
    width: 45%;
  }
}
.page-section-1.overlay-color-2 {
  position: relative;
}

.page-section-1.overlay-color-2:before {
  position: absolute;
  content: "";
  background: #fff;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}

/******Page-Section-1************/
.slant-1 {
  height: 20px;
  position: relative;
  z-index: 4;
}
.slant-1:before {
  position: absolute;
  width: 200%;
  content: "";
  background: #fff;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(-5deg) translateX(-20%);
  -ms-transform: rotate(-5deg) translateX(-20%);
  transform: rotate(-5deg) translateX(-20%);
}
/*******Section-1***********/
.site-section-1 {
  padding: 4em 0;
}
.left-1 {
  background: #508465;
  padding: 50px;
  color: #000;
}
.left-1 .left-text-1 {
  font-size: 30px;
}
.left-1 .left-text-2 {
  font-size: 70px;
  line-height: 1;
}
/*******Section-1***********/
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.about-title {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  font-size: 32px;
  margin-top: -80px;
  z-index: 9;
}
.about-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background-color: #597a9d;
}
.about-title:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 3px;
  background-color: #597a9d;
}

/********Hero Area********/
.hero__caption h1 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #002d5b;
  color: #2c3637;
  line-height: 1.2;
  margin-bottom: 29px;
}
.hero__caption p {
  color: #464d65;
  margin-bottom: 42px;
  padding-right: 100px;
}
.hero-btn {
  padding: 18px 43px;
}
.hero-section {
  background: none;
  position: relative;
}
p.lead:first-letter {
  margin-left: 50px;
  font-size: 2rem;
  font-weight: bold;
}
p.lead {
  font-size: 1.1em;
}
.item {
  border: solid #a2a697 8px;
  padding: 30px;
  margin-top: 30px;
  position: relative;
}
.item-1 {
  border: solid #597a9d 10px;
  padding: 25px;
  margin-top: 30px;
}
.item:before {
  position: absolute;
  width: 50px;
  height: 50px;
}

.item-head .title {
  margin-top: -45px;
  background-color: #f2f5ea;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  width: fit-content;
  padding: 0 20px;
}

.footer-section {
  background: #fefff7;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #597a9d;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  margin-left: 50px;
  margin-bottom: 30px;
}
.cta-text h4 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #000;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #000;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.google-bg {
  background: #dd4b39;
}
.footer-widget-heading h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #597a9d;
}
.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #597a9d;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #f2f5ea;
  border: 1px solid #f2f5ea;
  color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #597a9d;
  padding: 13px 20px;
  border: 1px solid #597a9d;
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #597a9d;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #597a9d;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}
.mb-30 {
  padding: 20px;
}
.intro-button {
  text-align: center;
}
.payment-qr {
  text-align: center;
  margin-top: 30px;
}
.header-section .title {
  font-size: 1.6em;
}
.section-services {
  padding-top: 110px;
  padding-bottom: 120px;
  font-family: "Poppins", sans-serif;

  color: #211f24;
}

.contact-section .header-section .title {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-section .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16%;
  transform: translateX(-50%);
  width: 110px;
  height: 1px;
  background-color: #597a9d;
}

.contact-section .header-section .title:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 16%;
  transform: translateX(-50%);
  width: 45px;
  height: 3px;
  background-color: #597a9d;
}

.contact-section .header-section .title span {
  color: #000;
}

.contact-section .header-section .description {
  color: #6f6f71;
}
.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: solid #ccccc5;
  border-radius: 0px;
  margin-bottom: 10px;
  padding: 20px;
  background-color: #f6f6f2;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgb(138, 123, 123);
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: rgb(63, 37, 37);
  font-size: 14px !important;
}
*::-webkit-input-placeholder {
  color: rgb(63, 37, 37);
  font-size: 14px !important;
}
*:-ms-input-placeholder {
  color: rgb(63, 37, 37);
  font-size: 14px !important;
}
*:-moz-placeholder {
  color: rgb(63, 37, 37);
  font-size: 14px !important;
}
.form-control:focus {
  border: none;
  border-bottom: solid rgba(231, 90, 124, 0.8);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset,
    0 0 8px rgba(231, 90, 124, 0.6);
  outline: 0 none;
}
.navbar-collapse {
  background: #a2a697;
}

@media (min-width: 768px) {
  .navbar-collapse {
    background: transparent;
  }
  .hero__caption h1 {
    font-size: 70px;
  }
  .item {
    border: solid #a2a697 8px;
    padding: 30px;
    margin-top: -40px;
    margin-left: -50px;
    position: relative;
  }
  .item-1 {
    border: solid #597a9d 10px;
    padding: 25px;
    margin-top: -40px;
    margin-left: -50px;
  }
}
@media (min-width: 1024px) {
  .hero__caption h1 {
    font-size: 60px;
  }
  .slant-1:before {
    top: -140px;
  }
  .intro-button {
    text-align: left;
  }
  .contact-details {
    border-right: solid #000;
    margin: auto;
  }
}
@media (min-width: 1100px) {
  .hero__caption h1 {
    font-size: 60px;
  }
}

.hero-m-b {
  margin: auto 0;
}

@media screen and (max-width: 1000px) and (min-width: 750px) {
  .hero-section-sm,
  .hero-section-sm .row {
    margin-top: 150px;
  }
  .hero__caption h1 {
    font-size: 50px;
  }
  .logo {
    background-position: center;
    width: 420px;
  }
}

@media screen and (max-width: 750px) and (min-width: 440px) {
  .hero-section-sm,
  .hero-section-sm .row {
    margin-top: 80px;
  }
  .hero__caption h1 {
    font-size: 40px;
  }
  .logo {
    background-position: center;
    width: 420px;
  }
}
@media screen and (max-width: 440px) {
  .hero-section-sm,
  .hero-section-sm .row {
    margin-top: 100px;
  }
  .hero__caption h1 {
    font-size: 35px;
  }
}
.contact-section .header-section .description {
  color: #2a2828;
}
.about-title {
  margin-top: 80px;
}

.item-icon {
  float: left;
  height: 100px;
  /* fill: green; */
  /* filter: invert(48%) sepia(99%) saturate(1757%) hue-rotate(313deg) brightness(96%) contrast(89%); */
  filter: invert(42%) sepia(33%) saturate(748%) hue-rotate(248deg)
    brightness(90%) contrast(86%);
  margin-right: 20px;
}
.icon-right {
  float: right;
}
.lead {
  margin: 70px 0;
}
