@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");
/*-- Variables --*/
:root {
  --font-default: "Source Sans 3", sans-serif;
  --font-heading: "Outfit", sans-serif;
  --p-font-size: 24px;
  --p-line-height: 32px;
  --white: #ffffff;
  --color-primary: #FA2746;
  --color-secondary: #FBC500;
  --color-heading: #001B2E;
  --color-paragraph: #49423E;
}

/*=========================*/
/*  Responsive breakpoints
/*=========================*/
/* ============================================================== 
     # Reset Browsers
=================================================================== */
* {
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

body {
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

html,
body,
.wrapper {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--color-heading);
}

/* h1: 80px on desktop, ~40px on mobile */
h1 {
  font-size: 36px;
  line-height: 46px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 80px;
    line-height: 90px;
  }
}

/* h2: ~60px desktop, ~32px mobile */
h2 {
  font-size: 26px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 60px;
  }
}

/* h3: ~48px desktop, ~28px mobile */
h3 {
  font-size: 22px;
}

/* h4: ~36px desktop, ~24px mobile */
h4 {
  font-size: 20px;
}

/* h5: ~24px desktop, ~20px mobile */
h5 {
  font-size: 18px;
}

/* h6: ~20px desktop, ~18px mobile */
h6 {
  font-size: 16px;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
}

a img,
iframe {
  border: none;
}

p {
  color: var(--color-paragraph);
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 1.4;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-default);
}
@media (min-width: 768px) {
  p {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  p {
    font-size: 24px;
  }
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}

ul {
  margin: 0 0 15px 0;
  padding: 0 0 0 30px;
}
ul li {
  margin-bottom: 5px;
}
ul li:last-child {
  margin-bottom: 0;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  color: var(--color-heading);
}

a {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  text-decoration: none;
}

b,
strong {
  font-weight: 900;
}

section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) {
  section {
    padding: 120px 0;
  }
}

.container {
  padding: 0 15px;
}

.highlight {
  font-size: 25px;
  letter-spacing: 2px;
  font-weight: var(--font-heading);
  font-family: fangsong;
}
@media (min-width: 768px) {
  .highlight {
    font-size: 30px;
  }
}

.btn.active,
.btn:active {
  background-image: inherit !important;
}

.btn.focus,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover {
  outline: 0;
}

.btn.circle {
  border-radius: 40px;
}

.btn.active,
.btn:active {
  outline: 0;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  min-height: 50px;
}

