/*
Template Name: Raos - Cycling Club HTML Template
Theme URI: http://themeforest.net/user/ridianur
Author: ridianur
Author URI:  http://themeforest.net/user/ridianur
*/
/* ========================================================================== */
/*                              TABLE OF CONTENT                              */
/* ========================================================================== */
/*
GOOGLE FONTS IMPORT
GLOBAL STYLE
--MARGIN & PADDING
--SCROLL TO TOP
--LIGHTBOX STYLE
ANIMATION
PRELOADER
NAVIGATION
SLIDER
BACKGROUND
ABOUT
SERVICES
WORKS
TEAM
CONTACT
FOOTER
MEDIAQUERIES
*/
/* ========================================================================== */
/*                             IMPORT GOOGLE FONT                             */
/* ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;500;700&family=Manrope:wght@400;500;700&display=swap");
:root {
  --plyr-color-main: #ce4363;
}

/* ========================================================================== */
/*                                GLOBAL STYLE                                */
/* ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Familjen Grotesk", sans-serif;
  color: #2B2D42;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

body {
  font-family: "Manrope", sans-serif;
  color: #5e607e;
  font-weight: 400;
  line-height: 1.7;
  font-size: 1rem;
}

a {
  color: #6a6b7c;
  transition: 0.3s;
}
a:hover {
  color: #ce4363;
}

p:last-child {
  margin-bottom: 0;
}

.tc_primary {
  color: #ce4363;
}

.tc_heading {
  color: #2B2D42;
}

.tc_yellow {
  color: #e6cb52;
}

.ff_heading {
  font-family: "Familjen Grotesk", sans-serif;
  letter-spacing: -0.025em;
}

.logo {
  width: 150px;
}

.hover_primary_color {
  transition: 0.3s;
}
.hover_primary_color:hover {
  color: #ce4363 !important;
}

/* ========================================================================== */
/*                              PADDING & MARGIN                              */
/* ========================================================================== */
.py-home {
  padding-top: 150px;
  padding-bottom: 150px;
}

.pt-home {
  padding-top: 150px;
}

.pb-home {
  padding-bottom: 150px;
}

.mt-min-42 {
  margin-top: -42px;
}

.mt-150 {
  margin-top: 150px;
}

/* ========================================================================== */
/*                                  LIGHTBOX                                  */
/* ========================================================================== */
button.disabled {
  display: none;
}

.rdn_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rdn_list li {
  margin-bottom: 16px;
  padding: 0;
  display: flex;
  align-items: flex-start;
}
.rdn_list li::before {
  content: "\f00c";
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  color: #ce4363;
  background-color: #fcf5f7;
  font-size: 11px;
  height: 25px;
  line-height: 25px;
  width: 25px;
  text-align: center;
  margin: 5px 10px 0 0;
  border-radius: 50px;
  flex-shrink: 0;
}

.slider_linear {
  transition-timing-function: linear;
}

/* ========================================================================== */
/*                            SCROLL TO TOP STYLES                            */
/* ========================================================================== */
.scrollToTopBtn {
  background-color: #fcf5f7;
  bottom: 30px;
  cursor: pointer;
  display: inline-flex;
  opacity: 0;
  padding: 15px;
  position: fixed;
  right: 30px;
  transition: 0.3s;
  z-index: 333;
  color: #ce4363;
}
.scrollToTopBtn:hover {
  background-color: #171823;
  color: #fff;
  box-shadow: 0 1rem 3rem rgba(43, 45, 66, 0.2);
}

/* letter spacing */
.ls-wide {
  letter-spacing: 0.7rem;
}

.circle-border {
  border: 1px dashed;
  width: 145px;
  height: 145px;
  border-radius: 100px;
}

.border_special_primary {
  position: relative;
}
.border_special_primary::before {
  background-color: #fff;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 6px;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
}
.border_special_primary::after {
  content: "";
  width: 100%;
  height: 100%;
  right: -20px;
  position: absolute;
  bottom: -20px;
  background-color: #ce4363;
  z-index: -2;
  border-radius: 6px;
}

.scroll-margin {
  scroll-margin-top: 100px;
}

/* DEMO PAGE STYLE */
.demo_row_link a img {
  transition: 0.5s;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
}
.demo_row_link a:hover img {
  transform: translateY(-10px);
  box-shadow: 0 0.5rem 1rem rgba(43, 45, 66, 0.15);
}

/* ========================================================================== */
/*                              ANIMATION STYLES                              */
/* ========================================================================== */
/* ripple animation */
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 1em rgba(255, 255, 255, 0.2), 0 0 0 2em rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(255, 255, 255, 0.1), 0 0 0 2em rgba(255, 255, 255, 0.05), 0 0 0 3em rgba(255, 255, 255, 0);
  }
}
/* float animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* rotate animation */
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* animation class */
.ani-ripple {
  animation: ripple 1s infinite linear;
}

.ani-float {
  animation: float infinite linear;
}

.ani-rotate {
  animation: rotate infinite linear;
}

.ani-long {
  animation-duration: 8s;
}

.ani-short {
  animation-duration: 4s;
}

.ani-delay {
  animation-delay: 1000ms;
}

