:root {
  --font_primary: Poppins;
  --primary_color: #00337c;
  --primary_color_light: #e6f0ff;
  --secondary_color: #df5f32;
  --bg_color_one: #efeae6;
  --accent_color_one: #1b321d;
  --accent_color_two: #e7f1f1;
  --text_color: #1b321d;
  --off_white: #ddedde;
  --grey: #f2f5f3;
  --light_grey: #b3b3b3;
  --dark_grey: #727272;
  --bookkeeping: #e4eee5;
  --container_width: 100%;
  --container_padding: 15px;
  --container_left_space: calc((100% - var(--container_width)) / 2);
}

.bg_one {
  background-color: var(--bg_color_one);
}
.bg_two {
  background-color: var(--accent_color_two);
}

.no_bullets {
  list-style: none;
  padding-left: 0;
}

@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-Thin.ttf);
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-Light.ttf);
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-Medium.ttf);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-SemiBold.ttf);
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-Black.ttf);
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(/fonts/Poppins-MediumItalic.ttf);
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

*,
body {
  margin: 0;
  box-sizing: border-box;
  color: var(--text_color);
  font-family: var(--font_primary);
}
p {
  margin-bottom: 18px;
  font-size: 16px;
}
.fancybox-button svg path {
  fill: #fff !important;
}
.flex {
  display: flex;
  gap: 30px;
}

.text_center {
  text-align: center;
}

.country_dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.country_dropdown .label {
  white-space: nowrap;
}
.country_dropdown select {
  display: inline-block;
  /* background-color: rgba(255, 255, 255, 0.7); */
  background-color: #fff;
  color: var(--text_color);
  padding: 2px 18px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.4s;
  line-height: 1;
  transition: 0.4s;
}
.country_dropdown select:hover {
  background-color: var(--secondary_color);
  color: #fff;
}

@media (max-width: 767px) {
  p {
    font-size: 15px;
  }
  .flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .flex.mob_align_center {
    align-items: center;
  }
}
.arrow_btn {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  border: none;
  padding: 15px 60px 15px 30px;
  text-decoration: none;
  background-color: var(--primary_color);
  color: #fff;
  display: inline-block;
  margin-top: 15px;
  overflow: hidden;
  cursor: pointer;
}
.arrow_btn.full_width {
  padding: 15px 60px 15px 30px;
}
.arrow_btn.full_width::after {
  display: none;
}
.arrow_btn.full_width img {
  filter: brightness(15);
  margin-left: 10px;
}
.arrow_btn span {
  color: #fff;
  position: relative;
  z-index: 1;
}
form .arrow_btn {
  width: 100%;
  text-align: center;
}
.arrow_btn button {
  margin: 0;
  background-color: inherit;
  color: inherit;
  font-size: inherit;
  box-shadow: none;
  border: none;
  padding: 0;
}
.arrow_btn::before {
  position: absolute;
  top: -5%;
  left: -5%;
  content: "";
  width: 0%;
  height: 110%;
  z-index: 0;
  border-radius: 5px;
  transform: skewX(15deg);
  overflow: hidden;
  background-color: var(--text_color);
  transition: 0.3s;
}
.arrow_btn:hover:before {
  width: 120%;
  visibility: visible;
  opacity: 1;
}
.arrow_btn::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 10px;
  background-image: url(/img/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(15);
}
.btn_two {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-right: 30px;
  color: var(--secondary_color);
  width: fit-content;
}
.btn_two::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 10px;
  background-image: url(/img/btn-arrow-sc.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.btn_two::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  transition: 0.3s;
  height: 1px;
  background-color: var(--secondary_color);
}
.btn_two:hover::before,
.btn_two.active::before {
  width: 100%;
}
@media (max-width: 767px) {
  .arrow_btn {
    padding: 12px 50px 12px 18px;
    font-size: 14px;
  }
  .arrow_btn::after {
    right: 18px;
  }
}
.tick_icons,
.tick_iconss {
  list-style: none;
  padding-left: 0;
}
.tick_iconss li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0;
  /* margin-top: 20px; */
}
.tick_icon,
.cross_icon,
.tick_icons li {
  position: relative;
  /* padding-left: 26px; */
  margin-bottom: 14px;
  text-indent: 24px;
}
.tick_icon::before,
.tick_icons li::before {
  content: url(/img/tick.svg);
  position: absolute;
  left: 0;
  top: 2px;
  text-indent: -2px;
  /* background-image: url(/img/tick.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px; */
}
.tick_iconss li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url(/img/tick.svg);
  width: 17px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
}
.cross_icon::before {
  content: url(/img/cross.svg);
  position: absolute;
  left: 0;
  top: 2px;
  text-indent: -2px;
}
.tick_icon a,
.tick_icons li a,
.cross_icon a {
  font-weight: 500;
}
.tick_icon.space {
  padding-left: 22px;
  text-indent: 0;
}
.tick_icon.space::before {
  top: 3px;
}
.link {
  font-weight: 500;
}
h2,
.h2 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 600;
}
h3,
.h3 {
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 28px;
  }
  h3,
  .h3 {
    font-size: 22px;
  }
  .tick_icon,
  .cross_icon,
  .tick_icons li {
    font-size: 15px;
  }
}
.super_title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  padding-bottom: 10px;
}

