@import url('https://fonts.googleapis.com/css2?family=Licorice&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/* root */
:root {
  --primary-font: "Poppins", sans-serif;
  --montserrat: 'Montserrat', sans-serif;
  --red-hat: "Red Hat Display", sans-serif;
  --licorice: "Licorice", cursive;
  --font-awesome-5: "font Awesome 5 Pro";
  --primary: #2d2d2d;

  --white: #fff;
  --black: #000;

  --green-light:  #87bdd4;
  --green: #76D7B1;
  --purple: #423B7D; 
  --blue: #0261d5; 
  --purple-light: #8e88c2; 
  --red: #f9745e;
  --light-gray: #f6f6f6;
  --gray2: #666666;


  --trail-green: #2fb8b0; /* rgba(47,184,176,1) */
 
  --gray: #a5a5a4;

  --title-color: #2b5265;
  --bgtransparent: transparent;


  --font-weight-700: 700;


  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-17: 17px;
  --font-size-20: 20px;
  --font-size-21: 21px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-36: 36px;
  --font-size-39: 39px;
  --section-title: 39px;
  --section-title2: 46px;

  --transition: all 0.3s ease-in;
}
@media (max-width: 767px) {
  :root {
    --font-size-39: 29px;
    --font-size-36: 26px;
    --section-title: 32px;
    --section-title2: 32px;
  }
}
/* defaults-css-start */
html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary);
}
.mp-0 {
  margin: 0;
  padding: 0;
}
.border-radius-0 {
  border-radius: 0;
}
a {
  color: var(--green-light);
  transition: var(--transition);
}
a:hover {
  opacity: .8;
}
h1, h2, h3 {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6, {
  font-family: var(--montserrat);
}
p {
  font-weight: 400;
}
.color-1 {
  color: var(--green-light);
}
.color-2 {
  color: var(--purple);
}
.color-3 {
  color: var(--red);
}
.color-4 {
  color: var(--trail-green);
}
.color-5 {
    color: var(--gray);
}

.section-title {
  font-size: var(--section-title);
  margin-bottom: 10px;
}
.section-title2 {
  font-size: var(--section-title2);
  margin-bottom: 20px;
}
.title-safe-22 {
  font-size: var(--font-size-22);
}

.section-elements {

}
.section-elements .section-title2 {
  color: var(--navy);
}
.sub-title {
    font-size: 17px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500; 
    color: var(--gray2);
    font-family: var(--montserrat);
}
.element-title {
  font-size: var(--font-size-21);
}
.form-control {
  background: var(--light-gray);
}
.only-img img {
  display: block;
  width: 100%;
}
.wrapper-safe {
  overflow: hidden;
}
.m-p-0-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*Buttons*/
.btn-safe {
    color: var(--white);
    line-height: 44px;
    height: 44px;
    font-style: normal;
    font-weight: 500;
    background-color: var(--purple);
    border-radius: 6px;
    letter-spacing: 0px;
    border-width: 1px;
    padding-left: 32px;
    padding-right: 32px;
    display: inline-block;
    text-decoration: none;
}
.btn-safe.border-radius-0 {
  border-radius: 0;
}
.btn2 {
    background-color: var(--red);
}
.btn3 {
    background-color: var(--black);
}
.btn-safe.btn-lg-safe {
    background-color: var(--black);
    padding-left: 45px;
    padding-right: 45px;
}
.btn-safe:hover {
  background-color: var(--green);
}

.btn-border {
  background-color: var(--bgtransparent);
  border: 1px solid var(--white);
}
.btn-border:hover {
  background-color: var(--white);
  color: var(--primary);
  opacity: 1;
}


/*
==================
Form and input
==================
*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--gray) !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: var(--gray) !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: var(--gray) !important;
}
:-moz-placeholder { /* Firefox 18- */
  color: var(--gray) !important;
}

/*
==================
Back to Top
==================
*/

#back_to_top {
    color: #cdcdcd;
    height: auto;
    position: fixed;
    bottom: 65px;
    margin: 0;
    z-index: 10000;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    right: 25px;
    visibility: hidden;
    -webkit-backface-visibility: hidden
}