/* ========================================================================== */
/*                               BUTTONS STYLES                               */
/* ========================================================================== */
.rdn_btn {
  background-color: #ce4363;
  color: #fff;
  transform: translateY(0);
}
.rdn_btn:hover {
  color: #ce4363;
  background-color: #fcf5f7;
  transform: translateY(5px);
}
.rdn_btn.btn_black {
  background-color: #2B2D42;
}
.rdn_btn.btn_black:hover {
  color: #2B2D42;
  background-color: #b6b8cf;
}
.rdn_btn.btn_line {
  background-color: transparent;
  border: 1px solid;
}
.rdn_btn.btn_line:hover {
  color: #fff;
  background-color: #ce4363;
  border-color: #ce4363;
}
.rdn_btn.btn_line_dark {
  background-color: transparent;
  border: 1px solid;
  color: #2B2D42;
}
.rdn_btn.btn_line_dark:hover {
  color: #fff;
  background-color: #ce4363;
  border-color: #ce4363;
}
.rdn_btn.btn_white {
  background-color: #fff;
  color: #ce4363;
}
.rdn_btn.btn_white:hover {
  background-color: #171823;
  color: #fff;
}

.position-relative .absolute_button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.position-relative .absolute_button i {
  padding: 30px;
  background-color: #fff;
  border-radius: 100%;
  color: #ce4363;
  transition: 0.3s;
}
.position-relative .absolute_button i:hover {
  transform: scale(1.1);
}
.position-relative .absolute_button.small_btn i {
  padding: 12px;
}

/* ========================================================================== */
/*                              BACKGROUND STYLES                             */
/* ========================================================================== */
.bg_image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg_position_top {
  background-position: top center;
}

.bg_position_bottom {
  background-position: bottom center;
}

.bg_fixed {
  background-attachment: fixed;
}

.img_with_video {
  height: 600px;
  object-fit: cover;
  width: 100%;
}
.img_with_video a {
  position: absolute;
  left: 50%;
  top: 50%;
}

.bg_auto {
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}

.bg_dark {
  background-color: #171823;
}

