@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  font: 16px "Roboto";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.cursor {
	cursor: pointer;
}

section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.container {
  overflow: hidden;
}

/*-----------------------------------------------
|   Text alignment
-----------------------------------------------*/
.text-justify {
  text-align: justify !important;
}

.text-soft-primary {
  color: #e6a300;
}

/*-----------------------------------------------
|   Backgrounds
-----------------------------------------------*/
.bg-holder {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}

.bg-holder.--hero {
  height: 90vh;
  background-color: #e6a300;
}

/* -------------------------------------------------------------------------- */
/*                                  Position                                  */
/* -------------------------------------------------------------------------- */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  position: relative;
}

.all-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* -------------------------------------------------------------------------- */
/*                                    Flex                                    */
/* -------------------------------------------------------------------------- */
.flex-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-between-center {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-end-center {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.btn {
  padding: 8px 25px;
  border-color: #1f2c5c;
  background-color: #1f2c5c;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
}

.btn:hover {
  border-color: #1f2c5c;
  background-color: #1f2c5c;
  opacity: 0.8;
}

h1 {
  font-family: "Lato";
  color: #337528;
}

h2.fw-bold {
	color: #337528;
}

/* Header and Nav */
.navbar {
  padding: 0;
  -webkit-transition: background-color ease 0.2s;
  transition: background-color ease 0.2s;
}

.navbar .container {
  overflow: visible;
}

.navbar-brand {
  display: block;
}

@media (max-width: 992px) {
  .navbar-brand {
    padding: 15px 0;
  }
}

.navbar-brand > img {
  width: auto;
  height: 120px;
}

.navbar-collapse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navbar-collapse .nav-item {
  position: relative;
}

.navbar-collapse .nav-item:hover > ul.submenu {
  visibility: visible;
  opacity: 1;
  top: 75px;
}

.navbar-collapse .nav-link {
  display: block;
  font: 16px "Lato";
  padding: 0 20px !important;
  height: 75px;
  line-height: 75px;
  color: #000 !important;
}

.navbar-collapse .nav-link:hover {
  color: #1f2c5c !important;
  font-weight: normal;
}

.navbar-collapse ul.submenu {
  position: absolute;
  width: auto;
  padding: 0;
  left: 6px;
  top: 95px;
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px -2px rgba(24, 39, 75, 0.15), 0 8px 8px -4px rgba(24, 39, 75, 0.08);
          box-shadow: 0 4px 6px -2px rgba(24, 39, 75, 0.15), 0 8px 8px -4px rgba(24, 39, 75, 0.08);
  border-radius: 0 0 4px 4px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  z-index: 12;
}

.navbar-collapse ul.submenu > li {
  display: block;
}

.navbar-collapse ul.submenu > li > a {
  display: block;
  padding: 10px 15px !important;
  font-size: 15px;
  text-align: left;
  color: #000;
  margin: 0;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.navbar-collapse ul.submenu > li > a:hover {
  color: #1f2c5c;
  text-decoration: none;
  background: none;
}

.navbar-collapse > .btn {
  font: 14px "Lato";
  font-weight: 700;
  margin-left: 20px;
  padding: 10px 20px;
  color: #1f2c5c;
  border-color: #1f2c5c;
  background-color: transparent;
}

.navbar-collapse > .btn:hover {
  color: #fff;
  border-color: #1f2c5c;
  background-color: #1f2c5c;
  opacity: 1;
}

.navbar.--scrolled {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.8) !important;
  -webkit-box-shadow: 0px 11px 9px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 11px 9px -5px rgba(0, 0, 0, 0.2);
}

.navbar .dropdown-menu {
  min-width: 16rem;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f0f4f9;
}

body#about .navbar,
body#contact .navbar,
body#services .navbar {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.8) !important;
  -webkit-box-shadow: 0px 11px 9px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 11px 9px -5px rgba(0, 0, 0, 0.2);
}

body#about .navbar .navbar-collapse,
body#contact .navbar .navbar-collapse,
body#services .navbar .navbar-collapse {
  background-color: transparent !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media (max-width: 992px) {
  .navbar-collapse {
    padding: 0 0 30px;
    max-height: 294px;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.8) !important;
    -webkit-box-shadow: 0 4px 6px -2px rgba(24, 39, 75, 0.15), 0 8px 8px -4px rgba(24, 39, 75, 0.08);
            box-shadow: 0 4px 6px -2px rgba(24, 39, 75, 0.15), 0 8px 8px -4px rgba(24, 39, 75, 0.08);
  }
  .navbar-collapse .navbar-nav {
    padding: 0 !important;
    margin-bottom: 25px;
  }
  .navbar-collapse .navbar-nav .nav-link {
    padding: 0 10px !important;
    height: 50px;
    line-height: 50px;
  }
  .navbar-collapse .navbar-nav ul.submenu {
    display: none !important;
  }
  .navbar-collapse > .btn {
    margin-left: 0;
  }
  .navbar.--scrolled .navbar-collapse {
    background-color: transparent !important;
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 25px;
  }
  .navbar-collapse {
    padding: 20px 20px 30px;
    max-height: 314px;
  }
}