#back_to_top.off {
    right: 25px
}

#back_to_top.on {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
    right: 25px
}

#back_to_top>span {
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-decoration: none;
    -o-border-radius: 52px;
    -moz-border-radius: 52px;
    -webkit-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
    border: 2px solid #e8e8e8;
    background: 0 0;
    text-align: center;
}

#back_to_top span i,#back_to_top span span,.q_steps_holder .circle_small .step_title,.q_steps_holder .circle_small span {
    -webkit-transition: color .2s ease 0s;
    -moz-transition: color .2s ease 0s;
    -o-transition: color .2s ease 0s
}

#back_to_top span i,#back_to_top span span {
    font-size: 22px;
    color: #b0b0b0;
    line-height: 52px
}

#back_to_top:hover>span {
    background-color: #e8e8e8
}

#back_to_top span i, #back_to_top span span {
    color: #ffffff;
}

#back_to_top:hover span i, #back_to_top:hover span span {
    color: #ffffff;
}

#back_to_top > span {
    background-color: rgba(118,215,177,1);
    border-color: rgba(118,215,177,1);
    border-width: 1px;
    border-style: solid
}

#back_to_top:hover > span {
    background-color: rgba(118,215,177,1);
    border-color: rgba(118,215,177,1)
}


/*
==================
Billboard Area
==================
*/
.billboard-inner {
  position: relative;
}
.billboard-inner {
  position: relative;
}

.billboard-inner .owl-nav {
  margin-top: 0;
}
.billboard-inner .owl-carousel .owl-nav button.owl-next, 
.billboard-inner .owl-carousel .owl-nav button.owl-prev {
    font-size: 42px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0px 16px 8px 15px !important;
    background: var(--purple);
    display: block;
    color: var(--white);
    line-height: 1;
    transition: .3s;
    max-height: 50px;
    bottom: auto;
    border-radius: 0;
}

.billboard-inner .owl-carousel .owl-nav button.owl-next span, 
.billboard-inner .owl-carousel .owl-nav button.owl-prev span {


}

.billboard-inner .owl-carousel .owl-nav button.owl-prev,
.billboard-inner .owl-carousel .owl-nav button.owl-next {
  position: absolute;
}
.billboard-inner .owl-carousel .owl-nav button.owl-prev {
  left: 0;
}
.billboard-inner .owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.billboard-inner .owl-carousel .owl-nav button.owl-prev:hover,
.billboard-inner .owl-carousel .owl-nav button.owl-next:hover  {
  opacity: .8;
}




.banner-safe {
    position: relative;
}
.banner-safe img {
    display: block;
    width: 100%;
    height: 764px;
    object-fit: cover;
}
.banner-safe h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    font-family: var(--montserrat);
    line-height: 80px;
    letter-spacing: 0px;
    font-weight: 700;
    font-size: 74px;
    color: var(--white);
    width: 100%;
    text-align: center;
    max-width: 1200px;
    margin: auto;

}
@media (max-width: 991px) {
  .banner-safe {
    margin-top: 0;
  }
  .banner-safe h1 {
    font-size: 48px;
    line-height: 55px;
  }
    .banner-safe img {
        height: 600px;
    }
}
@media (max-width: 767px) {

  .banner-safe h1 {
      font-size: 42px;
      line-height: 46px;
      left: auto;
      top: auto;
      transform: translate(0, 0);
      bottom: 70px;
  }
    .banner-safe img {
        height: 500px;
    }
}

/*
==================
Banner / Page Head
==================
*/