.bg_half_gray {
  background: linear-gradient(0deg, #fafafc 50%, transparent 50%);
}

.bg_half_gray_white {
  background: linear-gradient(0deg, #fff 50%, #fafafc 50%);
}

.bg_thrid_gray {
  background: linear-gradient(0deg, #fafafc 33%, transparent 33%);
}

.bg_thrid_dark {
  background: linear-gradient(0deg, #171823 33%, transparent 33%);
}

.bg_half_white {
  background: linear-gradient(0deg, #fff 50%, transparent 50%);
}

.bg_special {
  width: 100%;
  height: 100%;
  top: -40%;
  position: absolute;
  z-index: 0;
}

.bg_gray {
  background-color: #fafafc;
}

/* BACKGROUND WITH IMAGE */
.bg_one {
  background-image: url("../img/bg/bg1.jpg");
}

.bg_two {
  background-image: url("../img/bg/bg2.jpg");
}

.bg_three {
  background-image: url("../img/bg/bg3.jpg");
}

.bg_four {
  background-image: url("../img/bg/bg4.jpg");
}

.bg_five {
  background-image: url("../img/bg/bg5.jpg");
}

.bg_six {
  background-image: url("../img/bg/bg6.jpg");
}

.bg_seven {
  background-image: url("../img/bg/bg7.jpg");
}

.bg_pattern {
  background-image: url("../img/bg/pattern1.jpg");
}

.bg_pattern2 {
  background-image: url("../img/bg/pattern2.jpg");
}

.bg_pattern3 {
  background-image: url("../img/bg/pattern3.jpg");
}

.bg_home {
  background-image: url("../img/bg/bg-home.jpg");
}

.bg_home_two {
  background-image: url("../img/bg/bg-home2.jpg");
}

.bg_home_dark {
  background-image: url("../img/bg/bg-home-dark.jpg");
}

.bg_white_img {
  background-image: url("../img/bg/bg-white-1.jpg");
}

.bg_white_img_two {
  background-image: url("../img/bg/bg-white-2.jpg");
}

.bg_white_img_three {
  background-image: url("../img/bg/bg-white-3.jpg");
}

.bg_wave {
  background-image: url("../img/bg/wave.svg");
}

.bg_wave_two {
  background-image: url("../img/bg/wave2.svg");
}

.bg_dark_pattern {
  background-image: url("../img/bg/bg-dark-pattern.jpg");
}

.bg_rounded {
  background-image: url("../img/bg/rounded.svg");
}

.bg_footer {
  background-image: url("../img/bg/bg-footer.jpg");
  position: relative;
  z-index: 1;
}
.bg_footer::after {
  content: "";
  background: linear-gradient(180deg, rgba(23, 24, 35, 0.1) 0%, rgba(23, 24, 35, 0.3) 30%, rgba(23, 24, 35, 0.5) 70%);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bg_footer_two {
  background-image: url("../img/bg/bg-white-2.jpg");
}

.bg_with_mask {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bg_with_mask::after {
  position: absolute;
  content: "";
  z-index: -1;
  inset: 0;
  background: rgba(23, 24, 35, 0.8);
}

.bg_primary {
  background-color: #ce4363;
}

.bg_green {
  background-color: #7ac43d;
}

.bg_blue {
  background-color: #56a9e0;
}

.bg_yellow {
  background-color: #e6cb52;
}

.bg_green_light {
  background-color: #fbfdf9;
}

.bg_blue_light {
  background-color: #f5fafd;
}

.bg_yellow_light {
  background-color: #fefdf7;
}

.bg_primary_light {
  background-color: #fcf5f7;
}

.text-line {
  position: relative;
}
.text-line::after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url("../img/bg/text-line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}

/* ========================================================================== */
/*                              NAVIGATION STYLES                             */
/* ========================================================================== */
.rdn_nav {
  z-index: 999;
}
.rdn_nav .has_child {
  position: relative;
}
.rdn_nav .has_child > a:after {
  content: "\f107";
  font-weight: bold;
  font-size: 12px;
  color: #ce4363;
  font-family: "Font Awesome 5 Free";
  margin-left: 8px;
}
.rdn_nav .has_child .has_child > a::after {
  content: "\f105";
}
.rdn_nav .has_child .nav_menu_child {
  list-style: none;
  margin: 48px 0 0 0;
  padding: 32px;
  background-color: #fff;
  transition: transform 0s, all 0.1s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
  left: 0;
  top: 100%;
  width: 220px;
  border-radius: 5px;
  z-index: -1;
}
.rdn_nav .has_child .nav_menu_child li {
  margin-bottom: 10px;
}
.rdn_nav .has_child .nav_menu_child li:last-child {
  margin-bottom: 0;
}
.rdn_nav .has_child .nav_menu_child .nav_menu_child {
  left: 100%;
  top: 0;
  margin: 0 0 0 40px;
}
.rdn_nav .has_child.active > .nav_menu_child {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition: transform 0.2s ease, all 0s linear;
  transition-delay: 0.1s;
  z-index: 333;
}

/* CLONED NAVIGATION */
.cloned {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(-30px);
  opacity: 0;
  transition: ease-in-out 0.1s;
  visibility: hidden;
  z-index: 800;
}

.cloned.fixed_menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition: ease-in-out 0.3s;
}
.cloned.fixed_menu .rdn_nav {
  left: 0;
  top: 0;
}

.dark_nav .list-unstyled:not(.mobile_menu) > li > a {
  color: #fff;
}
.dark_nav .list-unstyled:not(.mobile_menu) > li > a:hover {
  color: #ce4363;
}
.dark_nav .mobile_menu_btn {
  color: #fff;
}
.dark_nav .mobile_menu_btn:hover {
  color: #ce4363;
}

.cloned .dark_nav {
  background-color: #171823;
}

/* MOBILE MENU STYLE */
#mobilemenu {
  width: 280px;
  background: white;
  font-size: 15px;
  font-weight: bold;
}

.offcanvas-header {
  position: relative;
  padding: 0;
}
.offcanvas-header .close_mb {
  background: transparent;
  border: none;
  box-shadow: none;
  font-size: 20px;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 30px;
}

.offcanvas-body {
  padding: 30px;
}
.offcanvas-body .logo_mobile {
  display: inline-block;
  width: 60px;
}
.offcanvas-body .mobile_menu {
  padding: 32px 0;
}
.offcanvas-body .mobile_menu li a {
  padding: 5px 0;
  display: inline-block;
}
.offcanvas-body .mobile_menu .mdropdown {
  position: relative;
}
.offcanvas-body .mobile_menu .mdropdown .mdropdown_child {
  display: none;
  padding: 8px 0 8px 16px;
}
.offcanvas-body .mobile_menu .mdropdown .mdropdown_child li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offcanvas-body .mobile_menu .mdropdown i {
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  align-self: center;
  display: block;
  position: absolute;
  transition: 0.3s;
  color: #ce4363;
  z-index: 1;
}
.offcanvas-body .mobile_menu .mdropdown.active > i {
  transform: rotate(180deg);
}

/* ========================================================================== */
/*                                 HOME STYLES                                */
/* ========================================================================== */
.home_img_absolute {
  position: absolute;
  z-index: 0;
  top: -150px;
  right: -100px;
  max-width: 50%;
}
.home_img_absolute::after {
  content: "";
  background-color: #f8e6f5;
  border-radius: 10px;
  width: 200%;
  height: 80%;
  position: absolute;
  bottom: 0;
  right: -110%;
  z-index: -1;
}

.box_home_strech {
  margin-left: -50%;
  margin-bottom: -214px;
  position: relative;
  z-index: 3;
}
.box_home_strech img {
  height: 800px;
  width: 100%;
  object-fit: cover;
}

.home_ava {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.home_ava_icon {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background-color: #ce4363;
  color: #fff;
  border-radius: 8px 0 0 0;
}

.home_video {
  margin-bottom: -150px;
}
.home_video .plyr--video {
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.home_video_txt {
  display: flex;
  flex-direction: column;
}
.home_video_txt p {
  flex-grow: 0;
  background-color: #fcf5f7;
  display: inline-flex;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 6px;
  transform: rotate(-10deg);
  text-transform: uppercase;
  font-weight: 600;
}
.home_video_txt img {
  flex-grow: 0;
  display: inline-flex;
  width: 60px;
  height: auto;
}

/* ========================================================================== */
/*                                 STATS STYLE                                */
/* ========================================================================== */
.stat_content {
  margin-top: -100px;
}

/* ========================================================================== */
/*                                ABOUT STYLES                                */
/* ========================================================================== */
.about_icon {
  color: #fff;
  background-color: #ce4363;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
}

.about_big_text {
  font-size: 42px;
  font-weight: bold;
  position: absolute;
  line-height: 1;
  top: 40px;
  right: 0;
  opacity: 0.05;
  letter-spacing: -0.33rem;
  z-index: 0;
  border: 4px solid;
  padding: 10px;
  border-radius: 100%;
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
}

.abt_box {
  position: relative;
}
.abt_box img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}
.abt_box .abt_box_link {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
  align-items: start;
  background: linear-gradient(0, rgba(0, 0, 0, 0) 0%, rgba(23, 24, 35, 0.1) 70%);
}
.abt_box .abt_box_link .abt_box_content {
  padding: 32px;
  width: 100%;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.abt_box .abt_box_link .abt_box_content .abt_text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.abt_box .abt_box_link .abt_box_content .abt_text h3 {
  width: 60%;
  flex-grow: 0;
  color: #fff;
  margin: 0;
}
.abt_box .abt_box_link .abt_box_content .abt_text p {
  width: 40%;
  flex-grow: 0;
  color: #fff;
  margin: 0;
}
.abt_box .abt_box_link .abt_box_content .abt_text.abt_narrow {
  flex-direction: column;
  gap: 0;
}
.abt_box .abt_box_link .abt_box_content .abt_text.abt_narrow h3 {
  margin-bottom: 16px;
  font-size: 1.414rem;
}
.abt_box .abt_box_link .abt_box_content .abt_text.abt_narrow h3,
.abt_box .abt_box_link .abt_box_content .abt_text.abt_narrow p {
  width: 100%;
}
.abt_box .abt_box_link .abt_box_content i {
  color: #fff;
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  align-self: flex-end;
}
.abt_box .abt_box_link:hover {
  background: linear-gradient(0, rgba(0, 0, 0, 0) 0%, rgba(23, 24, 35, 0.9) 70%);
}
.abt_box .abt_box_link:hover .abt_box_content {
  transform: translateY(0);
  opacity: 1;
}

.abt_motto {
  margin-top: -100px;
}
.abt_motto i {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 50px;
  color: #e6cb52;
}

/* ========================================================================== */
/*                                EVENTS STYLES                               */
/* ========================================================================== */
.event_one_slider {
  margin-right: -40%;
  overflow: hidden;
}

.event_one_box {
  background-color: #171823;
  overflow: hidden;
}
.event_one_box img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
  opacity: 1;
  transform: scale(1) rotate(0);
}
.event_one_box.img_short {
  margin-top: 40px;
}
.event_one_box.img_short img {
  height: 320px;
}
.event_one_box .event_one_link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(23, 24, 35, 0.1) 70%);
}
.event_one_box .event_one_link .event_one_content {
  padding: 32px;
  width: 100%;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.3s;
}
.event_one_box .event_one_link .event_one_content h3,
.event_one_box .event_one_link .event_one_content p {
  color: #fff;
  margin: 0;
}
.event_one_box .event_one_link:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(23, 24, 35, 0.9) 70%);
}
.event_one_box .event_one_link:hover .event_one_content {
  transform: translateY(0);
  opacity: 1;
}
.event_one_box:hover img {
  opacity: 0.3;
  transform: scale(1.2) rotate(2deg);
}

.event_one_nav {
  display: flex;
  gap: 8px;
}
.event_one_nav a {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: #fcf5f7;
  align-items: center;
  border-radius: 100px;
  justify-content: center;
  color: #ce4363;
}
.event_one_nav a:hover {
  background-color: #ce4363;
  color: #fff;
}

.event_two_box {
  margin: 0;
  transition: 0.6s;
  position: relative;
  z-index: 1;
}
.event_two_box .eb_icon {
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border-radius: 8px;
  color: #fff;
  position: absolute;
  right: 32px;
  top: 32px;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
  z-index: 1;
}
.event_two_box img {
  height: 400px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
  border-radius: 6px;
}
.event_two_box .event_two_box_content {
  padding: 32px;
  border-radius: 6px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  transition: 0.5s;
  transform: translateY(10px);
  opacity: 0;
}
.event_two_box .event_two_box_content p {
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.event_two_box .event_two_box_content p i {
  flex-shrink: 0;
  border-radius: 100px;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  display: flex;
  color: #ce4363;
  background-color: #fcf5f7;
  align-items: center;
  justify-content: center;
}
.event_two_box .event_two_box_content h3 {
  color: #fff;
  margin-bottom: 0;
}
.event_two_box::after {
  content: "";
  background-color: #ce4363;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: -16px;
  bottom: -16px;
  border-radius: 6px;
  opacity: 0;
  transition: 0.3s;
}
.event_two_box:hover {
  transform: scale(0.96);
}
.event_two_box:hover::after {
  opacity: 1;
}
.event_two_box:hover .event_two_box_content {
  transform: translateY(0);
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(23, 24, 35, 0.9) 70%);
}

/* EVENT SLIDER */
.event_two_slider .event_one_box {
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
  overflow: hidden;
  position: relative;
}
.event_two_slider .event_one_box::after {
  background: linear-gradient(0deg, #ce4363 25%, transparent 26%, transparent 49%, #ce4363 50%, #ce4363 75%, transparent 76%);
  background-size: 1em 1em;
  content: "";
  position: absolute;
  right: -80px;
  top: 0;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  transform: scale(0.7);
  transition: 0.3s;
  opacity: 0.7;
}
.event_two_slider .event_one_box::before {
  background: #ce4363;
  z-index: 0;
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 0 10px 0 0;
  bottom: 0;
  left: 0;
}
.event_two_slider .event_one_box:hover::after {
  transform: scale(1) translateX(-50px);
  opacity: 1;
}

.events_body {
  margin-bottom: -32px;
  position: relative;
}

.event_minimal_link img {
  transition: 0.8s;
}
.event_minimal_link .em_content {
  height: 100%;
  width: 100%;
  padding: 0;
  bottom: 0;
  left: 0;
}
.event_minimal_link .em_content h3 {
  position: absolute;
  bottom: 32px;
  left: 32px;
  max-width: 180px;
  width: 100%;
  margin-bottom: 0;
}
.event_minimal_link .em_content p {
  position: absolute;
  right: 32px;
  top: 32px;
  color: #ce4363;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1;
  background-color: #fff;
  border-radius: 100px;
  padding-right: 6px;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
}
.event_minimal_link .em_content p i {
  display: flex;
  border-radius: 100px;
  width: 32px;
  height: 32px;
  background-color: #fcf5f7;
  align-items: center;
  font-size: 15px;
  justify-content: center;
}
.event_minimal_link:hover img {
  transform: scale(1.1) rotate(-2deg);
}

.event_filter a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #ce4363;
  background-color: #fcf5f7;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
}
.event_filter a.active, .event_filter a:hover {
  background-color: #ce4363;
  color: #fcf5f7;
}

.event_gallery_slider a {
  background-color: #171823;
  overflow: hidden;
  display: block;
}
.event_gallery_slider a img {
  transition: 0.3s;
}
.event_gallery_slider a:hover img {
  opacity: 0.5;
  transform: rotate(-1deg) scale(1.1);
}

/* ========================================================================== */
/*                               SERVICES STYLES                              */
/* ========================================================================== */
.services_col {
  display: flex;
  padding: 32px;
  background-color: #fff;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
  border-radius: 10px;
}
.services_col i {
  flex-shrink: 0;
  display: flex;
  width: 48px;
  height: 48px;
  background-color: #fcf5f7;
  color: #ce4363;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 24px;
}
.services_col .services_col_content {
  margin-left: 16px;
}

.sv_box_img {
  position: absolute;
  right: 0;
  bottom: 40%;
  margin-bottom: -75px;
}
.sv_box_img img {
  width: 150px;
  height: auto;
}

.sv_card_box {
  background-color: #fff;
  display: flex;
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  gap: 16px;
  align-items: center;
}
.sv_card_box img {
  width: 100px;
  height: 100px;
  flex-grow: 0;
}
.sv_card_box .sv_inner_box {
  flex-grow: 0;
}
.sv_card_box .sv_inner_box ul {
  margin-bottom: 0;
}
.sv_card_box .sv_inner_box ul i {
  color: #eeee13;
}

.sv_box .sv_sub {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #2B2D42;
}
.sv_box .sv_img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sv_box .sv_img i {
  font-size: 24px;
  position: absolute;
  color: #fff;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 8px;
}
.sv_box .sv_img img {
  filter: grayscale(100%);
  height: 240px;
  width: 100%;
  transition: 0.6s;
  object-fit: cover;
}
.sv_box .sv_img img.img_tall {
  height: 320px;
}
.sv_box .sv_img:hover img {
  filter: grayscale(0);
  transform: scale(1.1) rotate(2deg);
}
.sv_box.sv_box_two .sv_sub {
  color: #ce4363;
}
.sv_box.sv_box_two .sv_img {
  justify-content: end;
  align-items: start;
}
.sv_box.sv_box_two .sv_img i {
  border-radius: 0 0 0 6px;
}
.sv_box.sv_box_two .sv_img::after {
  content: "";
  border: 10px solid #e6cb52;
  opacity: 0.9;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  position: absolute;
  left: 24px;
  bottom: 48px;
}
.sv_box.sv_box_two .sv_box_content {
  margin: -32px 16px 0;
  background-image: url("../../img/bg/bg7.png");
  background-size: 50%;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
}

.sv_box_three {
  position: relative;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
}
.sv_box_three .sv_box_content {
  position: absolute;
  bottom: 32px;
  left: 32px;
}
.sv_box_three .sv_img i {
  top: 32px;
  right: 32px;
}

/* ========================================================================== */
/*                                 TEAM STYLES                                */
/* ========================================================================== */
.team_social_list {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: -20px;
  margin-bottom: 0;
}
.team_social_list li a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #ce4363;
  color: #fff;
  border-radius: 100px;
}
.team_social_list li a:hover {
  background-color: #fcf5f7;
  color: #ce4363;
  transform: translateY(-5px);
}

.team_col img {
  height: 450px;
  width: 100%;
  max-width: 100%;
  object-position: center 8%;
  object-fit: cover;
  border-radius: 1rem 1rem 150px 150px;
  transition: 0.8s;
}
.team_col:hover img {
  border-radius: 1rem;
}

/* ========================================================================== */
/*                               CONTACT STYLES                               */
/* ========================================================================== */
.contact_form input,
.contact_form textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid #b6b8cf;
}
.contact_form button {
  border: none;
  transition: 0.3s;
}

.add_box {
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
  border: 1px solid #fcf5f7;
  padding: 32px;
  border-radius: 8px;
}
.add_box h4 {
  margin-bottom: 32px;
}
.add_box .add_list li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: start;
  flex-wrap: wrap;
}
.add_box .add_list li i {
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #ce4363;
  background-color: #fcf5f7;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.125rem 0.15rem rgba(43, 45, 66, 0.075);
}

