

/***********************************************/
/* 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;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
.flex-wrap {
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
.flex-no-wrap,
.mob-flex.flex-no-wrap,
.flex.flex-no-wrap{
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-center{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: 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%;
  margin-right:2%;
}
.flex > .flex-2:nth(2n+2){
  margin-right:0;
}
.flex > .flex-3{
  -ms-flex-preferred-size:32.33%;
  flex-basis:32.33%;
  margin-right:1.50%;
}
.flex > .flex-2:nth(3n+3){
  margin-right:0;
}
.flex > .flex-4{
  -ms-flex-preferred-size:24%;
  flex-basis:24%;
  margin-right:1.33%;
}
.flex > .flex-2:nth(4n+4){
  margin-right:0;
}
.flex > .flex-5{
  -ms-flex-preferred-size:19%;
  flex-basis:19%;
  margin-right:1.25%;
}
.flex > .flex-2:nth(5n+6){
  margin-right:0;
}


/**********  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%;
}


@media(max-width:767px){
  .flex{
    display:block;
  }
  .flex > .flex-1,
  .flex > .flex-2,
  .flex > .flex-3,
  .flex > .flex-4,
  .flex > .flex-5{
    -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;
}

/**********  Positions  **********/

.pos_abs{
  position: absolute;
}

.pos_rel{
  position: relative;
}

/********** 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,
.body-container-wrapper .all-text-white li,
.all-text-white span,
.body-container-wrapper .all-text-white a:not(.cta_button, .cta_btn, .cta-link),
.all-text-white a:not(.cta_button, .cta_btn, .cta-link){
  color: var(--white_color) !important;
}
.all-text-white h1{
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.all-text-body,
.all-text-body h1,
.all-text-body h2,
.all-text-body h3,
.all-text-body h4,
.all-text-body h5,
.all-text-body h6,
.all-text-body p,
.body-container-wrapper .all-text-body li,
.all-text-body span,
.body-container-wrapper .all-text-body a:not(.cta_button, .cta_btn, .cta-link),
.all-text-body a:not(.cta_button, .cta_btn){
  color:var(--body_color)  !important;
}
.all-text-secondary,
.all-text-secondary h1,
.all-text-secondary h2,
.all-text-secondary h3,
.all-text-secondary h4,
.all-text-secondary h5,
.all-text-secondary h6,
.all-text-secondary p,
.body-container-wrapper .all-text-secondary li,
.all-text-secondary span,
.body-container-wrapper .all-text-secondary a:not(.cta_button, .cta_btn, .cta-link),
.all-text-secondary a:not(.cta_button, .cta_btn, .cta-link){
  color:var(--secondary_color)  !important;
}

.white-border li,
.white-border li span,
.white-border{
  border-color var(--white_color)  !important;
}

.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,
.body-container-wrapper .all-text-black li,
.all-text-black span,
.body-container-wrapper .all-text-black a:not(.cta_button, .cta_btn, .cta-link),
.all-text-black a:not(.cta_button, .cta_btn, .cta-link){
  color:#000000;
}
.black-border li,
.black-border li span,
.black-border{
  border-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  **********/

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

.arrow-one a,
a.arrow-one{
  position:relative;
  display: inline-block;
  letter-spacing: 1px;
}
.arrow-one.block_arrow a,
a.arrow-one.block_arrow{
  display:block;
}
.arrow-one a:after,
a.arrow-one: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:"";
  background-image:url();
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center;
  width:9px;
  height:14px;
  line-height: 1;
  font-weight: 300;
  right: -20px;
}
.arrow-one.block_arrow a:after,
a.arrow-one.block_arrow:after{
  right: 0px;
}
.link_hover_main:hover a.arrow-one:after, 
.link_hover_main:hover .arrow-one a:after, 
.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);
}


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

body .body-container-wrapper ul.slick-dots {
  padding: 0;
  margin: 0;
  text-align: center;
  display:block;
  margin-top:65px;
}
body .body-container-wrapper ul.slick-dots li {
  list-style:none;
  padding:0;
  margin:0;
  display:inline-block;
  margin:0 7.5px;
  line-height: 0;
}
body .body-container-wrapper ul.slick-dots li::before{
  content:none !important;
}
body .body-container-wrapper ul.slick-dots li button {
  background-color:var(--primary_color);
  font-size: 0;
  line-height: 0;
  height: 6px;
  padding: 0;
  width: 6px;
  border-radius: 100%;
  color: transparent;
  border: 0;
  opacity:0.6;
  transition:all 0.24s;
}

body .body-container-wrapper ul.slick-dots li.slick-active button {
  opacity:1;
}

.custom_slick_button .slick_buttons .slick_arrow{
  align-items: center;
  background-color: rgba(232, 242, 255, 0.9);
  color: var(--secondary_color);
  cursor: pointer;
  display: flex;
  flex-basis: 50px;
  font-size: 18px;
  justify-content: center;
  max-width: 50px;
  min-height: 50px;
  text-align: center;
}
.custom_slick_button .slick-initialized .slick-arrow {
    display: none !important;
}
@media(max-width:767px){
  body .body-container-wrapper ul.slick-dots {
    margin-top:25px;
  }
  .custom_slick_button .slick_buttons .slick_arrow{
    max-width: 38px;
    min-height:38px;
  }
}

/**********  Rich text classes  **********/

.margin-0{
  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(max-width: 767px){

}