/* guides */

/*
-webkit-transition: all .15s ease-out;
-moz-transition: all .15s ease-out;
-o-transition: all .15s ease-out;
transition: all .15s ease-out;
*/

/* important */

.display-none {
  display: none !important;
}

.ml-0-5rem {
  margin-left: .5rem !important;
}

.vertical-align-minus-2px {
  vertical-align: -2px !important;
}

.background-color-e6e6e6 {
  background-color: #e6e6e6 !important;
}

.background-color-ddd {
  background-color: #ddd !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

@media (max-width: 767px) {
  .display-none-for-xs {
    display: none !important;
  }

  .ptb-0-75rem-for-xs {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
  }
}

@media (min-width: 768px) {
  .display-none-for-desktop {
    display: none !important;
  }
}

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Open Sans", sans-serif;
}

.page-section {
  padding: 8rem 0;
}

.btn-learn-more {
  padding: 1rem 2.5rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid #24c472;
  background-color: #24c472;
  border-radius: 0;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.btn-learn-more:hover {
  color: #fff;
  border-color: #1fa761;
  background-color: #1fa761;
}

/* navigation */

.navbar {
  box-shadow: none;
  background-color: #1fa761;
  transition: background-color 0.2s ease;
}

.navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 3rem;
}

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

.navbar .main-navbar-nav {
  justify-content: space-evenly;
  width: 100%;
  border-left: 0;
}

.navbar .registration-navbar-nav {
  background-color: #24c472;
}

.navbar .soc-icons-navbar-nav {
  border-left: 0;
}

.navbar .navbar-nav .nav-item {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #fff;
  transform: scale(1.001) scaleX(0);
  backface-visibility: hidden;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

/*
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active {
  color: #f4623a;
}
*/

.navbar .navbar-nav .nav-item .nav-link:hover::after,
.navbar .navbar-nav .nav-item .nav-link:active::after {
  transform: scale(1.001) scaleX(1);
}

.dropdown-item::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #fff;
  transform: scale(1.001) scaleX(0);
  backface-visibility: hidden;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.dropdown-item:hover::after,
.dropdown-item:active::after {
  transform: scale(1.001) scaleX(1);
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: #f4623a !important;
}

@media (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    padding-top: .5rem;
    padding-bottom: .5rem;
    text-align: center;
    display: inline-block;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    display: inline-block;
  }

  .navbar .soc-icons-navbar-nav {
    width: auto;
    text-align: center;
    display: block;
  }

  .navbar .soc-icons-navbar-nav li {
    width: 40px !important;
    display: inline-block;
  }

  .navbar .soc-icons-navbar-nav li a {
    width: auto;
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .navbar {
    box-shadow: none;
    background-color: #1fa761;
  }

  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }

  .navbar .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }

  .navbar.navbar-shrink {
    box-shadow: none;
    background-color: #1fa761;
  }

  .navbar.navbar-shrink .navbar-brand {
    color: #fff;
  }

  .navbar.navbar-shrink .navbar-brand:hover {
    color: #fff;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link {
    color: #fff;
  }

  .navbar.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }
}