.img_contact {
  margin-bottom: -48px;
}
.img_contact img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.img_contact .line_bg {
  position: absolute;
  height: 100%;
  left: 0;
  width: 100%;
  top: 0;
  transition: 0.8s;
}

.contact_ava {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid #fff;
  box-shadow: 0 0.125rem 0.15rem rgba(43, 45, 66, 0.075);
}

/* ========================================================================== */
/*                            PRICING TABLE STYLES                            */
/* ========================================================================== */
.pricing_table h3 i {
  background-color: #ce4363;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 24px;
  border-radius: 4px;
}
.pricing_table .pt_duration {
  background-color: #fcf5f7;
  color: #ce4363;
  font-weight: bold;
  padding: 8px;
  line-height: 1;
  border-radius: 4px;
  font-size: 14px;
  box-shadow: 0 0.125rem 0.15rem rgba(43, 45, 66, 0.075);
}
.pricing_table .pricing_list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing_table .pricing_list li:last-child {
  margin-bottom: 0;
}

/* ========================================================================== */
/*                             TESTIMONIAL STYLES                             */
/* ========================================================================== */
.testi_col {
  border: 1px solid #fcf5f7;
}
.testi_col i {
  display: flex;
  height: 33px;
  font-size: 20px;
  color: #ce4363;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi_col .testi_inner h5 {
  margin-bottom: 4px;
}
.testi_col .testi_inner img {
  max-width: 60px;
  border: 5px solid #fff;
  box-shadow: 0 0.5rem 1rem rgba(43, 45, 66, 0.15);
  border-radius: 100px;
}
.testi_col .testi_inner span {
  padding: 4px 8px;
  background-color: #fcf5f7;
  color: #ce4363;
  border-radius: 6px;
  font-size: 12px;
}