.btn.redOutlineBtn,
.btn.yellowBtn,
.btn.redBtn {
  border-radius: 100px;
  padding: 10px 25px;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (min-width: 768px) {
  .btn.redOutlineBtn,
  .btn.yellowBtn,
  .btn.redBtn {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .btn.redOutlineBtn,
  .btn.yellowBtn,
  .btn.redBtn {
    font-size: 20px;
    padding: 15px 50px;
  }
}
.btn.redOutlineBtn img,
.btn.yellowBtn img,
.btn.redBtn img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.btn.yellowBtn {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #001B2E;
}
.btn.yellowBtn:hover {
  color: #001B2E;
  background-color: var(--white);
  border-color: var(--color-secondary);
}
.btn.yellowBtn:hover img {
  -webkit-filter: brightness(0) saturate(100%);
          filter: brightness(0) saturate(100%);
}

.btn.redBtn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}
.btn.redBtn:hover {
  color: #001B2E;
  background-color: var(--white);
  border-color: var(--color-primary);
}
.btn.redBtn:hover img {
  -webkit-filter: brightness(0) saturate(100%);
          filter: brightness(0) saturate(100%);
}

.btn.redOutlineBtn {
  background: var(--white);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}

.section_title {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .section_title {
    text-align: left;
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .section_title {
    margin-bottom: 50px;
  }
}
.section_title .subtitle {
  margin: 0;
  color: var(--color-primary);
  margin-left: 5px;
  font-size: 20px;
}
.section_title .image_icon {
  line-height: 1.3;
}
.section_title .title {
  margin-bottom: 0;
  margin-top: 10px;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .section_title .title {
    max-width: 650px;
  }
}
@media (min-width: 1200px) {
  .section_title .title {
    max-width: 90%;
  }
}

.slick-dots {
  bottom: 10px;
}
.slick-dots li button {
  background: rgba(0, 27, 46, 0.2);
  border-radius: 100px;
  width: 15px;
  height: 15px;
}
.slick-dots li.slick-active button {
  background: var(--color-secondary);
}

.slick-dotted.slick-slider {
  margin: 0;
}

.slick-arrow img {
  width: 22px;
}

@media (min-width: 768px) {
  .navbar {
    padding: 5px 0 !important;
  }
}
@media (min-width: 992px) {
  .navbar {
    padding: 15px 0 !important;
  }
}
.navbar .navbar-brand {
  max-width: 120px;
}
@media (min-width: 360px) {
  .navbar .navbar-brand {
    max-width: 150px;
  }
}
@media (min-width: 768px) {
  .navbar .navbar-brand {
    max-width: 165px;
  }
}
@media (min-width: 992px) {
  .navbar .redBtn {
    padding: 7px 19px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .navbar .redBtn {
    padding: 9px 25px;
    font-size: 18px;
  }
}
.navbar .search_btn,
.navbar .mobilel_toggler_menu {
  width: 40px;
  height: 40px;
  padding: 0 !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  margin-right: 8px;
  background: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 100px;
}
.navbar .search_btn {
  color: #B1B1B1;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar .search_btn:hover {
  color: var(--color-primary);
}
@media (min-width: 1200px) {
  .navbar .search_btn {
    margin-right: 0;
    font-size: 24px;
  }
}
.navbar .navbar-toggler {
  padding: 4px 6px;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--color-primary);
}
.navbar .navbar-nav {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e7e7e7;
}
@media (min-width: 992px) {
  .navbar .navbar-nav {
    margin-top: 0px;
    padding-top: 0px;
    border-top: 0;
  }
}
.navbar .nav-item {
  margin-bottom: 0;
}
.navbar .nav-link {
  line-height: 1.2;
  padding: 8px 0;
  color: var(--color-heading);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar .nav-link:hover {
  color: var(--color-primary);
}
@media (min-width: 1200px) {
  .navbar .nav-link {
    font-size: 18px;
    padding: 0 15px !important;
  }
}

footer {
  background: #07070A;
  color: #A9A9A9;
  padding: 40px 0 20px;
}
@media (min-width: 1200px) {
  footer {
    padding: 100px 0 60px;
  }
}
footer .content {
  color: #A9A9A9;
}
footer .block {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  footer .block {
    text-align: left;
  }
}
footer .block .content {
  margin: 15px 0;
}
footer .title {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 15px;
}
footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer nav a {
  font-size: 18px;
  font-weight: 500;
  color: #A9A9A9;
}
footer .social_icon .social_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #292932;
  border-radius: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
footer .social_icon .social_item img {
  width: 14px;
  width: 14px;
}
footer .social_icon .social_item i {
  font-size: 20px;
}
footer .redBtn {
  margin-top: 10px;
}
footer .redBtn span {
  line-height: 1;
}
footer .subscribe_area .form-control {
  border-radius: 100px;
  background: #131319;
  border-color: #131319;
  color: #8F8F9F;
  padding: 15px;
  /* Firefox */
  /* Internet Explorer 10-11 */
}
footer .subscribe_area .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #8F8F9F;
}
footer .subscribe_area .form-control::-webkit-input-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control::-moz-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control:-ms-input-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control::-ms-input-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control::placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control:-moz-placeholder {
  color: #848484;
  opacity: 1;
}
footer .subscribe_area .form-control:-ms-input-placeholder {
  color: #848484;
}
footer .contact_info .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  footer .contact_info .title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
footer .contact_info span {
  display: inline-block;
  margin-right: 8px;
}

.copyright_area {
  background-color: #13131F;
  padding: 20px 0;
  margin-top: -1px;
  color: #A9A9A9;
}
.copyright_area .copyright {
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .copyright_area .copyright {
    text-align: left;
  }
}
.copyright_area .policy_links {
  text-align: center;
}
@media (min-width: 768px) {
  .copyright_area .policy_links {
    text-align: right;
  }
}
.copyright_area .policy_links .item {
  margin: 3px 10px;
  display: inline-block;
  color: #A9A9A9;
}

.hero_slider {
  color: #fff;
  padding: 0;
  position: relative;
}
.hero_slider .content,
.hero_slider .title {
  color: #fff;
  margin: 0;
}
.hero_slider .slider-item {
  padding: 50px 15px 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1024px) {
  .hero_slider .slider-item .container {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .hero_slider .slider-item {
    padding: 50px 40px 80px;
  }
}
@media (min-width: 992px) {
  .hero_slider .slider-item {
    padding: 50px 50px 80px;
  }
}
@media (min-width: 1200px) {
  .hero_slider .slider-item {
    padding: 100px 0;
    height: 830px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero_slider .slider-item .title {
  font-weight: 600;
}
.hero_slider .slider-item .content {
  margin: 10px 0 20px;
}
@media (min-width: 768px) {
  .hero_slider .slider-item .content {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .hero_slider .slider-item .content {
    max-width: 550px;
    margin: 15px 0 28px;
  }
}
@media (min-width: 1200px) {
  .hero_slider .slider-item .content {
    font-size: 28px;
    line-height: 40px;
  }
}
.hero_slider .slick-dots {
  bottom: 25px;
}
.hero_slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background: var(--white);
  border: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
  border-radius: 100px;
}
.hero_slider .slick-arrow:hover {
  background: var(--color-primary);
}
.hero_slider .slick-prev img,
.hero_slider .slick-next img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.hero_slider .slick-prev:hover img,
.hero_slider .slick-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.hero_slider .slick-prev {
  left: 10px;
}
.hero_slider .slick-next {
  right: 10px;
}

@media (min-width: 768px) {
  .about_us .image_area img {
    width: 100%;
  }
}
.about_us .content {
  margin: 25px 0;
}
@media (min-width: 992px) {
  .about_us .content {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .about_us .content p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .about_us .content p {
    margin-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .about_us .content_area {
    padding-left: 50px;
  }
}
.about_us .trust_us {
  margin-top: 50px;
  padding: 0 15px;
}
@media (min-width: 1200px) {
  .about_us .trust_us {
    margin-top: 80px;
  }
}
.about_us .trust_us .title_area {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about_us .trust_us .title_area {
    margin-bottom: 0;
  }
}
.about_us .trust_us .title_area .title {
  position: relative;
  font-size: 22px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .about_us .trust_us .title_area .title {
    font-size: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .about_us .trust_us .title_area .title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .about_us .trust_us .title_area .title {
    font-size: 30px;
    margin-bottom: 20px;
    max-width: 500px;
  }
}
.about_us .trust_us .title_area .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #CDCDCD;
}
.about_us .trust_us .title_area .title span {
  position: relative;
  background: #fff;
  padding: 0 15px;
}
.about_us .trust_us .trust_us_slider {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about_us .trust_us .trust_us_slider li {
  text-align: center;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .about_us .trust_us .trust_us_slider li {
    margin: 30px 0 0;
  }
}
@media (min-width: 992px) {
  .about_us .trust_us .trust_us_slider li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(20% - 25px);
            flex: 1 1 calc(20% - 25px);
    max-width: calc(20% - 25px);
  }
}
.about_us .trust_us .trust_us_slider .slick-slide img {
  margin: 0 auto;
}

.our_champoins {
  background: #FAFAFA;
}
@media (min-width: 992px) {
  .our_champoins .block {
    border-radius: 20px;
    overflow: hidden;
  }
}
.our_champoins .block .card {
  border: 0;
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .our_champoins .block .card {
    border-radius: 0;
    margin-bottom: 0;
  }
  .our_champoins .block .card img {
    border-radius: 0;
  }
}
.our_champoins .block .card .card-title {
  font-size: 26px;
}
@media (min-width: 768px) {
  .our_champoins .block .card .card-body {
    padding: 50px 15px;
  }
}
.our_champoins .block .active .card-body {
  background: var(--color-primary);
}
.our_champoins .block .active .card-body .card-title,
.our_champoins .block .active .card-body .card-text {
  color: var(--white);
}
.our_champoins .action_area {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .our_champoins .action_area {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .our_champoins .action_area {
    margin-top: 50px;
  }
}

.subscribe {
  background: var(--color-primary);
}
.subscribe .title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 23px;
}
@media (min-width: 768px) {
  .subscribe .title {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .subscribe .title {
    font-size: 60px;
    margin-bottom: 40px;
  }
}
.subscribe .btn {
  border-radius: 100px !important;
}
.subscribe .input-group {
  background: #FFF;
  padding: 5px;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--color-paragraph);
}
@media (min-width: 1200px) {
  .subscribe .input-group {
    max-width: 800px;
    margin: 0 auto;
  }
}
.subscribe .input-group .form-control {
  border-color: transparent;
  padding: 10px 10px 10px 15px;
}
.subscribe .input-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 768px) {
  .subscribe .input-group .form-control {
    padding: 15px 15px 15px 25px;
  }
}
@media (min-width: 768px) {
  .subscribe .block {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .subscribe .block {
    max-width: 80%;
  }
}

.resources {
  background: #001b2e;
  background-position: -100%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .resources {
    background-size: 96%;
    background-position: 450px 5%;
  }
}
@media (min-width: 992px) {
  .resources {
    background-size: 85%;
    background-position: 380% 5%;
  }
}
@media (min-width: 1200px) {
  .resources {
    background-size: 48%;
    background-position: 100% 0;
  }
}
.resources .section_title .content,
.resources .section_title .title,
.resources .section_title .subtitle {
  color: var(--white);
}
.resources .content {
  color: var(--white);
  margin: 25px 0;
  text-transform: capitalize;
}
@media (min-width: 1200px) {
  .resources .content {
    max-width: 550px;
    margin-bottom: 50px;
  }
}
.resources .left_content {
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .resources .left_content {
    max-width: 400px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .resources .left_content {
    max-width: 650px;
  }
}
@media (min-width: 1200px) {
  .resources .left_content {
    max-width: 800px;
  }
}
@media (min-width: 768px) {
  .resources .left_content .title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .resources .left_content .title {
    font-size: 43px;
  }
}
@media (min-width: 1200px) {
  .resources .left_content .title {
    font-size: 60px;
  }
}
.resources .left_content .section_title {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .resources .right_content {
    margin-top: -85px;
  }
}
.resources .block {
  background-color: var(--white);
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 50px 40px;
}
@media (min-width: 768px) {
  .resources .block {
    padding: 15px 15px;
    height: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .resources .block {
    padding: 20px;
  }
}
.resources .block .title {
  margin: 20px 0 15px;
  font-size: 24px;
}
.resources .block .content {
  color: var(--color-paragraph);
  font-size: 18px;
}
.resources .active {
  background-color: var(--color-primary);
}
.resources .active .content,
.resources .active .title {
  color: var(--white);
}

.review_area {
  padding-bottom: 100px;
}
@media (min-width: 1200px) {
  .review_area {
    padding-bottom: 160px;
  }
}
@media (min-width: 992px) {
  .review_area .section_title .title {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .review_area .section_title .title {
    max-width: 70%;
  }
}
.review_area .review_slider .item {
  padding: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .review_area .review_slider .item {
    padding: 38px;
  }
}
.review_area .review_slider .item::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 80%;
  height: 25px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  background: #efefef;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item::before {
    bottom: 52px;
  }
}
.review_area .review_slider .item::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 70%;
  height: 25px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  background: #f8f8f8;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item::after {
    bottom: 27px;
  }
}
.review_area .review_slider .item .item_block {
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .item_block {
    -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 992px) {
  .review_area .review_slider .item .item_block {
    text-align: left;
    padding: 50px;
  }
}
.review_area .review_slider .item .item_block .image_area {
  border-radius: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .item_block .image_area {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .review_area .review_slider .item .item_block .image_area {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  .review_area .review_slider .item .inner_title .title {
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .review_area .review_slider .item .inner_title .title {
    font-size: 30px;
  }
}
.review_area .review_slider .item .inner_title .subtitle {
  margin-bottom: 0;
  color: var(--color-heading);
}
.review_area .review_slider .item .image_area {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .image_area {
    text-align: center;
    margin-bottom: 0;
  }
}
.review_area .review_slider .item .content {
  margin: 15px 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .content {
    margin: 8px 0;
  }
}
@media (min-width: 1200px) {
  .review_area .review_slider .item .content {
    margin: 8px 0 30px;
  }
}
.review_area .review_slider .item .content_footer {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 18px;
}
.review_area .review_slider .item .content_footer span {
  font-weight: 400;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .review_area .review_slider .item .right_content {
    padding: 25px;
  }
}
@media (min-width: 992px) {
  .review_area .review_slider .item .right_content {
    padding: 0 50px 0;
  }
}
.review_area .slick-dots {
  bottom: -80px;
}
.review_area .slick-dots li {
  width: 50px;
  height: 50px;
  background: #e6e6e6;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .review_area .slick-dots li {
    width: 80px;
    height: 80px;
  }
}
.review_area .slick-dots li:hover::before {
  background: transparent;
}
.review_area .slick-dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(91, 91, 91, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.review_area .slick-dots li.slick-active::before {
  background: transparent;
}
.review_area .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background: var(--white);
  border: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
  border-radius: 100px;
}
.review_area .slick-arrow:hover {
  background: var(--color-primary);
}
.review_area .slick-prev img,
.review_area .slick-next img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.review_area .slick-prev:hover img,
.review_area .slick-next:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.review_area .slick-prev {
  left: 20px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.review_area .slick-next {
  right: 20px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.join_now {
  background: #001b2e;
  padding: 40px 0 0;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .join_now {
    padding-top: 50px;
  }
}
@media (min-width: 768px) {
  .join_now .image_area {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.join_now .title {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 28px;
}
@media (min-width: 768px) {
  .join_now .title {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .join_now .title {
    font-size: 65px;
    margin-bottom: 40px;
  }
}
.join_now .content {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .join_now .content {
    text-align: left;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .join_now .content {
    padding-left: 50px;
  }
}

.event .section_title_area {
  margin-bottom: 40px;
}
.event .section_title {
  margin-bottom: 15px;
}
.event .action_btn a {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .event .action_btn a {
    width: 250px;
  }
}
@media (min-width: 992px) {
  .event .action_btn a {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .event .action_btn a {
    width: 300px;
  }
}
.event .card {
  border: 0;
  padding: 0 15px;
  margin-bottom: 15px;
  background: #f4f9ff;
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.event .card:hover .hover_icon {
  opacity: 1;
}
.event .card .card-title {
  font-size: 22px;
  margin: 0;
}
@media (min-width: 1200px) {
  .event .card .card-title {
    font-size: 24px;
  }
}
.event .card .image_area {
  margin-top: -50px;
  position: relative;
}
.event .card .image_area img {
  border-radius: 10px;
}
.event .card .categories {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-primary);
  padding: 7px;
  line-height: 1;
  border-radius: 5px;
  color: #FFF;
  font-weight: 600;
}
.event .card .btn {
  background: transparent;
}
.event .card .hover_icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .event .card .action_btn a {
    width: 260px;
  }
}
.event .card .card-body {
  padding: 30px 0;
}
.event .card .card-text {
  margin: 20px 0;
}
.event .active {
  background: var(--white);
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}
.event .active .btn {
  color: var(--white);
  background: var(--color-primary);
}

.our_feed {
  padding: 20px 0;
}
.our_feed .section_title .title {
  text-transform: capitalize;
  max-width: 100%;
}
.our_feed .section_title .feed_link {
  text-align: center;
  margin-top: 10px;
}
.our_feed .section_title .feed_link .btn {
  background: transparent;
  border-color: transparent;
  color: var(--color-paragraph);
  font-size: 20px;
  gap: 5px;
  padding: 0;
}
.our_feed .item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.our_feed .item:hover .hover_icon {
  opacity: 1;
}
.our_feed .item:hover::before {
  opacity: 1;
}
.our_feed .item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.our_feed .item .hover_icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.our_feed .feed_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.our_feed .feed_slider .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(20% - 25px);
          flex: 1 1 calc(20% - 25px);
  max-width: calc(20% - 25px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.our_feed .feed_slider .item .image_area img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
@media (max-width: 992px) {
  .our_feed .feed_slider .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33.33% - 15px);
            flex: 1 1 calc(33.33% - 15px);
    max-width: calc(33.33% - 15px);
  }
}
@media (max-width: 576px) {
  .our_feed .feed_slider .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 15px);
            flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
/*# sourceMappingURL=style.css.map */