.banner-top-safe {
    min-height: 450px;
    background: var(--green-light);
    background-size: cover;
    position: relative;
    z-index: 0;
    background-position: right top;
}
.banner-top-safe:before {
    content: "";
    position: absolute;
    left: 120px;
    top: 150px;
    height: 264px;
    width: 330px;
    border: 15px solid var(--green-light);
    z-index: -1;
    top: 22%;
    height: auto;
    bottom: 22%;
}
.banner-top-safe:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 105px;
    left: 53%;
    background: #fff;
}
.banner-top-safe h1 {
    margin-left: 200px;
    font-family: var(--red-hat);
    font-weight: 700;
    font-size: 72px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
@media (min-width: 1200px) {
    .banner-top-safe {
        margin-left: 50px;
        margin-right: 50px;
    }
}
@media (max-width: 1380px) {
    .banner-top-safe h1 {
        margin-left: 120px;
    }
    .banner-top-safe:before {
        left: 45px;
    }
}
@media (max-width: 1199px) {
  .banner-top-safe {
    min-height: 420px;
  }
    .banner-top-safe h1 {
        font-size: 58px;    
    }
}
@media (max-width: 991px) {

    .banner-top-safe {
        min-height: 200px;
        padding-top: 30px;
    }
    .banner-top-safe:before {
        left: 10px;
        top: 10px;
        bottom: 10px;
        width: 200px;
        border-width: 7px;
    }
    .banner-top-safe:after {
      left: 70%;
      height: 60px;
  }
    .banner-top-safe:after,
    .banner-top-safe:before {
      /*display: none;*/
    }
    .banner-top-safe h1 {
        font-size: 32px;
        margin: 0 15px 0 30px;
    }
}
@media (max-width: 767px) {

    .banner-top-safe {

    }
}



/*
==================
Welcome Area
==================
*/


.welcome-area {
    transform: translateY(-80%);
    margin-bottom: -170px;
    position: relative;
    z-index: 9;
}
.welcome-content {
  background: var(--purple);
  padding: 30px;
  border-radius: 10px;
}
.welcome-intro .heading-4 {
  margin-bottom: 15px;
  color: var(--white);
}
.welcome-intro p {
    color: var(--white);
    font-size: var(--font-size-16);
    font-weight: 500;
    margin-bottom: 0;
    padding-right: 20px;  
}
.card-static {
  color: var(--white);
}
.card-static .heading-3 {
  font-size: 27px;
  margin-top: 30px;
  margin-bottom: 30px;  
}
.card-static .card-static-number {
  font-size: 21px;  
}
.card-static .card-static-number > span {
  color: var(--purple-light);
  display: block;
  font-size: var(--font-size-12);
  font-weight: 500; 
  margin-top: 6px; 
}
.border-right {
  position: relative;
}
.border-right:before {
  content: "";
  position: absolute; 
  right: 60px; 
  top: 0; 
  bottom: 0;  
  width: 1px; 
  background: #68629d;
}
@media (max-width: 991px) {
  .welcome-area {
    transform: translateY(0);
    margin-top: -30px;
    margin-bottom: 50px;
  }
  .welcome-area .container {
    max-width: 100%;
  }
}

/*
==================
Welcome Area
==================
*/
.static-another.border-right {
  position: relative; 
}
.static-another.border-right:before {
  content: "";
  position: absolute; 
  right: 15px; 
  top: 0; 
  bottom: 0;  
  width: 1px; 
  background: #ededed;
}
.static-another h4 {
  font-size: var(--font-size-39);
  font-weight: var(--font-weight-700);
  color: var(--purple);
  margin-bottom: 15px;  
  margin-top: 15px; 
}

.static-another h4 > span {
  display: block; 
  font-size: 17px;
  color: var(--primary);
}


/*
==================
Health Area
==================
*/
.health-area {
  margin-bottom: 60px;
}
.health-area .section-elements {
  margin-top: 100px;  
}
.health-image-item {
  position: relative; 
}
.health-image-item img {
  display: block; 
  width: 100%;  
}

.green_box {
    background: var(--green);
    width: 250px;
    height: 230px;
    text-align: center;
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 99;
}
.green_box img {
  max-width: 92px;
  margin: auto;
}
.green_box h2 {
    font-family: var(--licorice);
    font-size: var(--font-size-39);
    letter-spacing: -3px;
    color: var(--white);
    margin: 0;
    padding: 7px 0
}

.green_box p {
    font-size: var(--font-size-20);
    color: var(--purple);
    margin: 0;
    padding: 7px 0;
    font-weight: 600
}

/*About Slider*/
.health-slider .owl-dots {
    position: absolute;
    right: 8px;
    bottom: 0;
}
.health-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 3px;
    background: var(--black);
    border-radius: 50%;
}
.health-slider .owl-dots .owl-dot.active span, 
.health-slider .owl-dots .owl-dot:hover span {
    background: var(--green);
}
@media (max-width: 767px) {
  .health-slider .img-content-item .img-content .img-content-number {
    font-size: 46px;
  }
  .health-slider .about-content .about-title {
    font-size: 36px;
  }
  .health-area .section-elements {
    margin-top: 30px;  
  }
}