.testi_circle {
  margin-right: 40px;
  margin-bottom: -40px;
}

.testi_slide .testi_box {
  padding: 32px;
  border: 1px dashed #b6b8cf;
  border-radius: 16px;
  background-image: url("../../img/bg/testi.png");
  background-position: bottom right;
  background-repeat: no-repeat;
}
.testi_slide .testi_box .testi_head {
  margin-bottom: 32px;
}
.testi_slide .testi_box .testi_head img {
  width: 80px;
}
.testi_slide .testi_box .testi_head .testi_name p {
  background-color: #fcf5f7;
  color: #ce4363;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
}
.testi_slide .testi_pagination {
  position: relative;
  margin-top: 16px;
}
.testi_slide .testi_pagination .swiper-pagination-bullet {
  background-color: #b6b8cf;
  width: 16px;
  height: 2px;
  margin: 0 3px;
  border-radius: 0;
}
.testi_slide .testi_pagination .swiper-pagination-bullet-active {
  background-color: #ce4363;
}

/* ========================================================================== */
/*                                ROUTES STYLES                               */
/* ========================================================================== */
.routes_col .routes_img {
  position: relative;
  width: 40%;
  overflow: hidden;
}
.routes_col .routes_img span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: #2B2D42;
  padding: 4px 8px;
  color: #fff;
  border-radius: 4px;
  font-size: 10px;
  z-index: 1;
}
.routes_col .routes_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.routes_col .routes_img:hover img {
  transform: scale(1.1);
}
.routes_col .routes_box {
  width: 70%;
}
.routes_col .routes_box i {
  display: flex;
  font-size: 24px;
  color: #ce4363;
  margin-left: 32px;
  margin-top: 32px;
}
.routes_col .routes_box h4 {
  padding: 16px 32px 32px 32px;
  margin: 0;
}
.routes_col .routes_box p {
  text-align: center;
  padding: 16px 32px;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
}