.white {
  color: #fff;
}

.heading_style {
  padding-left: 36px;
  position: relative;
}
.heading_style::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  width: 6px;
  height: calc(100% - 13px);
  background-color: var(--secondary_color);
}
.heading_style_space {
  padding-left: 36px;
}

.heading_style_two {
  position: relative;
  text-align: center;
  padding-top: 14px;
  width: fit-content;
  margin: auto;
}
.heading_style_two::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  height: 6px;
  width: 100%;
  background-color: var(--secondary_color);
}

.hidden-xs {
  display: block !important;
}
.visible-xs {
  display: none !important;
}
@media (max-width: 767px) {
  .heading_style {
    padding-left: 24px;
  }
  .heading_style_space {
    padding-left: 0;
  }
  .heading_style::before {
    width: 5px;
  }
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}

.fadeUp[data-scroll],
.fadeUp[data-scroll="out"] {
  transition: 0.6s ease;
  /* transition-delay: 0.1s; */
  opacity: 0;
  transform: translateY(30px);
}
.fadeUp[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .mw_300 {
    max-width: 300px !important;
  }
  .col_rev,
  .col-rev {
    flex-direction: column-reverse;
  }
}

/* bootstrap classes start */
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12,
.col-md-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }

  .col-sm-2 {
    width: 16.6666666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.3333333333%;
  }

  .col-sm-5 {
    width: 41.6666666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.3333333333%;
  }

  .col-sm-8 {
    width: 66.6666666667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.3333333333%;
  }

  .col-sm-11 {
    width: 91.6666666667%;
  }

  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1 {
    width: 8.3333333333%;
  }

  .col-md-2 {
    width: 16.6666666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.3333333333%;
  }

  .col-md-5 {
    width: 41.6666666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.3333333333%;
  }

  .col-md-8 {
    width: 66.6666666667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.3333333333%;
  }

  .col-md-11 {
    width: 91.6666666667%;
  }

  .col-md-12 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }

  .col-lg-2 {
    width: 16.6666666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.3333333333%;
  }

  .col-lg-5 {
    width: 41.6666666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.3333333333%;
  }

  .col-lg-8 {
    width: 66.6666666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.3333333333%;
  }

  .col-lg-11 {
    width: 91.6666666667%;
  }

  .col-lg-12 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .col-md-3,
  .col-md-4,
  .col-md-6 {
    width: 100%;
  }
}

.ps-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* bootstrap classes end */

/* 	 font family and weight start */
.primary_font {
  font-family: var(--font_primary);
}

.secondary_font {
  font-family: var(--font_secondary);
}

.img-responsive,
.img-fluid {
  max-width: 100%;
}
.w_100 {
  width: 100%;
}

.f_w_l {
  font-weight: 300;
}

.f_w_r {
  font-weight: 400;
}

.f_w_m {
  font-weight: 500;
}

.f_w_s_b {
  font-weight: 600;
}

.f_w_b {
  font-weight: 700;
}

.f_s_i {
  font-style: italic;
}

/* 	 font family weight end */

/* 	 line height start */
.l_h_0 {
  line-height: 0.8;
}

