/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/**********  Flex  **********/

.mob-flex,
.flex{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}
.flex-wrap{
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
.flex-no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.mob-flex-center,
.flex-center{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mob-flex-between,
.flex-between{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mob-flex-between-center,
.flex-between-center{
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/**********  Flex-Direction **********/

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/**********  Flex-Align **********/

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/**********  Flex-Justify **********/

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

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

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

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

.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

/**********  Flex-Column **********/

.flex > .flex-1{
  -ms-flex-preferred-size:100%;
  flex-basis:100%;
}
.flex > .flex-2{
  -ms-flex-preferred-size:49%;
  flex-basis:49%;
}
.flex > .flex-3{
  -ms-flex-preferred-size:32.33%;
  flex-basis:32.33%;
}
.flex > .flex-4{
  -ms-flex-preferred-size:24%;
  flex-basis:24%;
}
.flex > .flex-5{
  -ms-flex-preferred-size:19%;
  flex-basis:19%;
}
.flex > .flex-6{
  -ms-flex-preferred-size:15.67%;
  flex-basis:15.67%;
}
.flex > .flex-7{
  -ms-flex-preferred-size:13.28%;
  flex-basis:13.28%;
}
.flex > .flex-8{
  -ms-flex-preferred-size:11.5%;
  flex-basis:11.5%;
}
.flex > .flex-9{
  -ms-flex-preferred-size:10.11%;
  flex-basis:10.11%;
}
.flex > .flex-10{
  -ms-flex-preferred-size:9%;
  flex-basis:9%;
}
.flex > .flex-11{
  -ms-flex-preferred-size:8.09;
  flex-basis:8.09;
}
.flex > .flex-12{
  -ms-flex-preferred-size:7.3%;
  flex-basis:7.3%;
}

/**********  Flex-Margin-bottom **********/

.flex-wrap > .flex-1{
  margin-bottom:2%;
}
.flex-wrap > .flex-2{
  margin-bottom:2%;
}
.flex-wrap > .flex-3{
  margin-bottom:1.50%;
}
.flex-wrap > .flex-4{
  margin-bottom:1.33%;
}
.flex-wrap > .flex-5{
  margin-bottom:1.25%;
}
.flex-wrap > .flex-6{
  margin-bottom:1.196%;
}
.flex-wrap > .flex-7{
  margin-bottom:1.173%;
}
.flex-wrap > .flex-8{
  margin-bottom:1.142%;
}
.flex-wrap > .flex-9{
  margin-bottom:0.901%;
}
.flex-wrap > .flex-10{
  margin-bottom:1.11%;
}
.flex-wrap > .flex-11{
  margin-bottom:1%;
}
.flex-wrap > .flex-12{
  margin-bottom:1.03%;
}

.d-none{
  display : none;
}
@media(max-width:767px){
  .flex{
    display:block;
  }
  .flex > .flex-1,
  .flex > .flex-2,
  .flex > .flex-3,
  .flex > .flex-4,
  .flex > .flex-5,
  .flex > .flex-6,
  .flex > .flex-7,
  .flex > .flex-8,
  .flex > .flex-9,
  .flex > .flex-10,
  .flex > .flex-11,
  .flex > .flex-12{
    -ms-flex-preferred-size:100%;
    flex-basis:100%;
  }
  .mob-flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .mob-flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .mob-flex.flex-between-center{
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

/**********  blocks  **********/

.inline-box{
  display:inline-block;
}
.box-none{
  display:none;
}
.box-block{
  display:block;
}

/**********  Alignment  **********/

.center-align{
  text-align: center; 
}

.left-align{
  text-align: left; 
}

.right-align{
  text-align: right; 
}

/**********  Alignment Margin  **********/

.center-margin{
  margin-left:auto;
  margin-right:auto;
}

.left-margin{
  margin-left:0;
  margin-right:auto;
}

.right-margin{
  margin-left:auto;
  margin-right:0;
}
/**********  Overlay  **********/

.overlay_section{
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  z-index:0;
}

/********** Font Weight  **********/

.fw-9,
.fw-9 h1,
.fw-9 h2,
.fw-9 h3,
.fw-9 h4,
.fw-9 h5,
.fw-9 h6,
.fw-9 li,
.fw-9 p,
.fw-9 a {
  font-weight:900;
}

.fw-8,
.fw-8 h1,
.fw-8 h2,
.fw-8 h3,
.fw-8 h4,
.fw-8 h5,
.fw-8 h6,
.fw-8 li,
.fw-8 p,
.fw-8 a {
  font-weight:800;
}

.fw-7,
.fw-7 h1,
.fw-7 h2,
.fw-7 h3,
.fw-7 h4,
.fw-7 h5,
.fw-7 h6,
.fw-7 li,
.fw-7 p,
.fw-7 a {
  font-weight:700;
}

.fw-6,
.fw-6 h1,
.fw-6 h2,
.fw-6 h3,
.fw-6 h4,
.fw-6 h5,
.fw-6 h6,
.fw-6 li,
.fw-6 p,
.fw-6 a {
  font-weight:600;
}

.fw-5,
.fw-5 h1,
.fw-5 h2,
.fw-5 h3,
.fw-5 h4,
.fw-5 h5,
.fw-5 h6,
.fw-5 li,
.fw-5 p,
.fw-5 a {
  font-weight:500;
}

.fw-4,
.fw-4 h1,
.fw-4 h2,
.fw-4 h3,
.fw-4 h4,
.fw-4 h5,
.fw-4 h6,
.fw-4 li,
.fw-4 p,
.fw-4 a {
  font-weight:400;
}

.fw-3,
.fw-3 h1,
.fw-3 h2,
.fw-3 h3,
.fw-3 h4,
.fw-3 h5,
.fw-3 h6,
.fw-3 li,
.fw-3 p,
.fw-3 a {
  font-weight:300;
}

/**********  Color  **********/


.all-text-white,
.all-text-white h1,
.all-text-white h2,
.all-text-white h3,
.all-text-white h4,
.all-text-white h5,
.all-text-white h6,
.all-text-white p,
.all-text-white span,
.all-text-white a{
  color:var(--white_color);
}

.all-text-black,
.all-text-black h1,
.all-text-black h2,
.all-text-black h3,
.all-text-black h4,
.all-text-black h5,
.all-text-black h6,
.all-text-black p,
.all-text-black span,
.all-text-black a{
  color:#000000;
}

/**********  box Shadow **********/

.box-shadow{
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}
.box-shadow-hover{
  -webkit-transition:all 0.35s;
  -o-transition:all 0.35s;
  transition:all 0.35s;
}
.box-shadow-hover:hover{
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
}

/**********  Link Arrow  **********/

.underline a,
a.underline{
  text-decoration: underline;
}

.arrow-one a,
.arrow-two a,
a.arrow-one,
a.arrow-two{
  position:relative;
}
.arrow-one a:after,
.arrow-two a:after,
a.arrow-one:after,
a.arrow-two:after{
  position: absolute;
  background-size: cover;
  top: 50%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition:all 0.35s;
  -o-transition:all 0.35s;
  transition:all 0.35s;
} 
.arrow-one a:after,
a.arrow-one:after{
  content:"\276F";
  font-size: 17px;
  line-height: 1;
  font-weight: 300;
  right: -16.7px;
}
.all-text-white .arrow-one a:after,
.all-text-white a.arrow-one:after{
  color:#FFF;
}
.arrow-two a:after,
a.arrow-two:after{
  content:"\279C";
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  right: -27.1px;
}
.all-text-white .arrow-two a:after,
.all-text-white a.arrow-two:after{
  color:#FFF;
}
.arrow-one a:hover:after,
a.arrow-one:hover:after{
  -webkit-transform: translateY(-50%) translateX(5px);
  -ms-transform: translateY(-50%) translateX(5px);
  transform: translateY(-50%) translateX(5px);
}

.arrow-two a:hover:after,
a.arrow-two:hover:after{
  -webkit-transform: translateY(-50%) translateX(5px);
  -ms-transform: translateY(-50%) translateX(5px);
  transform: translateY(-50%) translateX(5px);
}


/**********  Slick Slider  **********/

ul.slick-dots {
  margin: 0;
  padding: 0;
  text-align: center;
  margin-top:10px;
  margin-bottom:10px;
}
ul.slick-dots li {
  display: inline-block;
  padding: 0;
  margin: 0;
  font-size: 0;
  text-indent: 0;
  border: 0;
  margin: 0 6.5px;
}

ul.slick-dots li button {
  padding: 0;
  border: 0;
  background:var(--primary_color);
  border: 2px solid #FFF;
  height: 9px;
  opacity: 1;
  width: 9px;
  border-radius:100%;
  -webkit-transition:all 0.35s;
  -o-transition:all 0.35s;
  transition:all 0.35s;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

ul.slick-dots li.slick-active button {
  border: 2px solid var(--primary_color); 
  background-color: #FFF;
}

.full_width_sec{
  max-width:100% !important;
}

/**********  Swiper Slider  **********/
:root{
  --swiper-pagination-bullet-width: 11px;
  --swiper-pagination-bullet-height: 11px;
  --swiper-pagination-color: #ffffff;
  --swiper-pagination-bullet-inactive-color: var(--primary_color);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 6.5px;
}

.swiper-pagination-bullet{
  border: 2px solid #FFF;
}
.swiper-pagination-bullet-active{
  border: 2px solid var(--primary_color);
}
/**********  Dnd overlay ********/

.add_overlay_banner .overlay_color_hero {
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  z-index:0;
}
.add_overlay_banner{
  position:relative;
}
.add_overlay_banner > .row-fluid{
  position:relative;
  z-index:1;
}

/**********  Rich text classes  **********/
.margin-0{
  margin: 0;
}
.heading-h1{
  margin: 0;  
}
.heading-h2{
  margin: 0;  
}
.all-margin-0,
.all-margin-0 h1,
.all-margin-0 h2,
.all-margin-0 h3,
.all-margin-0 h4,
.all-margin-0 h5,
.all-margin-0 h6{
  margin: 0;
}

@media all and (min-width: 1200px){
  .heading-h1{
    font-size: 72px;
    font-weight: 500;
    line-height: 85.32px;
    margin-bottom: 10px;
  }
  .heading-h2{
    font-size: 53px;
    font-weight: 400;
    Line-height 62.81px;
  }  
}
@media all and (max-width: 767px){
  .m-br-none br{
    display: none;
  }
}
@media all and (max-width: 548px){
  br{
    display: none;
  }
}
.mb-10{
  margin-bottom: 10px;
}
.mb-15{
  margin-bottom: 15px;
}
.mb-16{
  margin-bottom: 16px;
}
.mb-18{
  margin-bottom: 18px;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-30{
  margin-bottom: 30px;
}
.mb-40{
  margin-bottom: 40px;
}

.mb-45{
  margin-bottom: 45px;
}

.mb-50{
  margin-bottom: 50px;
}
.mb-60{
  margin-bottom: 60px;
}
.mb-70{
  margin-bottom: 70px;
}
.mb-80{
  margin-bottom: 80px;
}
.mb-90{
  margin-bottom: 90px;
}
.mt-50{
  margin-top: 50px;
}
.mt-35{
  margin-top: 35px;
}
.mt-25{
  margin-top: 25px;
}
.mt-20{
  margin-top: 20px;
}
.mt-15{
  margin-top: 15px;
}
.mt-10{
  margin-top: 10px;
}
.mt-25{
  margin-top: 25px;
}
.mb-25{
  margin-bottom: 25px;
}
.mb-30{
  margin-bottom: 30px;
}
.mb-35{
  margin-bottom: 35px;
}
.mb-40{
  margin-bottom: 40px;
}
.mb-45{
  margin-bottom: 45px;
}
.mb-50{
  margin-bottom: 50px;
}
.mb-55{
  margin-bottom: 55px;
}
.mb-60{
  margin-bottom: 60px;
}

.theme_bg,
.change_bg{
  background-color: var(--color_change, var(--primary_color));
}
.inline-blk{
  display: inline-block;
}

.pr-80{
  padding-right: 80px;
}

.text-margin-0 > h1,
.text-margin-0 > h2,
.text-margin-0 > h3,
.text-margin-0 > h4,
.text-margin-0 > h5,
.text-margin-0 > h6,
.text-margin-0 > p{
  margin: 0;
}
@media(max-width:767px){
  .mb-30,
  .mb-40,
  .mb-50,
  .mb-60,
  .mb-70,
  .mb-80,
  .mb-90{
    margin-bottom: 20px;
  }
  .mt-35,
  .mt-50{
    margin-top: 20px;
  }
}
@media all and (max-width: 548px){
  .mt-50 {
    margin-top: 15px;
  }
  .pr-80 {
    padding-right: 40px;
  }  
}
@media all and (max-width: 768px){
  .mb-80{
    margin-bottom: 40px;
  }
}

.section-bg{
  background-repeat : no-repeat;
  background-size : cover;
  background-position : center;
}

.dnd-section.banner_padding_minus>.row-fluid {
  padding: 0;
}

#progress--bar {
    background: linear-gradient(43deg, var(--tertiary_color), var(--secondary_color));
    height: 10px;
    width: 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.grayscale{
  filter: grayscale(100%);
}
.checklist h6{
  position : relative;   
  padding-left : 62px;
  margin-bottom : 50px;
}
.checklist h6:before{
  content: url('https://24949188.fs1.hubspotusercontent-eu1.net/hubfs/24949188/communication_assets/Images/dashicons_yes-alt.svg');
  position : absolute;
  width : 32px;
  height : 32px;
  left :0;
}