header {
  padding-top: 10rem;
  padding-bottom: calc(10rem - 4.5rem);
  background: linear-gradient(45deg, rgba(23, 23, 23, 0.6) 0%, rgba(23, 23, 23, 0) 100%), url("../images/cover.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

header h1,
header .h1 {
  font-size: 2.25rem;
}

.btn-cover {
  padding: 1rem 2.5rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 0;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.btn-cover:hover {
  color: #222;
  background-color: #fff;
}

.btn-cover-main {
  background-color: #24c472;
  border-color: #24c472;
}

.btn-cover-main:hover {
  color: #fff;
  background-color: #1fa761;
  border-color: #1fa761;
}

@media (max-width: 991px) {
  header {
    height: 100vh;
    padding-top: 102px;
    padding-bottom: 0;
  }

  header h1,
  header .h1 {
    color: #fff;
    font-size: 1.85rem;
    text-transform: uppercase;
    line-height: 2.3rem;
  }

  header p {
    width: 100%;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 992px) {
  header {
    height: 80vh;
    padding-top: 96px;
    padding-bottom: 0;
  }

  header h1,
  header .h1 {
    color: #fff;
    font-size: 2.35rem;
    text-transform: uppercase;
    line-height: 3rem;
  }

  header p {
    width: calc(100% / 3 * 2);
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* services */

.front-page-services-section h2 {
  color: #222;
  font-size: 2.1rem;
  line-height: 2.7rem;
  font-weight: 400;
  text-transform: uppercase;
}

.front-page-services-section p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.front-page-services-blocks {
  margin-top: -77px;
  padding-left: 6rem;
  padding-right: 0;
}

.front-page-services-blocks div {
  padding: 3rem 3rem;
  background: #eee;
}

.front-page-services-blocks h3 {
  margin-bottom: .5rem;
  text-align: center;
  color: #222;
  font-size: 2.1rem;
  line-height: 2.1rem;
  font-weight: 400;
}

.front-page-services-blocks p {
  width: 100%;
  margin-top: .5rem;
  margin-bottom: 0;
  text-align: center;
  color: #222;
  font-size: 1rem;
  line-height: 1rem;
}

@media (max-width: 767px) {
  .front-page-services-section h2 {
    font-size: 1.85rem;
    line-height: 2.3rem;
  }

  .front-page-services-blocks {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .front-page-services-blocks div {
    padding: 2.5rem 3rem;
  }

  .front-page-services-blocks h3 {
    font-size: 1.85rem;
    line-height: 1.85rem;
  }
}

@media (min-width: 768px) {
  .front-page-services-section p {
    width: 90%;
  }
}

/* news */

.front-page-news-section {
  background-color: #fff;
  padding-bottom: 4rem;
}

.front-page-news-section h2 {
  color: #222;
  font-size: 2.1rem;
  line-height: 2.7rem;
  font-weight: 400;
  text-transform: uppercase;
}

.individual-new {
  background-color: #eee;
  cursor: pointer;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.individual-new > div:first-child {
  height: 185px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.individual-new p {
  color: #222;
  font-size: .8rem;
  font-weight: 400;
}

.individual-new h3 {
  color: #222;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
}

.individual-new:hover {
  background-color: #ddd;
}

.individual-new:hover > div:first-child {
  background-size: 105%;
}

@media (max-width: 767px) {
  .front-page-news-section {
    padding-bottom: 0;
  }

  .front-page-news-section h2 {
    font-size: 1.85rem;
    line-height: 2.3rem;
  }

  .individual-new > div:first-child {
    height: 220px;
  }
}

/* cta */

.front-page-cta-section {
  padding: 4rem 0;
  background-color: #1fa761;
}

.front-page-cta-section h2 {
  color: #fff;
  font-size: 2.1rem;
  line-height: 2.7rem;
  font-weight: 400;
  text-transform: uppercase;
}

.front-page-cta-section p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (max-width: 767px) {
  .front-page-cta-section {
    padding: 3rem 0;
  }

  .front-page-cta-section h2 {
    font-size: 1.85rem;
    line-height: 2.3rem;
  }
}

/* testimonials */

.front-page-testimonials-section {
  padding: 4rem 0;
}

.front-page-testimonials-section h2 {
  color: #222;
  font-size: 2.1rem;
  line-height: 2.7rem;
  font-weight: 400;
  text-transform: uppercase;
}

.individual-testimonial {
  padding: 2rem 4rem;
  text-align: center;
  border: 4px solid #eee;
}

.individual-testimonial p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #555;
}

.individual-testimonial h3 {
  margin-bottom: 0;
  color: #222;
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
}

/* footer */

footer {
  padding: 3rem 0;
}

footer img {
  width: 180px;
  height: auto;
}

footer ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-inline-start: 0;
}

footer ul li {
  color: #222;
  font-size: 1rem;
  line-height: 1.5rem;
}

footer ul li a {
  color: #222;
  text-decoration: none;
}

footer ul li a:hover {
  color: #222;
  text-decoration: underline;
}

.copyright-row {
  margin-top: 3rem;
  padding-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  border-top: 1px solid #eee;
}

.copyright-row p {
  margin-bottom: 0;
  font-size: .9rem;
}

.copyright-row p a {
  color: #222;
  text-decoration: none;
}

.copyright-row p a:hover {
  color: #222;
  text-decoration: underline;
}

.copyright-row ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-inline-start: 0;
}

.copyright-row ul li {
  display: inline-block;
  margin-right: 1rem;
  font-size: .9rem;
}

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

@media (max-width: 767px) {
  footer {
    padding-bottom: 2rem;
  }

  .copyright-row {
    padding-top: 2rem;
  }
}

/* */