/*
==================
Box1 Area
==================
*/
.box1-area {
  background: var(--light-gray);
  padding-top: 115px;
  padding-bottom: 115px;
}
.map-image {
  margin-right: 20px;
}
.map-image img {
  max-width: 100%;
}
.box1-btns {
  margin-top: 25px;
}
.box1-btns .btn1 {
  margin-right: 15px;
}


/*
==================
Blog Area
==================
*/
.blog-card img {
  display: block;
  width: 100%;
}
.blog-card .element-title {
  color: var(--white);
  margin-bottom: 25px;
}
.blog-card .blog-card-content {
  padding: 30px 20px;
}
.blog-area .bg-color-x {
  background-color: #f9745e;
}
.blog-area .bg-color-y {
  background-color: #f6cc90;
}
.blog-area .bg-color-z {
  background-color: #76d7b1;
}
.blog-area .bg-color-l {
  background-color: #423b7d;
}




/*
==================
Events Area
==================
*/
.events-area {
  margin-top: 100px;
  margin-bottom: 100px;
}
.events-area .section-elements {
  margin-bottom: 50px;
}
.event-item {
  font-weight: 600;
  margin-bottom: 7px;
  font-size: var(--font-size-14);
  padding: 0 15px;
}
.event-item img {
  max-width: 102px;
  margin-bottom: 15px;
}
.event-item h6 {
  font-weight: 500;
}
.event-item a {
    font-size: var(--font-size-17);
    font-style: normal;
    font-weight: 600;
    text-transform: none;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-top: 5px;
    margin-bottom: 15px;

}
.event-item a > h5 {
  font-size: inherit;
  font-weight: inherit;
}



/*
==================
Box 2 Area
==================
*/
.box2-area {
  background-image: url("../images/parallax-image-1.jpg");
  padding-top: 115px;
  padding-bottom: 115px;
  background-attachment: fixed;
  color: var(--white);
}
.box2-area .sub-title {
  color: var(--white);
}
.box2-area .vid-image {
  margin-right: 0;
}
.box2-area .section-elements {
  margin-left: 60px;
}
.box2-area .vid-image img {
  max-width: 100%;
}
.box2-area .box2-btns {
  margin-top: 25px;
}
.box2-area .box2-btns .btn1 {
  margin-right: 15px;
}
.qode_video_box {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    max-width: 100%
}
.popup-video {
  text-align: center;
}
.qode_video_box a:hover {
  opacity: 1;
}
.qode_video_box .qode_video_image {
    display: block;
    position: relative;
    overflow: hidden
}

.qode_video_box .qode_video_image::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,.1);
    z-index: 33;
    opacity: 0;
    transition: opacity .3s ease-out;
    -webkit-transition: opacity .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(.01deg);
    -webkit-transform: scale(1.05) rotate(.01deg);
    opacity: 1;
}

.qode_video_box .qode_video_image:hover .qode_video_box_button {
    background-color: var(--purple);
}

.qode_video_box .qode_video_image:hover .qode_video_box_button_arrow {
    border-left-color: var(--white);
}

.qode_video_box .qode_video_image img {
    display: block;
    position: relative;
    max-width: 100%;
    z-index: 22;
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    -webkit-backface-visibility: hidden;
}

