/* Header */
/* Left Side */
* {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
}

.b-1 {
  border: 1px solid red;
}

h1 {
  font-weight: 700;
  font-size: 2.75rem;
  margin: 1rem 0;
  color: black;
}

h2 {
  font-weight: 600;
  font-size: 2.5rem;
  margin: 0.8rem 0;
  text-align: center;
  color: black;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0.5rem 0;
  color: black;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

label {
  margin-bottom: 0;
}

.form-control {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
}

select.form-control {
  padding: 0.5rem;
  height: 50px;
}

.grecaptcha-badge {
  opacity: 0;
}

.recaptcha-disclaimer {
  font-size: 0.7rem;
  color: #555;
  margin-top: 1rem;
  text-align: left;
}
.recaptcha-disclaimer a {
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-cyan {
  color: #00AFEF;
}

.text-black {
  color: black !important;
}

@font-face {
  font-family: "Freestyle Script Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Freestyle Script Regular"), url("../../fonts/FREESCPT.woff") format("woff");
}
.enviroment-bar {
  background-color: orange;
  position: fixed;
  bottom: 70px;
  left: 0;
  width: 30px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.enviroment-bar p.environment-text {
  font-size: 0.7rem;
  font-weight: bold;
  color: black;
  text-align: center;
  transform: rotate(-90deg);
  margin: 0;
  padding: 0;
}

header .main-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
header .main-header .navbar-main-header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2rem;
}
@media (max-width: 540px) {
  header .main-header .navbar-main-header {
    padding: 0;
    height: 70px;
  }
}
header .main-header .navbar-main-header.sticky-bar-fixed {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background-color: white;
  box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 2px;
}
@media (max-width: 414px) {
  header .main-header .navbar-main-header.sticky-bar-fixed {
    height: 70px;
  }
}
header .main-header .navbar-main-header .navbar {
  box-shadow: none;
}
header .main-header .navbar-main-header .logo-container {
  width: 100px;
  height: 100%;
  margin-right: 0;
  order: 0;
}
@media (max-width: 540px) {
  header .main-header .navbar-main-header .logo-container {
    width: 60px;
  }
  header .main-header .navbar-main-header .logo-container a {
    height: 100%;
  }
}
header .main-header .navbar-main-header .logo-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .main-header .navbar-main-header .company-name-container {
  width: auto;
  height: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  border-right: 1px solid #ccc;
  order: 1;
}
@media (max-width: 540px) {
  header .main-header .navbar-main-header .company-name-container {
    display: none;
    border-right: none;
  }
}
header .main-header .navbar-main-header .company-name-container h2 {
  width: 100%;
  text-align: right;
  font-size: 1.5rem;
}
header .main-header .navbar-main-header .menu-container {
  position: relative;
  flex-grow: 1;
  order: 2;
  justify-content: center;
}
header .main-header .navbar-main-header .menu-container li a {
  color: black;
  font-weight: 600;
}
header .main-header .navbar-main-header .menu-container li a.active {
  border-bottom: 2px solid black;
}
header .main-header .navbar-main-header .menu-container .nav .nav-link {
  font-size: 1rem;
}
header .main-header .navbar-main-header .menu-container .nav .nav-link.menu-cta {
  background-color: #4775B9;
  border-radius: 5px;
  color: white;
  margin-left: 1rem;
  margin-top: 0;
}
@media (max-width: 820px) {
  header .main-header .navbar-main-header .menu-container .nav .nav-link.menu-cta {
    margin-left: 0;
    margin-top: 1rem;
  }
}
header .main-header .navbar-main-header .menu-container .nav.collapsed {
  flex-direction: column;
  position: absolute;
  background-color: white;
  box-shadow: rgba(25, 41, 61, 0.18) 3px 3px 3px 3px;
  right: -95px;
  top: 50px;
  z-index: 10;
  padding: 20px;
  display: none;
}
header .main-header .navbar-main-header .menu-container .nav.collapsed.show {
  display: block;
}
header .main-header .navbar-main-header .phone-container {
  height: 100%;
  order: 3;
}
header .main-header .navbar-main-header .phone-container a {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  margin-left: 1rem;
  color: black;
}
header .main-header .navbar-main-header .phone-container a i {
  font-size: 1.6rem;
  color: black;
  margin-right: 0.5rem;
}
header .main-header .navbar-main-header .phone-container a span {
  font-weight: 600;
}
@media (max-width: 912px) {
  header .main-header .navbar-main-header .phone-container a span {
    margin-right: 0.5rem;
    display: none;
  }
}
header .main-header .navbar-main-header .hamburger-bars {
  color: black;
  margin: 0 0.5rem;
  display: none;
  width: 32px;
  order: 4;
}
header .main-header .navbar-main-header .hamburger-bars.show {
  display: block;
}
header .main-header .navbar-main-header .hamburger-bars i[class="fas fa-bars"] {
  font-size: 2rem;
}
header .main-header .navbar-main-header .hamburger-bars i[class="fas fa-times"] {
  font-size: 2.5rem;
}
header .main-second-header .navbar-main-header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  header .main-second-header .navbar-main-header {
    height: 70px;
    padding: 0;
  }
}
header .main-second-header .navbar-main-header.sticky-bar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: white;
  box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 2px;
}
header .main-second-header .navbar-main-header .logo-container {
  width: 80px;
  height: auto;
}
@media (max-width: 768px) {
  header .main-second-header .navbar-main-header .logo-container {
    width: 60px;
    height: 45px;
  }
}
header .main-second-header .navbar-main-header .logo-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.go-back i, .go-back span {
  color: black !important;
}
.go-back:hover {
  text-decoration: none;
}
.go-back:hover i, .go-back:hover span {
  color: black !important;
}

