/* defaults-css-start */
.readmore-link1 {
  color: var(--black-color);
  text-decoration: none;
  border: 1px solid var(--black-color);
  padding: 0;
  display: inline-block;
  text-align: center;
  min-width: 140px;
  padding: 4px;
  font-size: 0.875rem;
  transition: 0.3s;
}
.readmore-link1:hover {
  opacity: 0.8;
}

.page-top-text {
  margin-top: 40px;
  margin-bottom: 50px;
}

.text-primary {
  color: var(--primary) !important;
}

.Nav {
  background: #2b5265;
  position: absolute;
  width: 252px;
  height: 100%;
  opacity: 0;
  z-index: 111;
  visibility: hidden;
}
.Nav__body {
  background: hsl(var(--theme-white));
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.Nav__body > * {
  min-width: 0;
}
.Script .Nav__body {
  margin-inline-start: auto;
  max-width: 25rem;
}
.Nav__header {
  align-items: center;
  background: hsl(var(--theme-white));
  display: flex;
  flex-shrink: 0;
  height: var(--header-height);
  justify-content: space-between;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
}
.Nav__heading {
  font-size: 1rem;
  margin: 0;
}
.Nav__main {
  align-items: start;
  background: hsl(var(--theme-white));
  box-shadow: 0 0 2rem hsla(var(--theme-dark), 0.2);
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.Nav__main::-webkit-scrollbar {
  display: none;
}
.Nav__main > * {
  flex: 1 0 100%;
}
.Nav__menu {
  background: hsl(var(--theme-white));
  display: block;
  height: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  position: relative;
  scroll-snap-align: start;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
[dir=rtl] .Nav__menu {
  left: auto;
  right: 0;
}
.Nav__menu[aria-hidden=true] {
  display: none;
}
.Noscript .Nav__menu ~ .Nav__menu:not(:target) {
  display: none;
}
.Nav__item {
  margin: 0;
}
.Nav__item:not(:last-of-type) {
  border-bottom: 0.0625rem solid hsla(var(--theme-dark), 0.2);
}
.Nav__link {
  align-items: center;
  border-radius: 0.125rem;
  display: flex;
  padding: 0.5rem;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
}
.Nav__link > * {
  display: block;
  flex-grow: 1;
}
.Nav__link[aria-controls] {
  font-weight: 600;
}
.Nav__link .Icon {
  flex-grow: 0;
  margin-inline: 0.5rem 0;
}
.Nav__link .Icon:first-child {
  margin-inline: 0 0.5rem;
}
[dir=rtl] .Nav__link .Icon {
  transform: scaleX(-1);
}
.Script .Nav {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
.Script .Nav[aria-hidden=false] {
  display: flex;
}

.offcanvas {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(19px);
}
.offcanvas-backdrop {
  background: rgba(1, 1, 1, 0.75);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(19px);
}
.offcanvas-backdrop.show {
  opacity: 0.8 !important;
}
.offcanvas-link {
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
  padding: 0.75em 0;
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
}
.offcanvas-link:hover {
  color: #da6e40;
}
.offcanvas-link-subpage {
  font-size: 1rem !important;
  font-weight: 400 !important;
  margin-left: 1em;
}
.offcanvas-menu ul, .offcanvas-menu ul li {
    list-style: none;
}

.sidebar-header h2 {
  color: #da6e40;
  font-size: 1.25rem;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 0.9375em;
}

.article-header {
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: inherit;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .article-header h2 {
    font-size: 1.625rem;
  }
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

.highlights-text-safe-mobile {
  display: none;
}

@media (max-width: 767px) {
  .highlights-text-safe .hero-offer {
    margin-top: 0;
    margin-bottom: 30px;
    background: rgb(51, 102, 153);
  }
  .highlights-text-safe-mobile {
    display: block;
  }
  .highlights-text-safe-desktop {
    display: none;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.cta {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 0px;
  z-index: 1;
}
.cta::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}
.cta-content {
  max-width: 37.5rem;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.cta-content p {
  color: #fff;
  margin-bottom: 1.75rem;
}

@media (min-width: 991px) {
  .padding-right-1 {
    padding-right: 1.875rem;
  }
}
.dep-widget {
  margin-bottom: 1.25rem;
}

.home-title {
  font-size: 3rem;
  text-align: center;
  font-family: var(--rockwell);
  font-weight: bold;
}

.home-title-line {
  width: 15%;
  margin: 0 auto 13px auto;
  background-color: var(--black-color);
  opacity: 1;
  height: 2px;
}

.tagline {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}
#featrues {
    margin-bottom: 2rem;
}
#features .features-div {
  position: relative;
}
#features .features-absolute {
  width: 45%;
  background: white;
  padding: 17px 17px 10px;
  position: absolute;
  bottom: -30px;
  left: -30px;
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
}
#features .features-list {
  padding: 10px 0;
}
#features .features-list h5 {
  margin-bottom: 5px;
  margin-top: 20px;
}
#features .features-list p {
  margin-bottom: 0;
  margin-top: 5px;
}
#features .features-list p a {
  color: var(--link-color);
  text-decoration: none;
  transition: 0.3s;
}
#features .features-list p a:hover {
  opacity: 0.8;
}
#features .featuresRow .featuresRow-title {
  margin-top: 110px;
}
@media (max-width: 767.98px) {
    #features {
        padding-bottom: 0;
    }
}
.featuresRow-secondCol .featuresRow-secondCol-div {
  margin-bottom: 20px;
}
.featuresRow-secondCol .featuresRow-secondCol-title {
  margin-bottom: 14px;
}
.featuresRow-secondCol .featuresRow-secondCol-div-title {
  margin-bottom: 5px;
}
.featuresRow-secondCol .featuresRow-secondCol-div-text {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 22px;
}
.featuresRow-secondCol .featuresRow-secondCol-div-link {
  margin: 11px 0px 0px 0px;
}