.qode_video_box .qode_video_image .qode_video_box_button_holder {
    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 .qode_video_box_button {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #fff;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: background-color .15s ease-out;
    -webkit-transition: background-color .15s ease-out
}

.qode_video_box .qode_video_image .qode_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 #303030;
    border-bottom: 12px solid transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

@media (max-width: 767px) {
  .box2-area .section-elements {
    margin-left: 0;
    margin-top: 20px;
  }
}



/*
==================
Blog 2 Area
==================
*/
.blog-2-area {
  margin-top: 100px;
  margin-bottom: 100px;
}
.blog-2-area .section-elements {
      margin-bottom: 50px;
}
.blog-2-item img {
  display: block;
  width: 100%;
  border-radius: 7px;
}
.blog-2-item a {
  font-size: var(--font-size-21);
  color: var(--primary);
  text-decoration: none;
  margin-top: 15px;
  display: block;
}
.blog-2-item a > h3 {
  font-size: inherit;
  color: inherit;
  font-family: var(--montserrat);
}

@media (max-width: 767px) {
  .blog-2-item {
    margin-bottom: 40px;
  }
}



/*
==================
Signup Area
==================
*/
.signup-area {
    background-image: url(../images/parallax-image-2.jpg);
    padding-top: 150px;
    padding-bottom: 150px;
    background-attachment: fixed;
    color: var(--white);
}
.signup-area .sub-title {
  color: var(--white);
}
.signup-form form {
  margin-top: 30px;
}
.signup-form input {
  border-radius: 6px 0 0 6px;
  min-width: 390px;
  padding: 15px;
  outline: 0;
  border: 0;
}
.signup-form button {
  border-radius: 0 6px 6px 0;
  padding: 15px 40px;
  outline: 0;
  border: 0;
  margin-left: -5px;
  background-color: var(--green);
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}
.signup-form button:hover {
  background-color: var(--purple);
}
@media (max-width: 767px) {
  .signup-form input {
      max-width: 100%;
      min-width: 60%;
  }
  .signup-form button {
    padding: 15px 25px;
  }
}


/*
==================
Partners Area
==================
*/
.partners-area {
  margin-top: 50px;
  margin-bottom: 50px;
}
.partners-area h4 {
  margin-bottom: 30px;
}
.sliding-slider-4 .block-sliding-item img {
  box-shadow: none;
  width: auto;
}
.sliding-slider-4 .owl-nav {
    margin-top: -25px;
    position: absolute;
    top: 50%;
    right: -39px;
    left: -36px;
    transform: translateY(-50%);
}
.sliding-slider-4 .owl-nav button.owl-next {
  background: #ccc;
  position: absolute;
  right: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
  color: #ccc;
  border: 1px solid #ccc;
    background: transparent;
    font-size: 15px;
    line-height: 2.1;
}
.sliding-slider-4 .owl-nav button.owl-prev {
  background: #ccc;
  position: absolute;
  left: 0;
  right: auto;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 20px;
  display: none;
  color: #ccc;
  border: 1px solid #ccc;
    background: transparent;
    font-size: 15px;
    line-height: 2.1;
}

.sliding-slider-4 .owl-nav button {
    width: 20px;
    background: #ccc;
}
.sliding-slider-4 .owl-nav [class*=owl-]:hover {
  opacity: .8;
}

@media (max-width: 767px) {
  .sliding-slider-4 .owl-nav {
      right: -10px;
      left: -10px;
  }

}
/*------------------------------ 
HEADER
------------------------------ */
.alert-me {
  background-color: #fff;
  padding: 12px;
  color: #000;
  border-radius: 0;
  line-height: 22px;  /* to override bootstrap 3 vs 4 diffs */
}
.modal-alert.emergency, .alert-me.emergency {
  background-color: #a6421b;
  color: #fff;
}
.modal-alert.information, .alert-me.information {
  background-color: #4CAF50;
  color: #fff;
}
.modal-alert.warning, .alert-me.warning {
  background-color: #FFC107;
  color: #000;
}
.modal-alert.news, .alert-me.news {
  background-color: #2196F3;
  color: #fff;
}
.alert-me.alert-dismissable .close, 
.alert-me.alert-dismissible .close {
  right: 0;
}
.alert-me span {
  /* color: #000; */
  color: #fff;
}
.close {opacity:1}
.alert-left {
  /* float: left; */
  display: table-row;
}
.alert-left i {
  display: table-cell;
  padding-right: 10px;
}
.alert-left #alertData {
  display: table-cell;
}
.alert-left a{
  color:rgba(233, 174, 48, 1);
  font-weight: 600;
}
.alert-left a:hover{
  color:rgba(255, 255, 255, 1);
}
/* .alert-left strong {
  margin-left: 5px;
} */
.alert-right {
  float: right;
}
.alert-right a {
  color: #fff;
}
.alert-right a:hover {
  opacity: .7;
}
.alert-me.alert-dismissable .close, .alert-me.alert-dismissible .close {
  right: 0;
}
.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-dismissible .close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.alert-dismissible .close {
  opacity: 1;
}
.alert-dismissible .close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity = 20);
}
/*
==================
Footer Area
==================
*/
.footer-top {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--purple);
}