.routes_nav {
  display: flex;
  gap: 8px;
}
.routes_nav a {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: #fcf5f7;
  align-items: center;
  border-radius: 100px;
  justify-content: center;
  color: #ce4363;
}
.routes_nav a:hover {
  background-color: #ce4363;
  color: #fff;
}

/* ========================================================================== */
/*                              ACCORDION STYLES                              */
/* ========================================================================== */
.rdn_accordion .accordion-button {
  box-shadow: none;
  color: #5e607e;
}
.rdn_accordion .accordion-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid;
  font-size: 20px;
  font-weight: bolder;
  font-family: "Manrope", sans-serif;
  color: #ce4363;
  letter-spacing: -0.08rem;
  flex-shrink: 0;
}
.rdn_accordion .accordion-button::after {
  width: 12px;
  height: 12px;
  background-size: 12px;
}
.rdn_accordion .accordion-button:not(.collapsed) {
  background-color: #fcf5f7;
  border-color: #ce4363;
  color: #2B2D42;
}
.rdn_accordion .accordion-button:hover {
  color: #2B2D42;
}
.rdn_accordion .accordion-item {
  border: 0;
  margin-bottom: 16px;
  box-shadow: 0 0.125rem 0.15rem rgba(43, 45, 66, 0.075);
  border-radius: 8px;
  overflow: hidden;
  color: #5e607e;
  font-size: 1rem;
}
.rdn_accordion .accordion-item .accordion-body {
  padding: 32px;
}