.l_h_1 {
  line-height: 1.1;
}

.l_h_2 {
  line-height: 1.2;
}

.l_h_3 {
  line-height: 1.3;
}

.l_h_4 {
  line-height: 1.4;
}

.l_h_5 {
  line-height: 1.5;
}

.l_h_6 {
  line-height: 1.6;
}

/* 	 line height end */

/* 	 flex class start */
.d_f {
  display: flex;
}

.f_w {
  display: flex;
  flex-wrap: wrap;
}

.f_w_j {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.f_w_a_j_center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.f_j {
  display: flex;
  justify-content: space-between;
}

.f_w_se {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.f_w_a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.f_r_aj_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f_r_aj_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.f_r_a_center {
  display: flex;
  align-items: center;
}

.a_center {
  align-items: center;
}

.f_r_j_center {
  display: flex;
  justify-content: center;
}

.f_c_aj_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.f_c_a_center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.f_c_j_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .f_r_aj_between {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 	 flex class end */

/* 	 spacing */
.mtb_0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt_0 {
  margin-top: 0 !important;
}
.mb_0 {
  margin-bottom: 0 !important;
}

.mb_5 {
  margin-bottom: 5px;
}

.mt_5 {
  margin-top: 5px;
}

.mtb_5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mt_10 {
  margin-top: 10px;
}

.mtb_10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mt_15 {
  margin-top: 15px;
}

.mtb_15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mt_20 {
  margin-top: 20px;
}

.mtb_20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mt_30 {
  margin-top: 30px;
}

.mtb_30 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.mb_8 {
  margin-bottom: 8px;
}
.mb_80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .mb_80 {
    margin-bottom: 60px;
  }
}

.mt_80 {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .mt_80 {
    margin-top: 60px;
  }
}

.mtb_80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .mtb_80 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.mb_100 {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .mb_100 {
    margin-bottom: 80px;
  }
}

.mt_100 {
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .mt_100 {
    margin-top: 80px;
  }
}

.mtb_100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .mtb_100 {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.p_t {
  padding-top: 20px;
}

.pt_10 {
  padding-top: 10px;
}

.pb_0 {
  padding-bottom: 0px !important;
}
.pb_10 {
  padding-bottom: 10px;
}

.ptb_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pt_20 {
  padding-top: 20px;
}

.pb_20 {
  padding-bottom: 20px;
}

.ptb_20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pt_30 {
  padding-top: 30px;
}

.pb_30 {
  padding-bottom: 30px;
}

.ptb_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pt_40 {
  padding-top: 40px;
}

.pb_40 {
  padding-bottom: 40px;
}

.ptb_40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pt_50 {
  padding-top: 50px;
}

.pb_50 {
  padding-bottom: 50px;
}

.ptb_50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .pt_40 {
    padding-top: 30px;
  }
  .ptb_60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.pt_60 {
  padding-top: 60px;
}

@media only screen and (max-width: 767px) {
  .pt_60 {
    padding-top: 40px;
  }
}

.pb_60 {
  padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .pb_60 {
    padding-bottom: 40px;
  }
}

.ptb_80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .ptb_80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.pt_80 {
  padding-top: 80px;
}

@media only screen and (max-width: 767px) {
  .pt_80 {
    padding-top: 60px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .pb_80 {
    padding-bottom: 60px;
  }
}

.ptb_100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  .ptb_100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.pt_100 {
  padding-top: 100px;
}

@media only screen and (max-width: 991px) {
  .pt_100 {
    padding-top: 60px;
  }
}

.pb_100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  .pb_100 {
    padding-bottom: 60px;
  }
}

/* 	 spacing end */

/* 	typography start */
.text_xxxl {
  font-family: var(--font_primary);
  font-size: 140px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 15px;
  letter-spacing: -7px;
}

.text_xxl {
  font-family: var(--font_primary);
  font-size: 100px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 15px;
}

.text_xl {
  font-family: var(--font_primary);
  font-size: 80px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 15px;
}

.text_l {
  font-family: var(--font_secondary);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 15px;
}

.text_mdd {
  font-family: var(--font_secondary);
  font-size: 32px;
  /* font-weight: 400; */
  line-height: 1.2;
  margin: 0 0 15px;
}

.text_md {
  font-family: var(--font_secondary);
  font-size: 24px;
  /* font-weight: 400; */
  line-height: 1.2;
  margin: 0 0 15px;
}

.text_reg {
  font-family: var(--font_secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 15px;
}

.text_xs {
  font-family: var(--font_secondary);
  font-size: 18px;
  /* font-weight: 400; */
  line-height: 1.4;
  margin: 0 0 15px;
}
.text_small {
  font-size: 14px;
}
@media (max-width: 767px) {
  .text_md {
    font-size: 20px;
  }
}

a {
  text-decoration: none;
}
/* 	typography end */

/* 	container start */
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --container_width: 760px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --container_width: 1000px;
  }
}

@media (min-width: 1200px) {
  :root {
    --container_width: 1190px;
  }
}

@media (min-width: 1400px) {
  :root {
    --container_width: 1330px;
  }
}

.container {
  max-width: var(--container_width);
  width: 100%;
  padding-inline: var(--container_padding);
  margin: auto;
  box-sizing: border-box;
}

.container-left {
  margin-left: calc(var(--container_left_space));
  padding-left: var(--container_padding);
  box-sizing: border-box;
}

.container-right {
  margin-right: calc(var(--container_left_space));
  padding-right: var(--container_padding);
  box-sizing: border-box;
}

/* 	container end */

/* form start */
label.error {
  color: red;
  font-size: 14px !important;
  position: relative;
}
input,
textarea,
select {
  padding: 15px 30px;
  border: none;
  background-color: #fff;
  width: 100%;
  resize: none;
}
input:focus,
textarea:focus,
select:focus {
  outline-color: var(--primary_color);
}
button {
  margin-bottom: 0 !important;
}
.form-control {
  margin-bottom: 18px;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
@media (max-width: 767px) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}
/* form end */

.not_found {
  max-width: 550px;
  margin: auto;
  min-height: calc(100vh - 500px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.not_found .title {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .not_found .title {
    font-size: 32px;
  }
}

.arrow-nav {
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
.arrow-nav:hover {
  background-color: var(--text_color);
}
.arrow-nav:hover img {
  filter: brightness(10);
}
.swiper-button-previous {
  transform: scaleX(-1);
  margin-right: 10px;
}
.swiper-button-disabled {
  opacity: 0.7;
}

#cta_two .f_w_a_j_center {
  gap: 30px;
  align-items: stretch;
}
#cta_two .box {
  padding: 35px 40px;
  background-color: var(--accent_color_two);
  max-width: 300px;
  width: 100%;
  text-align: center;
  flex: 1;
}
#cta_two .box h3 {
  margin-bottom: 4px;
}
#cta_two .box_1 {
  /* padding: 35px 40px; */
  /* background-color: var(--accent_color_two); */
  max-width: 300px;
  width: 100%;
  text-align: center;
  flex: 1;
  box-shadow: 5px 5px 10px #bebebe, -20px -20px 60px #ffffff;
  transition: 0.3s;
}
#cta_two .box_1:hover {
  box-shadow: none;
}
#cta_two .box_1 h3 {
  margin-bottom: 4px;
}
#cta_two .img_box {
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#cta_two .img_box img {
  /* padding: 12px; */
  height: 40px;
}
.box_1_style {
  background-color: white;
  padding: 50px 50px;
}
#box_1_style {
  background-color: white;
  padding: 50px 60px;
}
.recent_blogs .slick-track {
  display: flex;
}
.recent_blogs .slick-slide {
  height: inherit;
}
@media (min-width: 768px) {
  #cta_two .content_area {
    padding-right: 60px;
  }
  #cta_two .bullet_points {
    padding-left: 20px !important;
  }
}
@media (max-width: 991px) {
  #cta_two .d_f {
    flex-direction: column;
  }
  #cta_two .bullet_points {
    padding-left: 0px !important;
  }
}
@media (max-width: 767px) {
  #cta_two .box {
    max-width: 100%;
    flex: auto;
    /* padding: 35px 30px; */
  }
  #pagination {
    display: none;
  }
}

ul.tick {
  margin-bottom: 18px;
}