.widget {
  color: var(--white);
}
.widget h3 {
    font-size: var(--font-size-21);
    margin-bottom: 20px;
}
.widget a {
  text-decoration: none;
  color: var(--white);
}
.widget a > i {
  margin-right: 7px;
}


.widget-posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-posts ul li a {
  font-size: var(--font-size-15);
}
.widget-posts ul li p {
  margin-top: 5px;
  color: #9f9cb8;
}

.widget-list ul {
  margin: 0;
  padding: 0;
  margin-left: 15px;
}
.widget-list ul li {
  margin-bottom: 10px;
}
.widget-list ul li::marker {
  color: var(--green);
}
.widget-list ul li a {

}


.footer-bottom {
  padding: 5px;
  padding-bottom: 5px;
  background-color: #352f64;
  color: var(--white);
}
.footer-bottom p {
  margin: 0;
  color: #bfbeca;
}
.footer-bottom .social-lins a {
  color: var(--white);
  font-size: 30px;
  margin-left: 15px;
}

@media (max-width: 767px) {
  .footer-top {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .widget {
    margin-bottom: 50px;
  }
}

/*
==================
About Us Area
==================
*/
.about-area {
  margin-top: 100px;
}
.about-area .section-elements {

}
.about-area .section-elements p {
  padding-left: 120px;
  position: relative;
  margin: 0;
  margin-top: 50px;
  margin-right: 30px;
  font-size: var(--font-size-16);
}
.about-area .section-elements p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 100px;
  height: 3px;
  background: var(--green-light);
}
.about-image-item {
  position: relative; 
  margin-right: 50px;
}
.about-image-item img {
  display: block; 
  width: 100%;  
}

/*
==================
Counter Area
==================
*/
.counter-area {
  margin-top: 100px;
  margin-bottom: 100px;
}
.counter-elements {
  border: 10px solid var(--light-gray);
}
.counter-item {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}
.counter-item .counter-item-number {
  font-size: 60px;
  font-weight: var(--font-weight-700);
}
.counter-item .counter-item-border {
    width: 60px;
    height: 2px;
    background: var(--green-light);
    margin: 15px auto 10px;
}
.counter-item .counter-item-title {
  font-size: var(--font-size-24);
  color: var(--gray2);
}




/*
==================
Get Involved
==================
*/
.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;
  z-index: -99;
}
@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(--green);
}
.qode_video_box .qode_video_image:hover .video-box-button-arrow {
  border-left-color: var(--white);
}
.qode_video_box .qode_video_image img {
  display: block;
  position: relative;
  max-width: 100%;
  z-index: 22;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  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);
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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);
  border-bottom: 12px solid transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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;
    font-weight: 400;
    font-size: 67px;
}
@media (max-width: 991px) {
  .special-moment h3 {
    margin-right: auto;
    font-size: 42px;
  }
}
.quote-safe-area {
  background: var(--black);
  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);
  font-weight: 400;
}
.quote-item-safe-01 .quote-right h4 {
  color: var(--white);
  font-weight: 500;
  font-size: 20px;
  margin-top: 20px;
  text-transform: uppercase;
}
.quote-item-safe-01 .quote-right h4 span {
  display: block;
  color: var(--gray);
}
.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;
  color: var(--primary);
}
.awards-area {
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--light-gray);
}
@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;
}


/*
==================
Members Area
==================
*/