/* ========================================================================== */
/*                                FOOTER STYLES                               */
/* ========================================================================== */
.footer_gray_social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.footer_gray_social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: #5e607e;
  border-radius: 100px;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
}
.footer_gray_social li a:hover {
  transform: translateY(-4px);
}

.footer_list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer_list li::before {
  font-size: 10px;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  display: flex;
  align-self: center;
  color: #ce4363;
  transform: translateX(0);
  transition: 0.3s;
  transform-origin: left;
}
.footer_list li:hover::before {
  transform: translateX(2px);
}
.footer_list li a {
  color: rgba(255, 255, 255, 0.5);
}
.footer_list li a:hover {
  color: #ce4363;
}
.footer_list.footer_list_white li a {
  color: #6a6b7c;
}
.footer_list.footer_list_white li a:hover {
  color: #ce4363;
}

.footer_title {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bg_footer_two {
  background-color: #fff;
}
.bg_footer_two .footer_title {
  border-bottom: 1px solid #fcf5f7;
}

.footer_text {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer_text.footer_text_white {
  border-color: #fcf5f7;
}

.gal_img {
  border-radius: 8px;
  display: block;
  overflow: hidden;
}
.gal_img img {
  border-radius: 8px;
  transition: 0.3s;
}
.gal_img:hover img {
  opacity: 0.4;
  transform: scale(1.05);
}

.footer_add_list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer_add_list li i {
  display: flex;
  width: 24px;
  font-size: 14px;
  height: 24px;
  color: #ce4363;
  background-color: #fcf5f7;
  border-radius: 4px;
  box-shadow: 0 0.225rem 0.25rem rgba(43, 45, 66, 0.075);
  align-items: center;
  justify-content: center;
}

.footer_sub_form {
  border-radius: 8px;
  font-size: 14px;
  max-width: 300px;
  width: 100%;
}
.footer_sub_form input {
  padding: 8px 16px;
  border-radius: 8px 0 0 8px;
  border: 1px solid #fcf5f7;
  display: flex;
  flex-grow: 1;
  width: 50%;
  flex-shrink: 1;
  background-color: #fcf5f7;
}
.footer_sub_form button {
  background-color: #ce4363;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 0 8px 8px 0;
  transition: 0.3s;
}
.footer_sub_form button:hover {
  background-color: #2B2D42;
}

/* ========================================================================== */
/*                                 BLOG STYLES                                */
/* ========================================================================== */
.blog_img {
  overflow: hidden;
}
.blog_img .blog_author_icon {
  bottom: 32px;
  left: 32px;
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 1;
}
.blog_img .blog_author_icon i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #ce4363;
  border-radius: 100px;
  z-index: 3;
  font-size: 18px;
}
.blog_img .blog_author_icon span {
  font-weight: bold;
  color: #fff;
  padding: 8px 8px 8px 18px;
  line-height: 1;
  margin-left: -10px;
  background-color: #171823;
}
.blog_img .blog_featured_img {
  filter: grayscale(100%);
  transition: 0.6s;
}
.blog_img .line_bg {
  position: absolute;
  height: 100%;
  left: 0;
  width: 100%;
  top: 0;
  transition: 0.8s;
}
.blog_img:hover .blog_featured_img {
  filter: grayscale(0);
  transform: scale(1.1) rotate(2deg);
}
.blog_img:hover .line_bg {
  opacity: 0;
  transform: scale(1.5);
}

.blog_meta {
  color: #9395af;
  flex-wrap: wrap;
}
.blog_meta li {
  line-height: 1;
  font-size: 13px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding-right: 8px;
}
.blog_meta li i {
  color: #ce4363;
  background-color: #fcf5f7;
  font-size: 13px;
  margin-right: 8px;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0 0.125rem 0.15rem rgba(43, 45, 66, 0.075);
}
.blog_meta.blog_meta_top li {
  font-size: 16px;
}
.blog_meta.blog_meta_top li i {
  font-size: 16px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.blog_small_img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 100%;
}

.blog_widget_img {
  flex-grow: 0;
  flex-shrink: 0;
}
.blog_widget_img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-grow: 0;
}