/* #main #faq .card .card-header {
    border: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    border-radius: 2px;
    padding: 0;
} */
#main #faq {
  margin-bottom: 50px;
}
#main #faq .card {
  border: 0;
}
#main #faq .card .card-header {
  padding: 0;
  background-color: var(--bgtransparent);
  border-bottom: none;
}
#main #faq .card .card-header .btn-header-link {
  background-color: var(--bgtransparent);
  color: var(--red-color);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  padding-left: 0px;
  font-weight: 700;
  position: relative;
  padding-bottom: 2px;
  transition: border 0.1s ease-out;
  text-transform: uppercase;
  position: relative;
}
#main #faq .card .card-header .btn-header-link:focus {
  box-shadow: none;
}
#main #faq .card .card-header .btn-header-link:after {
  content: "\f107";
  font-family: "Font Awesome 5 pro";
  font-weight: 900;
  float: right;
  position: absolute;
  right: 0;
  top: 15px;
}
#main #faq .card .card-header .btn-header-link.collapsed {
  color: var(--red-color);
}
#main #faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f106";
}
#main #faq .card .card-body {
  padding: 0;
}
#main #faq .card .collapsing {
  background: transparent;
  line-height: 30px;
}
#main #faq .card .collapse {
  border: 0;
}
#main #faq .card .collapse.show {
  background: transparent;
  line-height: 30px;
  color: var(--black-color);
}

#counter {
  background: #fff2d9;
  padding: 20px;
  border-radius: 5px;
}
#counter .counter-title {
  margin-bottom: 20px;
}

#counter .count-title {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-size: 2.75rem;
  font-weight: 400;
  font-family: var(--rockwell);
  margin: 0;
  line-height: 2.75rem;
}

#counter .count-text {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

.fa-2x {
  margin: 0 auto;
  float: none;
  display: table;
  color: var(--black-color);
}

.counter1 {
  padding: 20px 0;
  border-radius: 5px;
}
.counter1 .count-title {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-size: 26px;
  color: var(--black-color);
  font-weight: 400;
  font-family: var(--rockwell);
  margin: 0;
  line-height: 35px;
}
.counter1 .count-text {
  font-size: 18px;
  font-weight: normal;
  margin-top: 0;
  color: var(--black-color);
  margin-bottom: 0;
  text-align: center;
}
.counter1 .count-link {
  color: #b47530;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}
.counter1 .count-link:hover {
  opacity: 0.8;
}

#counter1 {
  margin-top: 50px;
}
#counter1 .counter1-title {
  text-align: center;
  color: var(--black-color);
}

img.profile-image-circle {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 5px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  #features .features-div, .features-img-div {
    position: relative;
    margin-bottom: 25px;
  }
  #features .features-img-div {
    float: left;
  }
  #features .features-img-div .features-img {
    border-radius: 15px 15px 0px 0px;
  }
  #features .features-absolute {
    width: 100%;
    background: white;
    padding: 17px;
    position: revert;
    top: 55%;
    left: -7%;
    box-shadow: 0 9px 32px 0 rgba(0, 0, 0, 0.2);
    border-radius: 15px;
  }
  .featuresRow-secondCol {
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  #features .features-img-div .features-img {
    border-radius: 15px 15px 0 0;
  }
  #features .features-absolute {
    width: 100%;
    background: white;
    padding: 17px;
    position: revert;
    top: 55%;
    left: -7%;
    box-shadow: 0 9px 32px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0 0 15px 15px;
  }
}
/* Style focused elements when the show-focus class is added to the body */
.show-focus a:focus,
.show-focus button:focus,
.show-focus input:focus,
.show-focus select:focus,
.show-focus textarea:focus,
.show-focus [tabindex]:focus:not([tabindex="-1"]) {
  outline: 5px solid var(--medium-blue); /* Change 'blue' to the desired border color */
}

/* Style focused elements when the user is tabbing */
.user-is-tabbing :focus {
  outline: 3px dotted var(--medium-blue); /* Change 'blue' to the desired border color */
}


.voice-area {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .voice-area {
    margin-top: 50px;
  }
}

.voice-banner {
  background: var(--gray-color);
  padding: 30px;
  border-radius: 15px;
}
.voice-banner .voice-banner-content {
  max-width: 280px;
}
.voice-banner .voice-banner-content h3 {
  color: var(--dark-green);
}