.members-form-content {
  margin-bottom: 100px;
}
.members-form-1 .members-form-bottom  .flex-2 {
  flex: 2;

}
.members-form-1 a {
  text-decoration: none;  
  color: var(--gray);
}
.members-form-1 label {
  text-transform: uppercase;  
}
.members-form-1 .btn {
  background-color: var(--green-light);
  color: var(--white);
  transition: var(--transition);
  font-size: var(--font-size-20);
}
.members-form-1 .btn:hover {
  opacity: .8;
}
.members-form-1 .form-control {
  height: 50px; 
}


/*Members List Area*/
.members-list-row {
  margin-left: -15px;
  margin-right: -15px;
}

.members-list-item {
  background: var(--light-gray);
  padding: 30px 10px 0;
  margin: 15px;
}
.members-list-item .members-list-item-inner {
  display: flex;
}
.members-list-item .members-list-item-img {
    width: 95px;
    height: 95px;
    overflow: hidden;
    border-radius: 50%;
    flex: 0 0 95px;
    margin-right: 10px;
    position: relative;
}
.members-list-item .members-list-item-img .members-list-item-img-hover-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.members-list-item:hover .members-list-item-img .members-list-item-img-hover-icon {
  opacity: 1;
}
.members-list-item .members-list-item-img .members-list-item-img-hover-icon i {
  transform: scale(0);
  transition: var(--transition);
}
.members-list-item:hover .members-list-item-img .members-list-item-img-hover-icon i {
  transform: scale(1);
}
.members-list-item .members-list-item-img .members-list-item-img-hover-icon 

.members-list-item .members-list-item-img .members-list-item-img-hover-icon i {
  font-size: 16px;
}
.members-list-item .members-list-item-img img {
  display: block;
  width: 100%;
}
.members-list-item .team-person-name {
  margin-top: 5px;
}
.members-list-item .members-list-item-content a {
  text-decoration: none;
}
.members-list-item .plus-team-item {
  padding: 15px 20px;
  text-align: right;
}
.members-list-item .plus-team-item a {
  text-decoration: none;
  font-size: 18px;
  font-weight: var(--font-weight-700);
}
.member-more {
  margin-top: 30px;
  margin-bottom: 30px;
}
.member-more a {
  text-decoration: none;
}

/*
==================
Comment Form Area
==================
*/
.comment-form-area {
  margin-top: 70px;
}
.comment-form-area-inner {
  background-image: url("../images/bg-comment.jpg");
  padding-top: 115px;
  background-attachment: fixed;
  color: var(--white);
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
.comment-form-area-inner h3 {
  max-width: 900px;
  color: var(--white);
  font-weight: 600;
  font-size: var(--font-size-39);
}
.comment-form-area-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--white);
  z-index: -1;
}
.comment-form-main {
  background: var(--white);
  margin-top: 50px;
  border-bottom: 4px solid var(--green-light);
  margin-bottom: 50px;
}
.comment-form-main input {
  height: 50px;
}
.comment-form-main .comment-btn {
  text-align: center;
}
.comment-form-main .comment-btn .btn {
  background: var(--black);
  font-weight: var(--font-weight-700);
  padding: 15px 40px;
  text-transform: uppercase;
  border: 0;
  outline: 0;
}
.comment-form-main .comment-btn .btn:hover {
  background: var(--green-light);
}