.hero-container {
  height: 400px;
  width: 100%;
  padding: 0;
  background-image: url("../../img/hero/hero-bg-sm.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero-container {
    background-image: url("../../img/hero/hero-bg-md.webp");
  }
}
@media (min-width: 1024px) {
  .hero-container {
    background-image: url("../../img/hero/hero-bg-lg.webp");
  }
}
@media (max-width: 540px) {
  .hero-container {
    height: 520px;
  }
}
.hero-container .hero-content-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.hero-container .hero-content-container .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}
@media (min-width: 768px) {
  .hero-container .hero-content-container .content {
    width: 60%;
    align-items: flex-end;
    padding: 0 3rem;
  }
}
.hero-container .hero-content-container .content h1, .hero-container .hero-content-container .content h3 {
  color: white;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-container .hero-content-container .content h1, .hero-container .hero-content-container .content h3 {
    text-align: right;
  }
}

footer {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
}
footer .footer-container {
  border-top: 2px solid white;
  width: 100%;
  height: auto;
  background-color: #17A755;
}
@media (max-width: 768px) {
  footer .footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer .footer-container .col-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}
@media (max-width: 768px) {
  footer .footer-container .col-container {
    flex-direction: column;
    padding: 0.5rem 0;
  }
}
footer .footer-container .col-container .left-col {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-container .col-container .left-col {
    width: 100%;
    justify-content: center;
  }
}
footer .footer-container .col-container .left-col ul {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  footer .footer-container .col-container .left-col ul a {
    font-size: 0.8rem;
  }
}
footer .footer-container .col-container .left-col a {
  color: black;
}
footer .footer-container .col-container .left-col a:hover {
  text-decoration: underline;
}
footer .footer-container .col-container .right-col {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 768px) {
  footer .footer-container .col-container .right-col {
    width: 100%;
    align-items: center;
  }
}
footer .footer-container .col-container .right-col p {
  color: black;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  footer .footer-container .col-container .right-col p {
    padding: 0 2rem;
    text-align: center;
    font-size: 0.7rem;
  }
}
footer .footer-container .col-container .right-col p.text-small {
  font-size: 0.8rem;
}
footer .footer-container .col-container .right-col p.text-small a {
  font-size: inherit;
  color: inherit !important;
}
@media (max-width: 768px) {
  footer .footer-container .col-container .right-col p.text-small {
    font-size: 0.6rem;
  }
}