.blog_widget_date {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.blog_widget_date i {
  background-color: #fcf5f7;
  font-size: 16px;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #ce4363;
}

.blog_content h3:hover {
  color: #ce4363;
}

.widget {
  border-bottom: 1px solid #fcf5f7;
}

.widget_list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget_list li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 10px;
  display: flex;
  color: #ce4363;
}

.tag_list {
  gap: 8px;
  flex-wrap: wrap;
}
.tag_list a {
  display: inline-block;
  padding: 8px 16px;
  line-height: 1;
  border-radius: 4px;
  color: #ce4363;
  background-color: #fcf5f7;
  font-size: 14px;
  box-shadow: 0 0.125rem 0.15rem rgba(43, 45, 66, 0.075);
}
.tag_list a:hover {
  color: #fff;
  background-color: #ce4363;
}

.blog_post {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #fcf5f7;
}

.page_nav_list {
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
  flex-wrap: wrap;
}
.page_nav_list a {
  color: #ce4363;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fcf5f7;
  color: #ce4363;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.15rem rgba(43, 45, 66, 0.075);
  flex-grow: 0;
  flex-shrink: 0;
}
.page_nav_list a:hover {
  background-color: #ce4363;
  color: #fff;
}
.page_nav_list a.single_blog_nav {
  width: auto;
  gap: 8px;
  padding: 0 16px;
}
.page_nav_list .active a {
  cursor: pointer;
  background-color: #ce4363;
  color: #fff;
}

.related_post {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #fcf5f7;
}

.comment_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment_list li {
  margin-bottom: 32px;
}
.comment_list li .top_comment {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.comment_list li .top_comment .avatar img {
  border-radius: 100px;
  width: 64px;
  height: 64px;
  object-fit: cover;
}
.comment_list li .top_comment .top_comment_content {
  position: relative;
  flex-grow: 1;
  margin-left: 16px;
}
.comment_list li .top_comment .top_comment_content h4 {
  font-size: 20px;
  letter-spacing: -0.008em;
  margin-bottom: 8px;
  font-weight: normal;
}
.comment_list li .top_comment .top_comment_content span {
  color: #8d8faa;
  align-items: center;
  display: flex;
  font-size: 14px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.comment_list li .top_comment .top_comment_content span i {
  font-size: 16px;
  margin-right: 4px;
}
.comment_list li .top_comment .top_comment_content a {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  font-weight: bold;
  color: #ce4363;
  background-color: #fcf5f7;
  padding: 5px 20px;
  border-radius: 100px;
  transition: 0.3s;
}
.comment_list li .top_comment .top_comment_content a:hover {
  color: #fff;
  background-color: #ce4363;
}
.comment_list li ul {
  list-style: none;
  margin-left: 32px;
  margin-top: 32px;
}
.comment_list .bottom_comment {
  border-bottom: 1px solid #fcf5f7;
  padding-bottom: 32px;
}
.comment_list > li:last-child .bottom_comment {
  border-bottom: 0;
  padding-bottom: 0;
}

/* COMMENT FORM */
.comment_box_form {
  border-top: 1px solid #fcf5f7;
}
.comment_box_form h4 {
  margin-bottom: 4px;
}
.comment_box_form p {
  color: #b1b2c4;
}
.comment_box_form .comment-form input,
.comment_box_form .comment-form textarea {
  padding: 8px 16px;
  margin-bottom: 16px;
}
.comment_box_form ::placeholder {
  color: #9395af;
}

.comment_submit {
  box-shadow: none;
  transition: 0.3s;
  border: none;
}

/* ========================================================================== */
/*                                MEDIA QUERIES                               */
/* ========================================================================== */
@media (max-width: 991px) {
  .container {
    padding-right: 32px;
    padding-left: 32px;
  }
  .event_one_slider {
    margin-right: 0;
  }
  .event_one_slider .event_one_box img {
    height: 300px;
  }
  .team_col img {
    height: 300px;
  }
  .mt-min-42 {
    margin-top: 0;
  }
  .home_img_absolute {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
  }
  .home_img_absolute::after {
    width: 100%;
    right: 0;
  }
  .abt_box .abt_box_link .abt_box_content .abt_text {
    flex-direction: column;
    align-items: start;
  }
  .abt_box .abt_box_link .abt_box_content .abt_text h3,
  .abt_box .abt_box_link .abt_box_content .abt_text p {
    width: 100%;
  }
  .pricing_table {
    max-width: 300px;
    margin: auto;
  }
  .box_home_strech {
    margin: 0;
    margin-top: 32px;
  }
  .box_home_strech img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .img_with_video {
    height: 400px;
  }
  .ls-wide {
    letter-spacing: 0.2rem;
  }
}
@media (max-width: 500px) {
  .img_with_video {
    height: 340px;
  }
}
/*# sourceMappingURL=style.css.map */