body#home li.nav-home > .nav-link,
body#about li.nav-about > .nav-link,
body#services li.nav-services > .nav-link,
body#contact li.nav-contact > .nav-link {
  color: #1f2c5c !important;
  font-weight: 700;
}

.navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  border: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: 0 !important;
}

.navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #333;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.navbar-toggler span::before, .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #333;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navbar-toggler span::after {
  top: 10px;
}

.navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span::before, .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.hero {
  padding-bottom: 100px !important;
}

.hero-home-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-home-text > h1 {
  font: 48px "Lato";
}

.hero-home-text > p {
  font: 32px "Lato";
  margin-bottom: 40px;
}

.hero-home-text a.btn {
  width: 200px;
}

.hero-home-img {
  position: relative;
  border-radius: 50% 20%;
}

.hero-home-img-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: calc(100% - 30px);
  height: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 50% 20%;
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 !important;
  }
  .hero .bg-holder {
    height: 60vh;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 25px !important;
  }
  .hero-home-text {
    text-align: center;
    margin-top: 30px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .hero-home-text h1 {
    font-size: 36px;
  }
  .hero-home-text p {
    font-size: 24px;
  }
  .hero-home-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.section-title > h2,
.section_title > h3 {
	color: #337528;
}

.about-home {
  line-height: 150%;
}

@media (max-width: 600px) {
  .about-home {
    padding: 4em 25px;
  }
}

.about-area {
  padding: 60px 0;
}

@media (max-width: 600px) {
  .about-area {
    padding: 40px 15px;
  }
}

.about-caption {
  text-align: left;
  line-height: 150%;
}

.about-caption .section_title {
  padding-bottom: 15px;
}

.about-caption .section_title h3 {
  text-align: left;
}

.about-caption .section_title h3:before {
  left: 25px;
}

.about-caption > img {
  width: 500px;
  border-radius: 6px;
  float: right;
  margin: 0 0 15px 25px;
}

@media (max-width: 996px) {
  .about-caption > img {
    width: 350px;
  }
}

@media (max-width: 600px) {
  .about-caption > img {
    width: 100%;
    margin: 0 0 20px;
  }
}

.about-caption p:last-of-type {
  margin-top: 30px;
}

@media (max-width: 600px) {
  .about-caption p:last-of-type {
    text-align: center;
  }
}

.services-home {
  position: relative;
  padding: 80px 0;
  background-color: #f7f7f7;
}

.services-home:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(18, 78, 120, 0.1);
}

.services-home:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(18, 78, 120, 0.1);
}

.services-home h1 {
  margin-bottom: 30px;
}

.services-home .box {
  width: calc(100% - 20px);
  height: 350px;
  padding: 35px 25px;
  margin: 10px;
  text-align: center;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 6px -2px rgba(24, 39, 75, 0.15), 0 8px 8px -4px rgba(24, 39, 75, 0.08);
          box-shadow: 0 4px 6px -2px rgba(24, 39, 75, 0.15), 0 8px 8px -4px rgba(24, 39, 75, 0.08);
}

.services-home .img-box {
  margin-bottom: 20px;
}

.services-home .img-box > i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: #9f000f;
  font-size: 38px;
  background-color: #eee;
  border-radius: 100%;
}

.services-home .detail-box h5 {
  color: #1f2c5c;
  margin-bottom: 15px;
}

.services-home .detail-box p {
  line-height: 150%;
}

.services-home .owl-dots {
  margin: 25px 0 5px;
  text-align: center;
}

.services-home .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 0 4px;
  background-color: #bbb !important;
  outline: 0 !important;
}

.services-home .owl-dot.active {
  background-color: #1f2c5c !important;
}

@media (max-width: 600px) {
  .services-home {
    padding: 60px 25px;
  }
}

.services-area {
  padding: 60px 0;
}

@media (max-width: 600px) {
  .services-area {
    padding: 40px 15px;
  }
}