.btn.btn {
  border-radius: 5px !important;
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
  margin: 0.3rem !important;
  border: 0 !important;
}
.btn.btn.btn-primary {
  background-color: #17A755 !important;
  color: black;
}
.btn.btn.btn-primary-cyan {
  background-color: #00AFEF !important;
  color: white;
}
.btn.btn.btn-primary-inverse {
  background-color: white;
  color: black;
}
.btn.btn.btn-primary-inverse-turquoise {
  background-color: white;
}
.btn.btn.btn-white-primary {
  background-color: white !important;
  color: #3E4095 !important;
  border: 1px solid #3E4095 !important;
}
.btn.btn.btn-outline-brown {
  background-color: transparent !important;
  color: #615343 !important;
  border: 1px solid #615343 !important;
}
.btn.btn.btn-outline-white {
  background-color: transparent !important;
  color: white;
  border: 1px solid white !important;
}
.btn.btn.btn-outline-green {
  background-color: transparent !important;
  color: #17A755;
  border: 1px solid #17A755 !important;
}
.btn.btn.btn-outline-black-50 {
  background-color: transparent !important;
  color: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(0, 0, 0, 0.5) !important;
}

.lnk {
  text-decoration: underline;
}
.lnk.lnk-primary {
  color: black !important;
}
.lnk.lnk-black {
  color: black !important;
}
.lnk.lnk-white {
  color: white !important;
}

.my-dropdown {
  position: relative;
  padding-right: 1.5rem;
  cursor: pointer;
}
.my-dropdown:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f077";
  right: 0;
  top: 13%;
  color: #aaa;
  position: absolute;
}
.my-dropdown.collapsed:after {
  content: "\f078";
}
.my-dropdown.collapsed + nav {
  display: none;
}

.popup-container {
  position: fixed;
  top: 120px;
  right: 5px;
  width: 250px;
  height: auto;
  z-index: 15;
}
@media (min-width: 768px) {
  .popup-container {
    width: 350px;
  }
}
.popup-container .popup {
  position: relative;
  width: 100%;
  height: auto;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.popup-container .popup-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px 15px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-container .popup-header .btn-close {
  cursor: pointer;
}
.popup-container .popup-header .btn-close i[class^=fa-], .popup-container .popup-header .btn-close i[class*=" fa-"] {
  font-size: 20px;
}
.popup-container .popup-body {
  padding: 5px 0;
  font-size: 14px;
}
.popup-container .popup-body p {
  font-size: inherit;
}
.popup-container .popup-footer {
  text-align: right;
}
.popup-container .popup .popup-button {
  padding: 3px 5px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.popup-container .popup.success {
  background-color: #C8E6C9;
}
.popup-container .popup.success::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058";
  position: absolute;
  top: 10;
  left: 0;
  padding: 5px;
  color: black;
}
.popup-container .popup.error {
  background-color: #F8BBD0;
}
.popup-container .popup.error::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f071";
  position: absolute;
  top: 10;
  left: 0;
  padding: 5px;
  color: black;
}
.popup-container .popup.info {
  background-color: #BBDEFB;
}
.popup-container .popup.info::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f05a";
  position: absolute;
  top: 10;
  left: 0;
  padding: 5px;
  color: black;
}
.popup-container .popup.warning {
  background-color: #FFD54F;
}
.popup-container .popup.warning::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f06a";
  position: absolute;
  top: 10;
  left: 0;
  padding: 5px;
  color: black;
}

section {
  min-height: 60vh;
}
section h2 {
  margin-left: 1.6rem;
  text-align: left;
  font-size: 1.85rem;
}
section h3 {
  margin-left: 1rem;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 500;
}
section p {
  font-size: 0.9rem;
}

.blog-featured-section {
  min-height: 50vh;
  background-color: #fff;
}
.blog-featured-section .container {
  border: 1px solid #f5f5f5;
}
.blog-featured-section .featured-post {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.blog-featured-section .featured-post-header {
  padding: 0.5rem;
}
.blog-featured-section .featured-post-header a {
  text-decoration: none;
  color: #000;
}
.blog-featured-section .featured-post-header h2 {
  margin-left: 1rem;
}
.blog-featured-section .featured-post-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
}
@media (min-width: 786px) {
  .blog-featured-section .featured-post-body {
    flex-direction: row;
  }
}
.blog-featured-section .featured-post-body .img-container {
  width: 92%;
}
@media (min-width: 786px) {
  .blog-featured-section .featured-post-body .img-container {
    width: 50%;
  }
}
.blog-featured-section .featured-post-body .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-featured-section .featured-post-body .content-container {
  width: 92%;
  padding: 1rem;
}
@media (min-width: 786px) {
  .blog-featured-section .featured-post-body .content-container {
    width: 50%;
    padding: 2rem;
  }
}
.blog-featured-section .featured-post-body .content-container p {
  font-size: 1rem;
}