.voice-items {
  width: 1200px;
  margin-left: -280px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .voice-items {
    margin-left: -150px;
  }
}
@media (max-width: 991px) {
  .voice-items {
    width: auto;
    margin-left: 15px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .voice-items {
    margin-left: 10px;
    margin-top: -30px;
  }
}
.voice-items .voice-item {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 3px 4px var(--gray-color);
  margin: 10px;
}
.voice-items .voice-item .voice-item-inner {
  max-width: 150%;
  background: var(--white-color);
  min-height: 100px;
  padding: 10px;
  display: flex;
  align-items: center;
}
.voice-items .voice-item .voice-item-inner h5 {
  font-family: var(--arimo);
  font-weight: 400;
}
.voice-items .voice-item .voice-item-inner h5 a {
  display: block;
  color: var(--darker-green);
  font-size: 1rem;
  text-decoration: none;
  margin-top: 5px;
}
.voice-items .voice-item .voice-item-inner h5 a:hover {
  opacity: 0.8;
}

.notes-area {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .notes-area {
    margin-top: 0;
  }
}

.notes-content {
  float: right;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .notes-content {
    float: none;
    margin-left: 30px;
  }
}
.notes-content p {
  font-size: 18px;
}
.notes-content p a {
  color: var(--primary);
  transition: 0.3s;
  text-decoration: none;
}
.notes-content p a:hover {
  opacity: 0.8;
}

.note-items .note-item {
  box-shadow: 0 1px 8px 5px var(--gray-color);
  border-radius: 10px;
  padding: 15px;
  margin: 15px;
}
.note-items .note-item .note-icon img {
  width: 20px;
}
.note-items .note-item .note-icon i {
  font-size: 30px;
  color: var(--yellow-color);
}
.note-items .note-item .note-client {
  display: flex;
  align-items: center;
}
.note-items .note-item .note-client .note-client-img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
}
.note-items .note-item .note-client .note-client-img img {
  display: block;
  width: 100%;
}
.note-items .note-item .note-client-text {
      margin-left: 15px;
}
.note-items .owl-theme .owl-nav {
    left: -100px;
    bottom: 70px;
    position: absolute;
    font-size: 22px;
}
@media (max-width: 767px) {
    .note-items .owl-theme .owl-nav {
        position: static;
        margin-top: -15px;
    }
}
.note-items .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: var(--yellow-color);
}

/* BEGIN Glad Ask Styles */
.glad_ask {
    padding: 1.25rem 0;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center; 
    background-color: #000;
}
.glad_ask .glad_ask_text {
    background: rgba(0, 0, 0, .5);
    padding: 2rem;
}
.glad_ask .glad_ask_text .red_sm_title {
    color: var(--red-color);
    font-size: 0.9375rem;
    font-weight: 600;
}
.glad_ask .glad_ask_text .green_sm_title {
    color: var(--light-green);
    font-size: 0.9375rem;
    font-weight: 600;
}
.glad_ask .glad_ask_text .title, .glad_ask .glad_ask_text p {
    color: var(--white-color);
}
.glad_ask .glad_ask_text a,
.glad_ask .glad_ask_text p a {
    color: var(--white-color);
    text-decoration: none;
}
.glad_ask .glad_ask_text a:hover,
.glad_ask .glad_ask_text p a:hover,
.glad-ask .glad_ask_text a:focus,
.glad-ask .glad_ask_text p a:focus {
    opacity: 0.8;
}
.glad_ask .glad_ask_text a span {
    color: var(--light-green);
}
.glad_ask .glad_ask_text a span i {
    font-weight: 700;
    font-size: 1rem;
}
.glad_ask .sqr_box {
    height: 250px;
    padding: 20px;
    border-radius: 0;
    border: 0;
    position: relative;
    margin-top: 12px;
    margin-bottom: 12px;
    background-color: #83836B;
    color: #fff;
}
.glad_ask .sqr_box.active {
    background-color: #B7675C;
}
.glad_ask .sqr_box h4 {
    color: var(--white-color);
    font-family: var(--arimo);
}
.glad_ask .sqr_box .plus_link {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 20px;
    color: #fff;
}

.glad_ask .sqr_box {
    position: relative;
}
.glad_ask .sqr_box .over_layer {
  width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--dark-green);
    padding: 30px;
    padding-bottom: 0;
    overflow-y: auto;
    display: none;
}
.glad_ask .sqr_box .over_layer .read-more-safe,
.glad_ask .sqr_box .over_layer .read-more-safe a {
    text-align: right;
    color: var(--white-color);
}
.glad_ask .sqr_box .over_layer .read-more-safe a:hover {
    opacity: 0.8;
}
.glad_ask .sqr_box .over_layer .close_btn {
    cursor: pointer;
    color: var(--white-color);
    position: absolute;
    right: 10px;
    top: 6px;
    font-size: 21px;
    line-height: 1;
    border-radius: 100%;
    opacity: 0.7;
    transition: 0.3s;
}
.glad_ask .sqr_box .over_layer .close_btn:hover {
    opacity: 1;
}
@media (max-width: 991px) {
.glad_ask .glad_ask_text {
        background: rgba(0, 0, 0, .5);
    }
}
/* END Glad Ask Styles */

.explore-area {
    margin-top: 3.125;
}
@media (max-width: 767px) {
    .explore-area {
        padding-bottom: 0 !important;
    }
}

.exp_commun .title_green {
    color: var(--dark-green);
    font-size: 36px;
    margin-bottom: 28px;
}
@media (max-width: 767px) {
    .exp_commun .title_green {
        font-size: calc(1.3rem + 0.6vw);
        margin-bottom: 15px;
    }
}
.exp_commun .card {
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 16px 0px img;
    box-shadow-border-radius: 0 !important;
}
.exp_commun .card .col_cont {
    transition: 0.5s;
}
@media (max-width: 767px) {
    .exp_commun .card .col_cont {
        opacity: 1;
    }
}
.exp_commun .card.active .col_cont, .exp_commun .card:hover .col_cont {
    opacity: 1;
}
.exp_commun p {
    margin: 0;
}
.exp_commun .col_cont a {
    font-size: 50px;
    opacity: 0.6;
}
.exp_commun .col_cont a:hover {
    opacity: 1;
}
.active-item-safe .card {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 7px 17px 12px;
}

@media (max-width: 767px) {
    .card-item-safe {
        margin-bottom: 30px;
    }
}