/*
==================
About Us Sec Area
==================
*/
.about-us-sec {
  margin-top: 100px;
  margin-bottom: 120px;
  background-image: url(../images/2-5.jpg);
  background-position: right top;
  background-size: 55%;
  background-repeat: no-repeat;
    margin-left: 50px;
    margin-right: 50px;
}
.about-us-sec .about-us-sec-title {
  font-size: 62px;
  line-height: 1.2;
}
.about-us-sec  .about-us-sec-content {
  background-color: var(--white);
  padding: 50px 80px 30px 0;
}
.about-us-sec  .about-us-sec-content h5 {
  font-size: var(--font-size-24);
  margin-bottom: 30px;
}
.about-us-sec  .about-us-sec-content p {
  margin-bottom: 0;
}
.border-left-height {
  background-color: var(--purple);
  width: 4px;
  height: 40px;
}
@media (max-width: 1250px) {
  .about-us-sec {
    background-size: 50%;
  }
  .about-us-sec .about-us-sec-title {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .about-us-sec {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .about-us-sec {
    background: none;
  }
  .about-us-sec  .about-us-sec-title {
    font-size: 32px;
  }
  .about-us-sec .about-us-sec-content {
    padding: 0;
    margin-top: 30px;
  }
}


/*
==================
Services Area
==================
*/
.services-area {
  margin-bottom: 100px;
}
.services .row-lfr {
  margin-left: -15px;
  margin-right: -15px;
}
.service-item {
    text-align: center;
    background-color: var(--light-gray);
    padding: 50px 15px;
    margin: 20px 10px;
}
.service-item .service-icon {
    width: 100px;
    margin: auto;
}
.service-item .service-title {
    margin-top: 15px;
    margin-bottom: 15px;
}
.service-item .service-title h3 {
    font-weight: 500;
    font-size: 22px;
}
.service-item .service-title a {
  color: var(--primary);
  text-decoration: none;
}
.bg-img-bottom {
    position: relative;
    height: 240px;
    background-image: url(../images/cuomo_bridge_new.jpg);
    margin-top: -70px;
    z-index: -1;
}
.bg-img-bottom:before {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  background: var(--white);
  height: 120px;
}

@media (max-width: 1300px) {
  .bg-img-bottom {
      height: 160px;
  }
  .bg-img-bottom:before {
    left: 30px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .bg-img-bottom:before {
    height: 90px;
    left: 10px;
    right: 10px;
  }
}

/*
==================
Quote Safe 02 Area
==================
*/
.quote-item-safe-02 {
  text-align: center;
}
.quote-item-safe-02 h3 {
  font-size: var(--font-size-22);
  font-weight: 500;
}
.quote-item-safe-02 h3 > span {
  display: block;
  font-weight: 400;
  color: var(--gray);
  font-size: var(--font-size-14);
}
.quote-item-safe-02 p {
  font-size: var(--font-size-20);
}
.quote-item-safe-02 .quote-item-safe-02-icon {
  font-size: 50px;
  color: var(--blue);
}

.quote-safe-02 .owl-nav {
  margin-top: 0;
}
.quote-safe-02 .owl-nav button.owl-next, 
.quote-safe-02 .owl-nav button.owl-prev {
    font-size: 42px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0px 16px 8px 15px !important;
    display: block;
    color: var(--blue);
    line-height: 1;
    transition: .3s;
    max-height: 50px;
    bottom: auto;
    border-radius: 0;
    background: transparent;
}
.quote-safe-02 .owl-nav button.owl-prev,
.quote-safe-02 .owl-nav button.owl-next {
  position: absolute;
}
.quote-safe-02 .owl-nav button.owl-prev {
  left: 0;
}
.quote-safe-02 .owl-nav button.owl-next {
    right: 0;
}
.quote-safe-02 .owl-nav button.owl-prev:hover,
.quote-safe-02 .owl-nav button.owl-next:hover  {
  opacity: .8;
  background: transparent;
  color: var(--purple);
}

/*
==================
Quote Safe 02 Area
==================
*/
.working-area {
  background: var(--primary);
}
.working-inner {
  padding-left: 50px;
  padding-right: 50px;
}
.working-area .section-elements {
  padding-top: 30px;
  padding-bottom: 30px;

}
.working-area .section-title {
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  padding-left: 50px;
}
.working-area .section-title:before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  position: absolute;
  background: var(--blue);
}
.working-item {
  position: relative;

  transition: var(--transition);
}
.working-item img {
  display: block;
  width: 100%;
}
.working-item-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(2 97 213 / 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;

  transition: var(--transition);
}
.working-item:hover .working-item-content  {
  opacity: 1;
}
.working-item-content h4 {
  transform: translateY(-200px);
  transition: var(--transition);
  color: var(--white);

  text-transform: uppercase;
  font-weight: 400;
}
.working-item:hover .working-item-content h4 {
  transform: translateY(0);
}
.working-item-content a {
  transform: translateY(-100px);
  transition: var(--transition);
  text-decoration: none;
  color: var(--white);
}
.working-item:hover .working-item-content a {
  transform: translateY(0);
}