.services-area .col-xl-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.services-area .col-xl-12 .services__item {
  width: calc(100% / 3 - 15px);
  color: #222;
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  background-color: #f2f2f2;
}

@media (max-width: 992px) {
  .services-area .col-xl-12 .services__item {
    width: calc(100% / 2 - 15px);
  }
}

@media (max-width: 600px) {
  .services-area .col-xl-12 .services__item {
    width: 100%;
  }
}

.services-area .col-xl-12 .services__item > i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 36px;
  margin-bottom: 20px;
  color: #1f2c5c;
  border-radius: 100px;
  background-color: #e6a300;
}

.services-area .col-xl-12 .services__item .secondary-btn {
  padding: 12px 30px;
  font-size: 14px;
  margin-top: 10px;
  color: #fff;
  text-decoration: none !important;
  background: #1f2c5c;
  border-radius: 100px;
  display: inline-block;
}

.services-area .col-xl-12 .services__item .secondary-btn:hover {
	opacity: .6;
}

.services-area > .container > .row .col-lg-3 > ul {
  padding: 0;
  margin-left: 25px;
}

@media (max-width: 992px) {
  .services-area > .container > .row .col-lg-3 > ul {
    margin: 0 0 25px 25px;
  }
}

.services-area > .container > .row .col-lg-3 > ul > li {
  margin-bottom: 8px;
  list-style-type: circle;
}

.services-area > .container > .row .col-lg-9 h2 {
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services-area > .container > .row .col-lg-9 h2 {
    text-align: center;
  }
}

.services-area > .container > .row .col-lg-9 p:last-of-type {
  margin-top: 30px;
}

@media (max-width: 992px) {
  .services-area > .container > .row .col-lg-9 p:last-of-type {
    text-align: center;
  }
}

.testimonials {
  padding: 50px 0 100px;
}

.testimonials-img {
  max-width: 100px;
  max-height: 100px;
  margin: 0 auto;
  border-radius: 100%;
}

.testimonials-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 180%;
}

.testimonials > h1 {
  position: relative;
  margin-bottom: 50px;
  z-index: 5;
}

.testimonials .owl-dots {
  margin: 25px 0 5px;
  text-align: center;
}

.testimonials .carousel-item .row.h-100 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.testimonials .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 0 4px;
  background-color: #bbb !important;
  outline: 0 !important;
}

.testimonials .owl-dot.active {
  background-color: #1f2c5c !important;
}

@media (max-width: 1200px) {
  .testimonials {
    padding: 30px 0 100px;
  }
}

@media (max-width: 965px) {
  .testimonials {
    padding: 20px 0 100px;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 20px 25px 100px;
  }
  .testimonials-text {
    text-align: center;
  }
}

.callout {
  padding: 80px 0;
}

.callout-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.callout-text h3 {
  font-family: "Lato";
  color: #337528;
  margin-bottom: 15px;
}

.callout-text p {
  line-height: 150%;
}

.callout-text p:last-of-type {
  margin-top: 20px;
}

.callout-img {
  width: 80%;
  height: auto;
}

@media (max-width: 600px) {
  .callout {
    padding: 50px 15px 30px;
  }
  .callout-text {
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .callout-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 40px;
  }
}

.slider_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 500px;
  padding: 0;
}

@media (max-width: 600px) {
  .slider_section {
    height: 350px;
  }
}

.slider_section .carousel {
  width: 100%;
}

.slider_section .carousel h1 {
  margin: 0;
  padding: 0 0 30px 15px;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

@media (max-width: 600px) {
  .slider_section .carousel h1 {
    width: 100%;
    padding: 0 0 20px;
    text-align: center;
  }
}

body#about .slider_section {
	margin-top: 130px;
  background: url(../img/about-hero.jpg) center/cover no-repeat;
}

body#contact .slider_section {
	margin-top: 130px;
  background: url(../img/contact-hero.jpg) center/cover no-repeat;
}

@media (max-width: 996px) {
  body#contact .slider_section {
    background-position-x: -550px;
  }
}

body#services .slider_section {
	margin-top: 130px;
  background: url(../img/services-hero.jpg) center/cover no-repeat;
}

@media (max-width: 996px) {
  body#services .slider_section {
    background-position-x: -500px;
  }
}

.contact-area {
  padding: 60px 0;
}

@media (max-width: 600px) {
  .contact-area {
    padding: 40px 15px;
  }
}

.contact-details {
  width: auto;
  max-width: 300px;
}