.services-section .container {
  padding: 0 2rem;
  background-color: #f5f5f5;
}
.services-section .container .services-content {
  width: 100%;
  min-height: 40vh;
}
.services-section .container .services-content .services-dsk-content {
  width: 100%;
  display: flex;
}
.services-section .container .services-content .services-dsk-content .col-left {
  width: 33%;
  margin-right: 1rem;
}
.services-section .container .services-content .services-dsk-content .col-left .tab-header {
  width: 100%;
  padding: 1rem;
  background-color: white;
  margin-bottom: 0.5rem;
  position: relative;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
}
.services-section .container .services-content .services-dsk-content .col-left .tab-header:hover {
  background-color: #e5e5e5;
}
.services-section .container .services-content .services-dsk-content .col-left .tab-header span {
  display: block;
  width: 90%;
  font-size: 0.85rem;
}
.services-section .container .services-content .services-dsk-content .col-left .tab-header.active {
  background-color: #4775B9;
  color: white;
}
.services-section .container .services-content .services-dsk-content .col-left .tab-header.active::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  content: "\f105";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  right: 20px;
  color: white;
}
.services-section .container .services-content .services-dsk-content .col-right {
  width: 67%;
  height: 100%;
}
.services-section .container .services-content .services-dsk-content .col-right .tab-content {
  width: 100%;
  min-height: 500px;
  background-color: white;
  position: relative;
}
.services-section .container .services-content .services-dsk-content .col-right .tab-content .img-container {
  width: 100%;
  height: 250px;
}
.services-section .container .services-content .services-dsk-content .col-right .tab-content .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-section .container .services-content .services-dsk-content .col-right .tab-content .content-container {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.services-section .container .services-content .services-dsk-content .col-right .tab-content .content-container h3 {
  margin: 1rem 0;
}
.services-section .container .services-content .services-dsk-content .col-right .tab-content .content-container .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-section .container .services-content .services-dsk-content .col-right .tab-content .content-container .descriptions {
  height: 200px;
  overflow-y: auto;
}
.services-section .container .services-content .services-mob-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.services-section .container .services-content .services-mob-content .tab-header {
  width: 100%;
  padding: 1rem;
  background-color: white;
  margin-bottom: 0.5rem;
  position: relative;
  cursor: pointer;
}
.services-section .container .services-content .services-mob-content .tab-header.active {
  background-color: #4775B9;
  color: white;
}
.services-section .container .services-content .services-mob-content .tab-header span {
  display: block;
  width: 90%;
  font-size: 1rem;
}
.services-section .container .services-content .services-mob-content .tab-header::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  content: "\f107";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  right: 20px;
  color: black;
}
.services-section .container .services-content .services-mob-content .tab-header.active::before {
  content: "";
}
.services-section .container .services-content .services-mob-content .tab-content {
  width: 100%;
  min-height: 500px;
  background-color: white;
  position: relative;
  margin-top: -8px;
}
.services-section .container .services-content .services-mob-content .tab-content .img-container {
  width: 100%;
  height: 250px;
}
.services-section .container .services-content .services-mob-content .tab-content .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-section .container .services-content .services-mob-content .tab-content .content-container {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.services-section .container .services-content .services-mob-content .tab-content .content-container h3 {
  margin: 1rem 0;
}
.services-section .container .services-content .services-mob-content .tab-content .content-container .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-section .container .services-content .services-mob-content .tab-content .content-container .descriptions {
  min-height: 125px;
}

.cta-section {
  background-color: #4775B9;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}
.cta-section h2, .cta-section h3 {
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  margin: 0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}
.cta-section .btn-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta-section .btn-container a {
  width: 100%;
}
@media (min-width: 768px) {
  .cta-section .btn-container {
    flex-direction: row;
  }
  .cta-section .btn-container a {
    width: auto;
  }
}

.aboutus-section .container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .aboutus-section .container {
    flex-direction: row;
  }
}
.aboutus-section .container .image-container {
  width: 100%;
  height: 300px;
}
@media (min-width: 768px) {
  .aboutus-section .container .image-container {
    width: 50%;
    height: auto;
  }
}
.aboutus-section .container .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutus-section .container .content-container {
  width: 100%;
  min-height: 300px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .aboutus-section .container .content-container {
    width: 50%;
    height: 100%;
    justify-content: center;
    margin: 2rem 1rem;
  }
}
.aboutus-section .container .content-container h2, .aboutus-section .container .content-container h3 {
  margin: 0;
}
.aboutus-section .container .content-container .membership-container {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.aboutus-section .container .content-container .membership-container img {
  margin-right: 0.5rem;
  width: 185px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-team-section {
  width: 100%;
  margin-bottom: 4rem;
}
.our-team-section .team-card-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.our-team-section .team-card-wrapper .team-card {
  width: 320px;
  min-height: 450px;
  background-color: #17A755;
  margin: 0.5rem 1rem;
  padding: 1rem 1.5rem;
}
.our-team-section .team-card-wrapper .team-card .top-content {
  display: flex;
  height: auto;
  margin-bottom: 0.5rem;
}
.our-team-section .team-card-wrapper .team-card .top-content .photo-container {
  width: 112px;
  height: 112px;
}
.our-team-section .team-card-wrapper .team-card .top-content .photo-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
}
.our-team-section .team-card-wrapper .team-card .top-content .generals-container {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 1rem;
}
.our-team-section .team-card-wrapper .team-card .top-content .generals-container h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.our-team-section .team-card-wrapper .team-card .top-content .generals-container h4, .our-team-section .team-card-wrapper .team-card .top-content .generals-container p {
  color: #fff;
  width: 100%;
  margin: 0;
}
.our-team-section .team-card-wrapper .team-card .bottom-content {
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.our-team-section .team-card-wrapper .team-card .bottom-content p {
  color: #fff;
}

.partners-section h3, .partners-section p {
  color: white;
}
.partners-section .container {
  background-image: linear-gradient(#17A755, #4775B9);
  padding-bottom: 4rem;
}
.partners-section .partner-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 3rem;
}
.partners-section .partner-card-wrapper .partner-card {
  width: 150px;
  height: auto;
  margin: 0.3rem;
  padding: 1rem;
  border: 1px solid #f0f0f0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .partners-section .partner-card-wrapper .partner-card {
    width: 180px;
  }
}
.partners-section .partner-card-wrapper .partner-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.partners-section .partner-card-wrapper .partner-card h4 {
  text-align: center;
  font-size: 0.6rem;
  margin: 0;
}

.testimonials-section {
  min-height: auto;
}
.testimonials-section .container {
  background-image: linear-gradient(#4775B9, #17A755);
}
.testimonials-section .container h3, .testimonials-section .container p {
  color: white;
}
.testimonials-section .container .testimonials-owl-carousel .item {
  background-color: #F5F5F5;
  margin: 0 1rem;
  width: 300px;
  height: 300px;
  padding: 1rem;
}
.testimonials-section .container .testimonials-owl-carousel .item p {
  color: black;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item {
  display: flex;
  flex-direction: column;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-top {
  display: flex;
  flex-direction: row;
  height: 150px;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-top .testimonial-item-image {
  width: 40%;
  height: 100%;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-top .testimonial-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  border: 5px solid white;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-top .testimonial-item-top-content {
  background-color: slver;
  width: 60%;
  height: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-top .testimonial-item-top-content p {
  margin: 0;
  padding: 0;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-top .testimonial-item-top-content p.testimonial-item-content-author {
  font-weight: bold;
  font-size: 0.7rem;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-top .testimonial-item-top-content p.testimonial-item-content-company {
  font-style: italic;
  font-size: 0.7rem;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-top .testimonial-item-top-content p.testimonial-item-content-date {
  text-decoration: underline;
  font-size: 0.6rem;
}
.testimonials-section .container .testimonials-owl-carousel .item .testimonial-item .testimonial-item-content {
  padding: 0.5rem;
}

.contactus-section .container {
  min-height: 60vh;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contactus-section .container {
    flex-direction: row;
  }
}
.contactus-section .container .validation-error-found,
.contactus-section .container .required-error {
  color: red;
  font-size: 0.8rem;
}
.contactus-section .container .validation-error-found i,
.contactus-section .container .required-error i {
  color: red;
}
.contactus-section .container .alert-success {
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .contactus-section .container .alert-success {
    font-size: 1rem;
  }
}
.contactus-section .container .alert-success i {
  font-size: inherit;
}
.contactus-section .container label.required {
  position: relative;
  left: 12px;
}
.contactus-section .container label.required::before {
  content: "";
  background: #FF8A00;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: -12px;
}
.contactus-section .container .col-left {
  width: 100%;
}
@media (min-width: 768px) {
  .contactus-section .container .col-left {
    width: 50%;
  }
}
.contactus-section .container .col-left ul {
  list-style-type: none;
}
.contactus-section .container .col-left ul li {
  margin-bottom: 1rem;
}
.contactus-section .container .col-right {
  width: 100%;
  height: 350px;
}
@media (min-width: 768px) {
  .contactus-section .container .col-right {
    width: 50%;
    height: 785px;
    padding-right: 2rem;
  }
}
.contactus-section .container .col-right .map-container {
  width: 100%;
  height: 100%;
}
.contactus-section .container .col-right .map-container .map {
  width: 100%;
  height: 100%;
}
.contactus-section .container .col-right .map-container .map .leaflet-control-attribution {
  font-size: 0.7rem;
}
.contactus-section .container .col-right .map-container .map .leaflet-control-attribution a {
  font-size: inherit;
}

.legal-section .legal-title {
  background-color: white;
  padding: 0.2rem 0;
  width: 100%;
  position: sticky;
  top: 70px;
  z-index: 9;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1rem;
}
@media (min-width: 769px) {
  .legal-section .legal-title {
    top: 100px;
  }
}

.quotes-container label.required {
  position: relative;
  left: 12px;
}
.quotes-container label.required::before {
  content: "";
  background: #FF8A00;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: -12px;
}
.quotes-container .validation-error-found,
.quotes-container .required-error {
  color: red;
  font-size: 0.8rem;
}
.quotes-container .validation-error-found i,
.quotes-container .required-error i {
  color: red;
}
.quotes-container .alert-success {
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .quotes-container .alert-success {
    font-size: 1rem;
  }
}
.quotes-container .alert-success i {
  font-size: inherit;
}
.quotes-container .multi-column {
  display: flex;
  flex-direction: column;
}
.quotes-container .multi-column .form-group {
  width: 100% !important;
}
@media (min-width: 768px) {
  .quotes-container .multi-column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .quotes-container .multi-column .form-group {
    width: 49% !important;
  }
  .quotes-container .multi-column .form-group.triple {
    width: 32% !important;
  }
}
.quotes-container .service-location-form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.quotes-container .service-location-form-group span {
  display: none;
}
.quotes-container .service-location-form-group input {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .quotes-container .service-location-form-group {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .quotes-container .service-location-form-group span {
    display: block;
    margin-left: 1rem;
  }
  .quotes-container .service-location-form-group input {
    margin-left: 1rem;
    margin-bottom: 0;
  }
  .quotes-container .service-location-form-group label {
    margin-bottom: 0 !important;
  }
}
.quotes-container .upload-file-notes {
  border: 1px solid #ccc;
  padding: 0.5rem;
  margin: 0.5rem 0;
  background: #f5f5f5;
}
.quotes-container .upload-file-notes p {
  font-size: 0.8rem;
  margin-bottom: 5px;
}
.quotes-container .form-control {
  padding: 1rem;
  margin: 0.3rem 0;
  height: auto;
}
.quotes-container .form-control.disabled {
  background: #f5f5f5;
  color: inherit;
}
.quotes-container .select-container {
  position: relative;
}
.quotes-container .select-container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.quotes-container .select-container:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f078";
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.quotes-container .geo-panel .btn-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.quotes-container .geo-panel .btn-container .btn {
  width: 100%;
}
@media (min-width: 768px) {
  .quotes-container .geo-panel .btn-container {
    flex-direction: row;
  }
  .quotes-container .geo-panel .btn-container .btn {
    width: 49%;
  }
}
.quotes-container .geo-panel .map-selector {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.quotes-container .geo-panel .map-selector .map-action-panel-container {
  width: 100%;
  top: 0;
  height: 20vh;
  position: absolute;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .quotes-container .geo-panel .map-selector .map-action-panel-container {
    top: 0;
    height: 10vh;
  }
}
.quotes-container .geo-panel .map-selector .map-action-panel-container .form-container {
  width: 65%;
  height: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .quotes-container .geo-panel .map-selector .map-action-panel-container .form-container {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.quotes-container .geo-panel .map-selector .map-action-panel-container .form-container .form-group {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .quotes-container .geo-panel .map-selector .map-action-panel-container .form-container .form-group {
    margin-right: 1rem;
  }
}
.quotes-container .geo-panel .map-selector .map-action-panel-container .form-container .form-group .form-control {
  padding: 0.5rem;
}
.quotes-container .geo-panel .map-selector .map-action-panel-container .btn-container {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
@media (min-width: 768px) {
  .quotes-container .geo-panel .map-selector .map-action-panel-container .btn-container {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .quotes-container .geo-panel .map-selector .map-action-panel-container .btn-container button {
    max-width: 25%;
  }
}
.quotes-container .geo-panel .map-selector .map-container {
  width: 100%;
  top: 20vh;
  height: 80vh;
  position: absolute;
}
@media (min-width: 768px) {
  .quotes-container .geo-panel .map-selector .map-container {
    top: 10vh;
    height: 90vh;
  }
}
.quotes-container .geo-panel .map-selector .map-container .map {
  width: 100%;
  height: 100%;
}
.quotes-container .geo-panel .map-selector .map-container .map .leaflet-control-attribution {
  font-size: 0.7rem;
}
.quotes-container .geo-panel .map-selector .map-container .map .leaflet-control-attribution a {
  font-size: inherit;
}

.hero-section .blog-hero {
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, #4775B9, #17A755);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem;
}
@media (min-width: 768px) {
  .hero-section .blog-hero {
    height: 400px;
  }
}
.hero-section .blog-hero h1 {
  color: white;
  padding: 0.5rem 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline;
}

.featured-post-section {
  margin-top: 2rem;
  padding: 0.5rem;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .featured-post-section {
    padding: 2rem;
  }
}
.featured-post-section .featured-post {
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .featured-post-section .featured-post {
    flex-direction: row;
  }
}
.featured-post-section .featured-post a {
  color: black;
}
.featured-post-section .featured-post .img-container {
  width: 100%;
  height: 350px;
}
.featured-post-section .featured-post .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .featured-post-section .featured-post .img-container {
    width: 512px;
    min-width: 512px;
  }
}
.featured-post-section .featured-post .content-container {
  flex-grow: 1;
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: white;
}
@media (min-width: 768px) {
  .featured-post-section .featured-post .content-container {
    padding: 2rem;
  }
}

.posts-section {
  width: 100%;
  padding: 2rem 0;
}
.posts-section .post-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .posts-section .post-wrapper {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
  }
}
.posts-section .post-wrapper .post {
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  background-color: white;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .posts-section .post-wrapper .post {
    width: 340px;
    margin: 1rem 0.5rem;
  }
}
.posts-section .post-wrapper .post .img-container {
  width: 100%;
  height: 250px;
}
.posts-section .post-wrapper .post .img-container img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.posts-section .post-wrapper .post .content-container {
  display: flex;
  padding: 1rem;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #f5f5f5;
}
.posts-section .post-wrapper .post .content-container a {
  color: black;
}

.post-detail-section {
  width: 100%;
}
.post-detail-section .post-detail {
  width: 100%;
}
.post-detail-section .post-detail ol {
  margin-left: 1.5rem;
}
.post-detail-section .post-detail ol li {
  margin: 1rem 0;
}
.post-detail-section .post-detail .img-container {
  width: 100%;
  height: 250px;
}
@media (min-width: 768px) {
  .post-detail-section .post-detail .img-container {
    height: 400px;
  }
}
.post-detail-section .post-detail .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-detail-section .post-detail .content-container {
  margin: 1rem auto;
  padding: 1rem;
}
@media (min-width: 768px) {
  .post-detail-section .post-detail .content-container {
    margin: 2rem auto;
    padding: 2rem auto;
  }
}
.post-detail-section .post-detail .content-container h1 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .post-detail-section .post-detail .content-container h1 {
    font-size: 2rem;
  }
}
.post-detail-section .post-detail .content-container h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post-detail-section .post-detail .content-container .keywords-content {
  background-color: #f5f5f5;
  margin: 2rem 0;
  padding: 1rem;
}
.post-detail-section .post-detail .content-container .keywords-content h2, .post-detail-section .post-detail .content-container .keywords-content h3, .post-detail-section .post-detail .content-container .keywords-content h4, .post-detail-section .post-detail .content-container .keywords-content h5, .post-detail-section .post-detail .content-container .keywords-content h6 {
  display: inline;
  margin-right: 0.5rem;
  padding: 0;
}
.post-detail-section .post-detail .content-container .call-to-action {
  border: 2px dashed #ccc;
  background-color: #f5f5f5;
  padding: 1.5rem 1rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.post-detail-section .post-detail .content-container .call-to-action h4 {
  text-align: center;
}

.management .page-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  padding: 0 1rem;
  margin-top: 3.6rem;
}
.management .page-title .navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.management .page-title .navbar-nav .nav-item.active .nav-link {
  background-color: #e0e0e0;
}
.management .page-title .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: #000;
}
.management .page-title .navbar-nav .nav-item .nav-link:hover {
  background-color: #e0e0e0;
}
.management-post-details .btn-container .btn {
  width: 100%;
  margin: 0.2rem 0 !important;
}
.management-post-details .img-container {
  width: 100%;
  height: 256px;
  border: 1px solid #ccc;
}
.management-post-details .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.csk-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .csk-container {
    flex-direction: row;
  }
}
.csk-container .col-left {
  width: 100%;
  height: 50%;
  background-image: url("../../img/auths/bg-sm.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .csk-container .col-left {
    width: 50%;
    height: 100%;
    background-image: url("../../img/auths/bg-md.png");
    background-position: right;
  }
}
.csk-container .col-left .content-container {
  width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
@media (min-width: 768px) {
  .csk-container .col-left .content-container {
    width: 512px;
    height: 512px;
  }
}
.csk-container .col-left .content-container .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.csk-container .col-left .content-container .logo-container img {
  width: 160px;
  height: auto;
}
@media (min-width: 768px) {
  .csk-container .col-left .content-container .logo-container img {
    width: 200px;
  }
}
.csk-container .col-left .content-container .slogan-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.csk-container .col-left .content-container .slogan-container h1 {
  text-align: center;
  font-size: 1.3rem;
  color: white;
}
@media (min-width: 768px) {
  .csk-container .col-left .content-container .slogan-container h1 {
    font-size: 1.8rem;
  }
}
.csk-container .col-left .content-container .title-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.csk-container .col-left .content-container .title-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  text-shadow: 2px 2px 10px black;
}
.csk-container .col-right {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .csk-container .col-right {
    width: 50%;
    height: auto;
  }
}
.csk-container .col-right .content-container {
  width: 350px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  box-shadow: 0px 0px 1px rgba(48, 49, 51, 0.05), 0px 16px 24px rgba(48, 49, 51, 0.1);
  padding: 2rem 1rem;
  margin-top: -2rem;
}
@media (min-width: 768px) {
  .csk-container .col-right .content-container {
    width: 512px;
    min-height: 512px;
    padding: 2rem 1rem;
    margin-top: 0;
  }
}
.csk-container .col-right .content-container hr {
  width: 100%;
}
.csk-container .col-right .content-container h3 {
  align-items: center;
}
.csk-container .col-right .content-container h3 span {
  font-size: 1.75rem;
  font-weight: 500;
}
.csk-container .col-right .content-container h3 a, .csk-container .col-right .content-container h3 i {
  font-size: 1.2rem;
  color: #212529;
}
.csk-container .col-right .content-container .form-group {
  width: 100%;
}
.csk-container .col-right .content-container .lnk.lnk {
  font-size: 0.8rem;
}
.csk-container .col-right .content-container .access-error,
.csk-container .col-right .content-container .validation-error {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: red;
  font-size: 0.8rem;
}