.title_bg_img {
  position: relative;
  margin-bottom: -25px;
  display: inline-block;
}
.title_bg_img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 28px;
  bottom: 0;
  height: 125px;
  background: var(--white-color);
}
@media (max-width: 767px) {
  .title_bg_img:before {
    right: 10px;
    height: 140px;
  }
}
@media (max-width: 448px) {
  .title_bg_img:before {
    height: 160px;
    right: 5px;
  }
}
.title_bg_img .title_bg_img_t {
  position: absolute;
  bottom: 0;
  max-width: 85%;
  /* font-size: 37px; */
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .title_bg_img .title_bg_img_t {
    margin-top: -39px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .title_bg_img .title_bg_img_t {
    max-width: 95%;
  }
}

.council-item img {
  margin-bottom: 10px;
  max-width: 30px;
}
.council-item p {
  margin-bottom: 5px;
}
.council-item a {
  color: var(--dark-green);
  transition: 0.3s;
  text-decoration: none;
  display: block;
}
.council-item a:hover {
  opacity: 0.8;
}

.carousel-4 .owl-nav button.owl-prev {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .carousel-4 .owl-nav button.owl-prev {
    position: static;
  }
}
.carousel-4 .owl-nav button.owl-prev:hover {
  background: transparent;
  color: var(--dark-green);
}
.carousel-4 .owl-nav button.owl-prev::before {
  content: "";
  position: absolute;
  right: -5px;
  height: 40px;
  width: 1px;
  background: var(--dark-green);
  top: -7px;
}
.carousel-4 .owl-nav button.owl-next {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .carousel-4 .owl-nav button.owl-next {
    position: static;
  }
}
.carousel-4 .owl-nav button.owl-next:hover {
  background: transparent;
  color: var(--dark-green);
}
.carousel-4 .owl-nav button.owl-next::before {
  content: "";
  position: absolute;
  left: -5px;
  height: 40px;
  width: 1px;
  background: var(--dark-green);
  top: -7px;
}

.out_n_about img {
  width: 100%;
}

.title_bigop {
  color: #cccccc;
  font-size: 87px;
  margin: 0;
  padding: 0;
  margin-bottom: -29px;
  font-weight: lighter;
}
@media (max-width: 991px) {
  .title_bigop {
    font-size: 44px;
    margin-bottom: -15px;
  }
}
@media (max-width: 320px) {
  .title_bigop {
    font-size: 30px;
    margin-bottom: -11px;
  }
}

.right-social {
  position: absolute;
  right: -40px;
  top: 10px;
}
.right-social ul li {
  max-width: 35px;
  margin-bottom: 10px;
}
.right-social ul li a:hover {
  opacity: 0.8;
}

.out-about-area {
  margin-bottom: 3.75rem;
}
@media (max-width: 1024px) {
  .out-about-area {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .out-about-area {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.out-about-area .custom-safe-social {
  position: absolute;
  right: -60px;
  top: 10px;
  display: block;
}
@media (max-width: 767px) {
  .out-about-area .custom-safe-social {
    display: none;
  }
}
.out-about-area .custom-safe-social li {
  margin-bottom: 15px;
}
.out-about-area .custom-safe-social li:nth-child(2) {
  margin-top: -15px;
}
.out-about-area .custom-safe-social a {
  display: block;
  text-align: center;
}
.out-about-area .custom-safe-social a:hover {
  opacity: 0.8;
}
.out-about-area .custom-safe-social a i.fa-facebook-f {
  color: #fff;
  background: #3b5998;
}
.out-about-area .custom-safe-social a i.fa-facebook {
  color: #fff;
  background: #3b5998;
}
.out-about-area .custom-safe-social a i.fa-youtube {
  color: #fff;
  background: #FF0000;
}
.out-about-area .custom-safe-social a i.fa-linkedin {
  color: #fff;
  background: #0072b1;
}
.out-about-area .custom-safe-social a i.fa-instagram {
  color: #fff;
  background: #fa7e1e;
}
.out-about-area .custom-safe-social a i.fa-twitter {
  background-image: url(/media/5tsbbqon/twitter-01.png) !important;
  background-size: contain;
  font-size: 0;
}
.out-about-area .custom-safe-social i {
  font-size: 20px;
  margin-right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  line-height: 2;
  text-align: center;
}

.gall-items .gall-item {
  margin-bottom: 25px;
}

.nectar_team_member_overlay {
  height: 100%;
  width: 100%;
  background-color: var(--gray-color);
  color: var(--overlay-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.nectar_team_member_overlay .inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.nectar_team_member_overlay .team_member_picture {
  height: 100%;
  width: 50%;
  position: fixed;
  right: 0;
  top: 0;
  background-color: var(--black-color);
}
.nectar_team_member_overlay .team_member_picture .team_member_image_bg_cover {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1001;
  left: -2px;
  top: 0;
  transform: scaleX(1);
  transform-origin: left;
  background-color: var(--gray-color);
  transition: transform 1s cubic-bezier(0.25, 1, 0.2, 1);
}
.nectar_team_member_overlay .team_member_image {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  transition: transform 15s cubic-bezier(0.15, 0, 0.7, 1), opacity 0.3s;
  transform: scale(1.11);
  opacity: 0;
  background-position: center top;
}
.nectar_team_member_overlay .bottom_meta a {
  display: inline-block;
  color: var(--inherit-color);
  padding: 30px 30px 30px 0;
}
.nectar_team_member_overlay .bottom_meta a i {
  height: auto;
  width: auto;
  font-size: 28px;
  transition: color 0.2s ease;
}
.nectar_team_member_overlay .bottom_meta a:not(:hover) i {
  color: var(--inherit-color);
}
.nectar_team_member_overlay .team_member_details {
  width: 50%;
  left: 0;
  position: relative;
  padding: 3% 10%;
  margin: auto 0;
  max-height: 100vh;
  overflow-y: scroll;
}
.nectar_team_member_overlay .team_member_details .bio-inner {
  height: 100%;
}
.nectar_team_member_overlay .team_member_details .title {
  line-height: 20px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.4s;
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.55s;
}
.nectar_team_member_overlay .team_member_details h2 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.4s;
}
.nectar_team_member_overlay .team_member_details .mobile-close {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.4s;
}
.nectar_team_member_overlay .team_member_details .team-desc {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.4s;
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.7s;
}
.nectar_team_member_overlay .team_member_details .team-desc a {
  text-decoration: none;
}
.nectar_team_member_overlay .team_member_details .team-desc .bottom_meta a {
  text-decoration: none;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.4s;
}
.nectar_team_member_overlay .team_member_details .team-desc .bottom_meta a:nth-child(1) {
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.85s;
}
.nectar_team_member_overlay .team_member_details .team-desc .bottom_meta a:nth-child(2) {
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.9s;
}
.nectar_team_member_overlay .team_member_details .team-desc .bottom_meta a:nth-child(3) {
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 0.95s;
}
.nectar_team_member_overlay .team_member_details .team-desc .bottom_meta a:nth-child(4) {
  transition: all 1.1s cubic-bezier(0.2, 1, 0.2, 1) 1s;
}
.nectar_team_member_overlay .team_member_details .team-desc p:empty {
  display: block;
}

.nectar_team_member_overlay.in-boxed {
  z-index: 10010;
}
.nectar_team_member_overlay.in-boxed .inner-wrap {
  top: 0 !important;
}

.nectar-close-indicator.in-boxed {
  z-index: 10020;
}

.nectar_team_member_overlay.open {
  transform: translateX(0%);
}
.nectar_team_member_overlay.open:not(.animating) .team_member_image {
  transform: scale(1);
}
.nectar_team_member_overlay.open .team_member_details .mobile-close {
  opacity: 1;
  transform: translateY(0px);
}
.nectar_team_member_overlay.open .team_member_details h2 {
  opacity: 1;
  transform: translateY(0px);
}
.nectar_team_member_overlay.open .team_member_details .title {
  opacity: 1;
  transform: translateY(0px);
}
.nectar_team_member_overlay.open .team_member_details .team-desc {
  opacity: 1;
  transform: translateY(0px);
}
.nectar_team_member_overlay.open .team_member_details .team-desc .bottom_meta a {
  text-decoration: none;
  opacity: 1;
  transform: translateY(0px);
}
.nectar_team_member_overlay.open .team_member_picture .team_member_image_bg_cover {
  transform: scaleX(0);
}

.nectar_team_member_overlay.open.on-mobile {
  cursor: pointer;
}

.team_member_picture_wrap {
  overflow: hidden;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
}

.using-mobile-browser .nectar_team_member_overlay .team_member_details {
  height: 100vh;
  overflow: scroll;
}

.nectar-close-indicator {
  left: -45px;
  position: fixed;
  top: -45px;
  pointer-events: none;
  display: block;
  height: 90px;
  width: 90px;
  text-align: center;
  line-height: 88px;
  font-size: 24px;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: transform, opacity;
  mix-blend-mode: difference;
}
.nectar-close-indicator .inner {
  border: 2px solid var(--white-color);
  height: 90px;
  width: 90px;
  line-height: 88px;
  opacity: 0;
  font-size: 24px;
  border-radius: 100px;
  transition: opacity 0.2s;
}
.nectar-close-indicator .inner:before {
  font-family: var(--font-awesome-5);
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\f00d";
  color: var(--white-color);
  font-size: 24px;
  display: block;
}
.nectar-close-indicator .inner.visible {
  opacity: 1;
}

.nectar-close-indicator.visible {
  opacity: 1;
}

body.nectar-no-scrolling {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
body.nectar-no-scrolling .nectar_team_member_overlay .team_member_details {
  margin: 0;
  overflow: visible;
}
body.nectar-no-scrolling .nectar_team_member_overlay .team_member_details .bio-inner {
  height: auto;
}
body.nectar-no-scrolling .nectar_team_member_overlay .inner-wrap {
  height: auto;
}

html.nectar-no-scrolling {
  overflow: hidden;
  height: 100vh;
}

@media only screen and (max-width: 690px) {
  .nectar_team_member_overlay .team_member_details {
    padding: 10% 10%;
  }
}
@media only screen and (min-width: 690px) and (max-width: 999px) {
  .nectar_team_member_overlay .team_member_picture {
    width: 35%;
  }
  .nectar_team_member_overlay .team_member_details {
    width: 65%;
  }
  .team-member[data-style=meta_overlaid] .team-member-image {
    height: 500px;
  }
  .one-fourths .team-member[data-style=meta_overlaid] .team-member-image {
    height: 350px;
  }
  .wpb_row:not(.full-width-content) .vc_span3.one-fourths .team-member[data-style=meta_overlaid] .team-member-image {
    height: 250px;
  }
  .wpb_row:not(.full-width-content) .vc_col-sm-3.one-fourths .team-member[data-style=meta_overlaid] .team-member-image {
    height: 250px;
  }
}
@media only screen and (max-width: 690px) {
  .nectar_team_member_overlay {
    overflow-y: auto;
  }
  .nectar_team_member_overlay .team_member_details {
    width: 100%;
  }
  .nectar_team_member_overlay .team_member_picture {
    display: none;
  }
  .nectar_team_member_overlay .inner-wrap {
    overflow: visible;
  }
}
@media only screen and (min-width: 1px) and (max-width: 999px) {
  .nectar-close-indicator {
    display: none;
  }
  .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    display: block;
    height: 32px;
    width: 32px;
    border-radius: 50px;
    transform-origin: center;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid;
  }
  .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:before {
    position: absolute;
    display: block;
    height: 2px;
    width: 16px;
    left: 6px;
    top: 13px;
    content: " ";
    background: #000;
  }
  .nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:after {
    position: absolute;
    display: block;
    height: 16px;
    width: 2px;
    left: 13px;
    top: 6px;
    content: " ";
    background: #000;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1300px) {
  .team-member[data-style=meta_overlaid] .team-meta {
    bottom: 30px;
  }
}
@media only screen and (min-width: 690px) {
  body.nectar-no-scrolling .nectar_team_member_overlay .team_member_details {
    overflow-y: scroll;
  }
}
.big-title h2 {
  font-size: 105px;
  font-family: var(--arimo);
  line-height: 1;
}

.board {
  max-width: 205px;
  float: right;
}
@media (max-width: 767px) {
  .board {
    max-width: 300px;
    float: none;
    margin-bottom: 30px;
    margin-top: 20px;
    margin-left: 15px;
  }
}
.board h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.board ul {
  margin: 0;
  padding: 20px 0;
  list-style: none;
  padding-bottom: 30px;
  background: var(--black-color);
}
.board ul li {
  padding: 5px 10px;
}
.board ul li:last-child {
  background: #ffd200;
  margin-left: -22px;
  margin-top: 10px;
}
.board ul li:last-child a {
  color: var(--black-color);
  font-weight: 600;
}
.board ul li a {
  color: var(--white-color);
  transition: 0.3s;
  text-decoration: none;
}
.board ul li a:hover {
  opacity: 0.8;
}

.block-x-area .divider,
.block-y-area .divider,
.block-z-area .divider {
  height: 2px;
  background: var(--title-color);
}
.block-x-area .divider2,
.block-y-area .divider2,
.block-z-area .divider2 {
  height: 6px;
}
.block-x-area .divider-bold,
.block-y-area .divider-bold,
.block-z-area .divider-bold {
  height: 4px;
  background: #60707d;
}
.block-x-area .left-right-border,
.block-y-area .left-right-border,
.block-z-area .left-right-border {
  border-left: 2px solid;
  border-right: 2px solid;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .block-x-area .left-right-border,
  .block-y-area .left-right-border,
  .block-z-area .left-right-border {
    padding-left: 15px;
  }
}
.block-x-area .block-content strong,
.block-y-area .block-content strong,
.block-z-area .block-content strong {
  text-decoration: underline;
  display: block;
  font-size: 72px;
}
@media (max-width: 767px) {
  .block-x-area .block-content strong,
  .block-y-area .block-content strong,
  .block-z-area .block-content strong {
    font-size: 48px;
  }
}
.block-x-area .block-content span,
.block-y-area .block-content span,
.block-z-area .block-content span {
  font-weight: 700;
  display: block;
  margin-top: -16px;
}
.block-x-area .block-part-x1 strong,
.block-y-area .block-part-x1 strong,
.block-z-area .block-part-x1 strong {
  font-size: inherit;
  display: inline;
  text-decoration: none;
}
.block-x-area .block-part-x1 span,
.block-y-area .block-part-x1 span,
.block-z-area .block-part-x1 span {
  display: inline;
}

.font-family-x {
  font-family: var(--rockwell);
}

.block-part-x {
  margin-top: 30px;
  margin-bottom: 30px;
}
.block-part-x ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.block-part-x2 .block-content span {
  font-size: 30px;
}

.block-part-x3 .block-content {
  padding-left: 40px;
}
@media (max-width: 767px) {
  .block-part-x3 .block-content {
    padding-left: 0;
  }
}
.block-part-x3 .block-content span {
  font-size: 30px;
}

.border-right-y {
  border-right: 2px solid;
  padding-right: 30px;
}

.block-part-y1 .block-content {
  padding-left: 40px;
}
.block-part-y1 .block-content strong {
  font-size: 25px;
  text-decoration: none;
}
.block-part-y1 .block-content span {
  text-decoration: underline;
  font-size: 72px;
  display: block;
  margin-bottom: 10px;
}

.block-part-y {
  margin-top: 40px;
  margin-bottom: 40px;
}

.block-part-y2 .block-content span {
  font-size: 32px;
  margin-top: -16px;
}

.block-part-z {
  margin-top: 30px;
  margin-bottom: 30px;
}

.block-part-z1 .block-content strong {
  text-decoration: underline;
  font-size: 72px;
  display: block;
  margin-bottom: 7px;
}
.block-part-z1 .block-content span {
  text-decoration: underline;
  font-size: 72px;
  margin-bottom: -15px;
  margin-top: -20px;
}
.block-part-z1 h2 {
  position: relative;
}
.block-part-z1 h2:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--title-color);
}

.block-z-area {
  margin-bottom: 100px;
}

.border-left-z {
  border-left: 2px solid;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .border-left-z {
    padding-left: 15px;
  }
}

.block-part-z2 img {
  display: block;
  width: 100%;
}
.block-part-z2 h3 {
  font-size: 58px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  font-family: var(--rockwell);
  font-weight: normal;
}
.block-part-z2 h3:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #60707d;
}
.block-part-z2 p.underline-p {
  margin-top: 10px;
  position: relative;
  padding-bottom: 20px;
}
.block-part-z2 p.underline-p:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #60707d;
}
.block-part-z2 p {
  margin-top: 10px;
}
.block-part-z2 strong {
  font-size: 72px;
  float: left;
  line-height: 1;
  border-bottom: 6px solid;
  margin-right: 16px;
  display: block;
  margin-bottom: 10px;
}

.block-content.bg-1 {
  background-color: var(--yellow-color);
  color: var(--white-color);
  padding: 30px;
  margin-bottom: 15px;
}

@media (max-width: 1000px) {
  .big-title h2 {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .big-title h2 {
    font-size: 32px;
  }
  .block-x-inner h2 {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .block-part-x2 .block-content strong {
    font-size: 48px;
  }
  .block-part-x3 .block-content strong {
    font-size: 48px;
  }
  .block-part-y1 .block-content span {
    font-size: 48px;
  }
  .block-part-y2 .block-content strong {
    font-size: 48px;
  }
  .block-part-z2 strong {
    font-size: 62px;
  }
  .block-part-z1 .block-content span {
    font-size: 48px;
  }
  .block-part-z1 .block-content strong {
    font-size: 48px;
  }
}
.widget-safe-1-a {
  margin-bottom: 20px;
}

.widget-safe-1 h3 {
  margin-bottom: 15px;
}
.widget-safe-1 img {
  display: block;
  width: 100%;
}
.widget-safe-1 span {
  display: block;
  margin-top: 10px;
}
.widget-safe-1 p {
  margin-bottom: 30px;
  margin-top: 15px;
}

.divider {
  height: 3px;
  background: var(--gray-color);
}

.widget-safe-1-b {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .right-sidebar {
    margin-top: 50px;
  }
}
.resources {
  text-align: center;
  margin-top: 35px;
}
.resources .resources-inner {
  background: var(--gray-color);
  padding-top: 28px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.resources h3 {
  margin-bottom: 30px;
}
.resources .icon-list a {
  text-decoration: none;
  display: block;
}
.resources .icon-list h4 {
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--title-color);
}
.resources .icon-list img {
  height: 40px;
  width: auto;
}
.resources .row {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.icon-list {
  max-width: 270px;
  margin: auto;
  margin-bottom: 30px;
}

.img-text img {
  display: block;
  width: 100%;
}
.img-text h4 {
  margin-top: 20px;
}

.about-main-content {
  margin-bottom: 70px;
  margin-top: 50px;
}

.about-first-content {
  padding-right: 30px;
}
.about-first-content .btn-safe {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .about-first-content {
    padding-right: 0;
  }
}

.about-middle-content {
  margin-top: 70px;
  padding-left: 20px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .about-middle-content {
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}

.box-img-safe figure {
  margin-bottom: 0;
}
.box-img-safe figure img {
  display: block;
  width: 100%;
}
.box-img-safe figure figcaption {
  color: var(--title-color);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
}
.box-img-safe .about-img-sub-title p {
  margin-top: -5px;
}

.about-main-all {
  position: relative;
}
.about-main-all .welcome-text {
  position: absolute;
  top: 50%;
  opacity: 0.05;
}
@media (max-width: 991px) {
  .about-main-all .welcome-text {
    display: none;
  }
}
.about-main-all .welcome-text h2 {
  font-size: 206px;
  margin: -13% 9% 0% 0%;
}

.video-popup-are {
  background-attachment: fixed;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .video-popup-are {
    min-height: 320px;
  }
}

.qode_video_box {
  text-align: center;
}
.qode_video_box .qode_video_image {
  position: relative;
  display: inline-block;
}
.qode_video_box .qode_video_image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  z-index: 33;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  -webkit-transition: opacity 0.3s ease-out;
}
.qode_video_box .qode_video_image:hover::after {
  opacity: 1;
}
.qode_video_box .qode_video_image:hover img {
  transform: scale(1.05) rotate(0.01deg);
  -webkit-transform: scale(1.05) rotate(0.01deg);
}
.qode_video_box .qode_video_image:hover .video-box-button {
  background-color: var(--link-color);
}
.qode_video_box .qode_video_image:hover .video-box-button-arrow {
  border-left-color: var(--white-color);
}
.qode_video_box .qode_video_image img {
  display: block;
  position: relative;
  max-width: 100%;
  z-index: 22;
  transition: transform 0.2s ease-out;
  -webkit-backface-visibility: hidden;
}
.qode_video_box .qode_video_image .video-box-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 44;
}
.qode_video_box .qode_video_image .video-box-button {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 158px;
  width: 158px;
  background-color: var(--black-color);
  overflow: hidden;
  border-radius: 50%;
  box-sizing: border-box;
  transition: background-color 0.15s ease-out;
  -webkit-transition: background-color 0.15s ease-out;
}
@media (max-width: 991px) {
  .qode_video_box .qode_video_image .video-box-button {
    height: 120px;
    width: 120px;
  }
}
.qode_video_box .qode_video_image .video-box-button-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-48%, -50%);
  -webkit-transform: translate(-48%, -50%);
  border-top: 12px solid transparent;
  border-left: 18px solid var(--white-color);
  border-bottom: 12px solid transparent;
  box-sizing: border-box;
}

.special-moment {
  margin-top: 70px;
  margin-bottom: 30px;
}
.special-moment .special-moment-item {
  margin-bottom: 30px;
}
.special-moment h3 {
  margin-bottom: 50px;
  margin-right: 50px;
}
@media (max-width: 991px) {
  .special-moment h3 {
    margin-right: auto;
  }
}

.quote-safe-area {
  background: var(--black-color);
  padding-top: 100px;
  padding-bottom: 100px;
}

.carousel-quote.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
  color: var(--yellow-color);
}

.quote-item-safe-01 {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .quote-item-safe-01 {
    display: block;
  }
}
.quote-item-safe-01 .quote-left {
  max-width: 180px;
  flex: 0 0 180px;
  margin-right: 30px;
  margin-bottom: 15px;
}
.quote-item-safe-01 .quote-left img {
  max-width: 100%;
  border-radius: 50%;
}
.quote-item-safe-01 .quote-right {
  max-width: 700px;
}
.quote-item-safe-01 .quote-right h3 {
  color: var(--white-color);
  font-weight: 500;
  font-family: var(--arimo);
  font-weight: 500;
}
.quote-item-safe-01 .quote-right h4 {
  color: var(--white-color);
  font-family: var(--arimo);
  font-weight: 500;
  font-size: 20px;
  margin-top: 20px;
}
.quote-item-safe-01 .quote-right h4 span {
  display: block;
  color: var(--overlay-color);
}

.showcase-area {
  margin-top: 100px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 1200px) {
  .showcase-area {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.showcase-area .col-5cl {
  flex: 0 0 auto;
  width: 20%;
}
@media (max-width: 991px) {
  .showcase-area .col-5cl {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .showcase-area .col-5cl {
    width: 100%;
  }
}
.showcase-area .big-text-end {
  font-size: 170px;
  font-weight: 700;
  text-align: right;
  opacity: 0.05;
  margin-bottom: -46px;
  line-height: 1;
  position: relative;
  z-index: -1;
}
@media (max-width: 1500px) {
  .showcase-area .big-text-end {
    font-size: 110px;
    margin-bottom: -30px;
  }
}
@media (max-width: 1199px) {
  .showcase-area .big-text-end {
    font-size: 100px;
    margin-bottom: -25px;
  }
}
@media (max-width: 991px) {
  .showcase-area .big-text-end {
    font-size: 60px;
    margin-bottom: -20px;
  }
}

.showcase-item .showcase-item-img {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.showcase-item .showcase-item-img img {
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  width: 100%;
}
.showcase-item .showcase-item-img:hover img {
  transform: scale(1.1);
}
.showcase-item .showcase-item-img:hover::before {
  opacity: 0.7;
  transform: scale(1.5);
}
.showcase-item .showcase-item-img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--black-color);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  z-index: 1;
  opacity: 0;
}
.showcase-item .showcase-item-content a {
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  display: block;
}
.showcase-item .showcase-item-content a:hover {
  opacity: 0.8;
}
.showcase-item .showcase-item-content h4 {
  font-size: 18px;
  margin-top: 20px;
}

.awards-area {
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--gray-color);
}
@media (min-width: 0px) {
  .awards-area .col-lg-safe-3 {
    flex: 0 0 auto;
    width: 100%;
  }
  .awards-area .col-lg-safe-4-5 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 480px) {
  .awards-area .col-lg-safe-4-5 {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .awards-area .col-lg-safe-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .awards-area .col-lg-safe-4-5 {
    flex: 0 0 auto;
    width: 37.5%;
  }
}
@media (max-width: 767px) {
  .awards-area {
    padding-top: 70px;
    padding-bottom: 30px;
  }
  .awards-area .col-lg-safe-3 {
    margin-bottom: 20px;
  }
}

.award-item {
  margin-bottom: 50px;
}
.award-item h4 {
  font-size: 18px;
}
.award-item h4 span {
  display: block;
  font-weight: 400;
  font-size: 16px;
}

.quote-item-safe-02 {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .quote-item-safe-02 {
    display: block;
  }
}
.quote-item-safe-02 .quote-left {
  flex: 0 0 250px;
  max-width: 250px;
  margin-right: 30px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .quote-item-safe-02 .quote-left {
    flex: 0 0 180px;
    margin: auto;
    margin-bottom: 10px;
  }
}
.quote-item-safe-02 .quote-left img {
  max-width: 100%;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .quote-item-safe-02 .quote-right {
    text-align: center;
  }
}

.conntecting-area {
  margin-top: 50px;
  margin-bottom: 80px;
}

.conntecting .conntecting-header {
  text-align: center;
  margin-bottom: 25px;
}
.conntecting img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.connecting-content {
  margin-bottom: 70px;
}
.connecting-content .connecting-text {
  margin-bottom: 30px;
}/*# sourceMappingURL=main.css.map */

.elements-sidebar {
    border-right: 3px #efefef solid;
    width: 12rem;
    text-wrap-mode: wrap;
}
.elements-sidebar h3 {
    color: #236496;
    font-family: "Rockwell", serif;
    margin-top: .5em;
    margin-bottom: .5em;
    font-size: 1.2rem;
}
.elements-sidebar ul {
    margin-right: 1rem;
    list-style: none;
}
.elements-sidebar ul li {
    list-style: none;
}

/* Fix the size of h3 inside this range */
@media (min-width: 992px)  and (max-width: 1199.98px) { 
    .elements-sidebar h3, .elements-sidebar h3 a {
        font-size: 1.2rem;
    } 
    .elements-sidebar {
        width: 10rem;
    }
}

@media (max-width: 1396px) {
    .elements-sidebar h3, .elements-sidebar h3 a {
        font-size: 1.2rem;
    }  
}

@media (min-width: 992px) {
    .elements-sidebar {
        border-right: 3px #efefef solid; 
        height:100%;
    }
    
    .generalContent {
        margin-left: 1rem;
    }
}

@media (max-width: 991px) {
    .elements-sidebar {
        margin-bottom: 1rem;
        border-bottom: 3px #efefef solid; 
    }
}

.elements-sidebar ul li {
    margin-bottom: 0.8rem;
    line-height: 1.3rem;
}