.contact-details-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  margin-bottom: 15px;
}

.contact-details-icon {
  width: 30px;
}

.contact-details-icon > i {
  color: #1f2c5c;
}

.contact-details-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-details-text > a {
  color: #1f2c5c;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 40px;
  width: 900px;
  margin: auto;
}

.contact-form-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-form .col-lg-6,
.contact-form .col-lg-12 {
  margin-bottom: 20px;
}

.contact-form .col-lg-6.--error label,
.contact-form .col-lg-12.--error label {
  color: #f00;
}

.contact-form .col-lg-6.--error .contact-form-input,
.contact-form .col-lg-12.--error .contact-form-input {
  border-color: #f00 !important;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #888;
}

.contact-form label.required:after {
  content: "*";
  color: #f00;
  padding-left: 3px;
}

.contact-form input.contact-form-input,
.contact-form textarea.contact-form-textarea {
  border: 1px solid #ddd;
  width: 100%;
  padding: 12px;
  font: 16px "Lato";
  color: #333;
  border-radius: 4px;
  outline: 0 !important;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
}

.contact-form input.contact-form-input:hover,
.contact-form textarea.contact-form-textarea:hover {
  border-color: #bbb;
}

.contact-form input.contact-form-input:focus,
.contact-form textarea.contact-form-textarea:focus {
  border-color: #ccc;
  -webkit-box-shadow: 0 0 0 1px #ccc;
          box-shadow: 0 0 0 1px #ccc;
}

.contact-form textarea.contact-form-textarea {
  height: 150px;
}

.contact-form input.btn[readonly],
.contact-form input.contact-form-input[readonly],
.contact-form textarea.contact-form-textarea[readonly] {
  pointer-events: none;
  opacity: 0.6;
}

.contact-form .btn {
  width: 200px;
  margin: 0 auto;
}

.contact-form .messages .--success,
.contact-form .messages .--error {
  padding: 10px 15px;
  margin-bottom: 15px;
  line-height: 125%;
  font-size: 14px;
  font-weight: 600;
  color: #316822;
  border: 1px solid #316822;
  background: #e3e9e4;
  border-radius: 4px;
}

.contact-form .messages .--error {
  color: #ea1600;
  border-color: #ea1600;
  background: #f3e0e0;
}

@media (max-width: 1200px) {
  .contact-form {
    width: 100%;
  }
}

.footer {
  padding: 60px 0;
  color: #222;
  font-size: 15px;
  line-height: 150%;
  background-color: #e6a300;
}

.footer h4 {
  font: 24px "Lato";
  font-weight: 600;
  margin-bottom: 15px;
}

.footer .footer-details > ul {
  padding: 0;
}

.footer .footer-details > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  list-style: none;
  margin-bottom: 8px;
}

.footer .footer-details > ul > li .footer-address-icon {
  width: 30px;
}

.footer .footer-details > ul > li .footer-address-icon > i {
  color: #1f2c5c;
  font-size: 16px;
  margin-top: 2px;
}

.footer .footer-details > ul > li .footer-address-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer .footer-details > ul > li .footer-address-text > a {
  color: #1f2c5c;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.footer-cr {
  padding: 20px;
  color: #eee;
  font-size: 12px;
  text-align: center;
  background: #222;
}

.footer-cr .footer-social a {
  margin-left: 20px;
  display: inline-block;
  text-align: center;
  color: #e6a300;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.footer-cr .footer-social a:hover {
  color: #fff;
}

.footer-cr .footer-social a i {
  font-size: 22px;
}

.footer-cr .footer-social a i:hover {
  color: #fff;
}

.footer-cr .footer-text a {
	color: #e6a300;
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 20px;
  }
  .footer-details {
    margin-top: 30px;
  }
  .footer-cr p {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-cr .footer-social {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 15px;
  }
}

.privacy-content {
	padding: 120px 120px 40px;
}

.privacy a {
	word-wrap: break-word;
}

.privacy h1 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 28px;
}

.privacy h2 {
	font-size: 22px;
	margin-top: 20px;
	margin-bottom: 10px;
}

@media (max-width: 600px) {
	.footer-cr .footer-text span.pp {
		display: block;
		margin-top: 10px;	
	}
	
	.privacy-content {
		padding: 120px 25px 40px;	
	}
}

.mrmaa {
	margin-top: 20px;
}

.mrmaa > img {
	width: auto;
	height: 60px;
}

.grecaptcha-badge {
  position: absolute;
  left: -9999px;
}
/*# sourceMappingURL=styles.css.map */