@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --color-light: #ffffff;
  --color-light-f3-gray: #f3f3f3;
  --color-light-f5-gray: #f5f5f5;
  --color-light-f7-gray: #f7f7f7;
  --color-light-f9-gray: #f9f9f9;
  --color-light-fa-gray: #fafafa;
  --color-222: #222222;
  --color-333: #333333;
  --color-444: #444444;
  --color-666: #666666;
  --color-777: #777777;
  --color-888: #888888;
  --color-999: #999999;
  --color-light-aaa-gray: #aaaaaa;
  --color-light-ccc-gray: #cccccc;
  --color-light-d3-gray: #d3d3d3;
  --color-light-ddd-gray: #dddddd;
  --color-light-d5-gray: #d5d5d5;
  --color-light-eee-gray: #eeeeee;
  --color-light-e5-gray: #e5e5e5;
  --font-color: #414141;
  --title-color: #1c3c6b;
  --sub-title-color: #bec0d9;
  --link-color: var(--focus-color);
  --link-color-hover: var(--brand-secondary-color-hover);
  --color-select: #3539ad9a;
  --brand-color: #1A2B48;
  --brand-color-hover: #3539ad;
  --brand-secondary-color: var(--focus-color);
  --brand-secondary-color-hover: #4287F8;
  --focus-color: #5191FA;
}

html, body, div, span, applet, object, iframe, blockquote, pre, h1, h2, h3, h4, h5, h6, p,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
  border-radius: 20px;
}

body {
  margin: 0;
  padding: 0;
  color: var(--font-color);
  background: var(--color-light);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

*::-moz-selection {
  background: var(--color-select);
  color: var(--color-light);
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-select);
  color: var(--color-light);
  text-shadow: none;
}

::selection {
  background: var(--color-select);
  color: var(--color-light);
  text-shadow: none;
}

.form-control:focus {
  outline: transparent;
  -webkit-box-shadow: inset 0 0px 0 transparent;
          box-shadow: inset 0 0px 0 transparent;
  border-color: #ddd;
}

.btn:focus {
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--title-color);
}

a {
  text-decoration: none;
}

.top_header {
  width: 100%;
  height: 40px;
  background-color: var(--brand-color);
}

.top_header_inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--color-light);
}

.top_header_inner .nav .nav-link {
  padding: 0.2rem 0.8rem;
  font-size: 0.9rem;
}

.top_header_inner .nav .nav-link:last-child:hover {
  text-decoration: underline;
}

.top_header_inner .emergency_number {
  width: 24px;
  border-radius: 50%;
  vertical-align: text-bottom;
}

.emergency {
  width: 100%;
  max-width: 40px;
  display: block;
}

header {
  padding: 5px 0;
  border-bottom: 1px solid #eaeef2;
}

header .navbar-brand {
  margin-right: 3rem;
}

.navbar-brand img {
  width: 100%;
  max-width: 200px;
  display: block;
}

.search_box {
  width: auto;
}

.search_box .form-control {
  border: solid 1px #eeeeee;
  border-radius: 20px 0 0 20px;
  -webkit-box-shadow: 0 0 10px 0 #0000000d;
          box-shadow: 0 0 10px 0 #0000000d;
}

.search_box .btn_search {
  background: var(--brand-secondary-color);
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px 0 #0000000d;
          box-shadow: 0 0 10px 0 #0000000d;
}

.search_box .btn_search svg {
  stroke: var(--color-light);
}

.search_box .btn_search:hover {
  background: var(--brand-color);
}

.search_box .btn_search:hover svg {
  stroke: var(--color-light);
}

.searchbar .form-control {
  border-radius: .25rem 0 0 .25rem;
}

.searchbar .btn {
  border-radius: 0 .25rem .25rem 0;
}

.menubar_wrapper {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.menubar_wrapper .user_login_wrapper {
  margin-left: 10px;
}

.menubar_wrapper .user_login_wrapper .nav-link {
  overflow: hidden;
  padding: 0;
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid var(--brand-color);
  border-radius: 50%;
  line-height: 1.2rem;
}

.menubar_wrapper .user_login_wrapper .nav-link::after {
  display: none;
}

.menubar_wrapper .user_login_wrapper .nav-link .user_name {
  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;
  height: 100%;
  color: var(--brand-color);
  text-transform: uppercase;
}

.menubar_wrapper .user_login_wrapper .nav-link .user_img {
  width: 34px;
  height: 34px;
}

.menubar_wrapper .user_login_wrapper .main_manu_dd {
  min-width: 15rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 12px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 12px 15px;
}

.menubar_wrapper .user_login_wrapper .main_manu_dd li:first-child {
  border-bottom: 1px solid var(--color-light-eee-gray);
}

.menubar_wrapper .user_login_wrapper .main_manu_dd li:last-child {
  border-top: 1px solid var(--color-light-eee-gray);
}

.menubar_wrapper .user_login_wrapper .main_manu_dd li:last-child .dropdown-item {
  text-align: center;
}

.menubar_wrapper .user_login_wrapper .main_manu_dd li:last-child .dropdown-item:hover {
  background: transparent;
}

.menubar_wrapper .user_login_wrapper .main_manu_dd .dropdown-item {
  color: var(--brand-color);
  border-bottom: none;
}

.menubar_wrapper .user_login_wrapper .main_manu_dd .dropdown-item:hover {
  color: var(--title-color);
  background: var(--color-light-eee-gray);
}

.menubar_wrapper .user_login_wrapper .main_manu_dd .dropdown-item .user_details p {
  font-size: 1rem;
}

.menubar_wrapper .user_login_wrapper .main_manu_dd .dropdown-item .user_details p:last-child {
  font-size: 0.8rem;
}

.menubar_wrapper .user_login_wrapper .main_manu_dd .dropdown-item .signout_wrapper {
  display: inline-block;
  padding: 6px 30px;
  background: #ddd;
  border-radius: 8px;
}

.menubar_wrapper .user_login_wrapper .main_manu_dd .dropdown-item .signout_wrapper:hover {
  color: var(--color-light);
  background: var(--brand-color);
}

.menubar_wrapper .nav-item .nav-link {
  color: var(--brand-color);
  font-weight: 500;
}

.menubar_wrapper .main_manu_dd {
  margin-top: 1.3rem;
  padding: 0;
  min-width: 12rem;
  border-color: var(--color-light-eee-gray);
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0 1px 1px #dbdbdb;
          box-shadow: 0 1px 1px #dbdbdb;
}

.menubar_wrapper .main_manu_dd .dropdown-item {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px dotted var(--color-light-eee-gray);
  -webkit-transition: .3s all;
  transition: .3s all;
}

.menubar_wrapper .main_manu_dd .dropdown-item:hover {
  color: var(--brand-secondary-color);
  background: transparent;
}

.section_title {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
}

.section_title h1 {
  text-transform: uppercase;
}

.section_title span:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 2px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: var(--brand-color);
}

.section_title span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 3em;
  padding-left: 0.25em;
  color: rgba(0, 0, 0, 0.4);
  padding-bottom: 10px;
}

.destination_item {
  position: relative;
}

.destination_item:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.destination_item a {
  display: block;
  color: var(--color-light);
}

.destination_item a:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(15%, rgba(26, 43, 72, 0.899597)), to(rgba(26, 43, 72, 0)));
  background: linear-gradient(0deg, rgba(26, 43, 72, 0.899597) 15%, rgba(26, 43, 72, 0) 100%);
  border-radius: 10px;
}

.destination_item a:hover .image .content {
  bottom: 50%;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.destination_item a .image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.destination_item a .image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(26, 43, 72, 0.804359)), color-stop(50%, rgba(81, 145, 250, 0)));
  background: linear-gradient(0deg, rgba(26, 43, 72, 0.804359) 10%, rgba(81, 145, 250, 0) 50%);
}

.destination_item a .image img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.destination_item a .image .content {
  position: absolute;
  bottom: 5%;
  left: 0;
  -webkit-transform: translate(0, -5%);
          transform: translate(0, -5%);
  width: 100%;
  z-index: 1;
  text-align: center;
  -webkit-transition: bottom .5s ease-in-out;
  transition: bottom .5s ease-in-out;
}

.destination_item a .image .content .title {
  color: var(--color-light);
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.destination_item a .image .content .desc {
  color: var(--sub-title-color);
  font-size: 0.8rem;
  font-weight: 500;
}

.main_carousel_wrapper .carousel-inner .carousel-item img {
  height: 82vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner_wrapper {
  position: relative;
  width: 100%;
  height: 140px;
  background: url(../img/bandarban.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.banner_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 43, 72, 0.45);
}

.banner_wrapper .height {
  height: 140px;
}

.banner_wrapper .search {
  position: relative;
  -webkit-box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}

.banner_wrapper .search input {
  height: 70px;
  text-indent: 25px;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid var(--color-light-ddd-gray);
  border-radius: 10px;
}

.banner_wrapper .search input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid var(--brand-secondary-color);
}

.banner_wrapper .search .fa-search {
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.banner_wrapper .search button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 60px;
  width: 110px;
  background: var(--brand-secondary-color);
  border-color: #4088ff;
  border-radius: 6px;
}

.breadcrumb_wrapper {
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb_wrapper .breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
}

.breadcrumb_wrapper .breadcrumb .breadcrumb-item a {
  color: var(--brand-color);
  text-decoration: none;
}

.breadcrumb_wrapper .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.main_wrapper {
  background: #EBF0F4;
}

.main_wrapper .sidebar_wrapper {
  padding: 15px;
  background: var(--color-light);
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}

.main_wrapper .sidebar_wrapper .destination {
  margin-bottom: 0;
  padding-bottom: 15px;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-light-ddd-gray);
}

.main_wrapper .sidebar_wrapper .reset_btn {
  display: block;
  margin: 20px 0;
  padding: 8px 0;
  color: var(--color-light);
  background: var(--brand-secondary-color);
  text-align: center;
  border: 1px solid transparent;
  border-radius: 5px;
}

.main_wrapper .sidebar_wrapper .reset_btn:hover {
  color: var(--brand-secondary-color);
  background: transparent;
  border-color: var(--brand-secondary-color);
}

.main_wrapper .sidebar_wrapper .reset_btn .icon {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}

.main_wrapper .sidebar_wrapper .price_range_wrapper {
  margin-bottom: 25px;
}

.main_wrapper .sidebar_wrapper .price_range_wrapper label {
  color: var(--title-color);
  font-weight: 600;
}

.main_wrapper .sidebar_wrapper .price_range_wrapper .range_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: .8rem;
  margin-top: -10px;
}

.main_wrapper .sidebar_wrapper .duration_wrapper {
  margin-bottom: 25px;
}

.main_wrapper .sidebar_wrapper .duration_wrapper .title {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.main_wrapper .sidebar_wrapper .duration_wrapper .form-check .form-check-label {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.87rem;
  cursor: pointer;
}

.main_wrapper .sidebar_wrapper .time_wrapper {
  margin-bottom: 25px;
}

.main_wrapper .sidebar_wrapper .time_wrapper .title {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.main_wrapper .sidebar_wrapper .time_wrapper .list-group-item {
  padding: 0.5rem 0.8rem;
  background: var(--color-light-f9-gray);
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0 0 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0 0 8px 0px;
}

.main_wrapper .sidebar_wrapper .time_wrapper .list-group-item:hover {
  background: var(--color-light);
}

.main_wrapper .sidebar_wrapper .time_wrapper .list-group-item i {
  color: var(--color-light-aaa-gray);
}

.main_wrapper .sidebar_wrapper .time_wrapper .list-group-item span {
  display: block;
  margin-top: 5px;
  font-size: 0.7rem;
}

.main_wrapper .page_title {
  margin-bottom: 15px;
}

.main_wrapper .pre_rating_wrapper {
  padding: 5px 0;
  color: var(--color-999);
  font-size: 0.8rem;
  border: 1px solid var(--color-light-eee-gray);
  border-width: 1px 0;
}

.main_wrapper .pre_rating_wrapper .total_rating {
  color: var(--color-light-aaa-gray);
  font-weight: 500;
}

.main_wrapper .pre_rating_wrapper .total_reviews {
  margin-left: 5px;
  font-weight: 500;
}

.main_wrapper .pre_rating_wrapper .dot_icon {
  margin: 0 8px;
  color: var(--color-light-eee-gray);
  font-size: 0.3rem;
  vertical-align: middle;
}

.main_wrapper .pre_rating_wrapper .priority {
  font-weight: 700;
}

.main_wrapper .pre_rating_wrapper .top_item {
  font-weight: 500;
}

.main_wrapper .overview_wrapper {
  margin: 20px 0 35px;
}

.main_wrapper .overview_wrapper .discrip {
  line-height: 1.8rem;
}

.main_wrapper .filter_wrapper .filter_body {
  position: relative;
}

.main_wrapper .filter_wrapper .filter_body .navigation_wrapper {
  width: 100%;
}

.main_wrapper .filter_wrapper .filter_body .navigation_wrapper a {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  padding: 5px 0;
  color: var(--color-light);
  background: rgba(81, 145, 250, 0.3);
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 50%;
  text-align: center;
}

.main_wrapper .filter_wrapper .filter_body .navigation_wrapper a:hover {
  color: var(--link-color);
  background: var(--color-light);
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.main_wrapper .filter_wrapper .filter_body .navigation_wrapper a:first-child {
  left: 16px;
  margin-left: -15px;
}

.main_wrapper .filter_wrapper .filter_body .navigation_wrapper a:last-child {
  right: 16px;
  margin-right: -15px;
}

.main_wrapper .filter_wrapper .filter_body .nav {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border: none;
}

.main_wrapper .filter_wrapper .filter_body .nav .nav-item {
  margin-right: 15px;
}

.main_wrapper .filter_wrapper .filter_body .nav .nav-item:last-child {
  margin-right: 0;
}

.main_wrapper .filter_wrapper .filter_body .nav .nav-link {
  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;
  padding: 1.2rem 1.5rem;
  width: 196px;
  color: var(--title-color);
  background: var(--color-light);
  font-weight: 400;
  font-size: 0.8rem;
  border: none;
  border-radius: 5px;
}

.main_wrapper .filter_wrapper .filter_body .nav .nav-link:hover {
  color: var(--brand-secondary-color);
  border-color: transparent;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
}

.main_wrapper .filter_wrapper .filter_body .nav .nav-link i {
  margin-right: 8px;
  font-size: 2.1rem;
  vertical-align: middle;
}

.main_wrapper .filter_wrapper .filter_body .nav .nav-link img {
  margin-right: 15px;
  width: 38px;
  height: 38px;
  vertical-align: middle;
}

.main_wrapper .filter_wrapper .filter_body .nav .nav-link.active {
  color: var(--title-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.main_wrapper .filter_wrapper .tab-content {
  padding: 20px 0 10px;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--color-light);
  border-bottom: 2px solid transparent;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper:hover {
  border-bottom: 2px solid var(--title-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.01) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.01) 0px 3px 8px;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper:hover .img_wrapper .img_thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  border-right: 1px solid var(--color-light-eee-gray);
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .img_thumb {
  overflow: hidden;
  margin-right: 12px;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .img_thumb img {
  width: 200px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .name {
  margin-bottom: 5px;
  color: var(--title-color);
  font-size: 1.1rem;
  font-weight: 500;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .location {
  margin-bottom: 10px;
  color: var(--title-color);
  font-size: 0.8rem;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .list-group .list-group-item {
  padding: 0;
  border: none;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .list-group .list-group-item .list_item {
  display: inline-block;
  color: var(--font-color);
  font-size: 0.8rem;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .list-group .list-group-item .list_item .icon {
  margin-right: 2px;
  width: 15px;
  height: 15px;
  color: var(--color-light-aaa-gray);
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .topic .badge {
  font-weight: 400;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .price_wrapper {
  padding-right: 15px;
  width: 20%;
  text-align: right;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .price_wrapper .per {
  color: var(--title-color);
  font-size: 0.8rem;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .price_wrapper .price {
  margin: 3px 0;
  color: var(--title-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.main_wrapper .filter_wrapper .tab-content .item_wrapper .price_wrapper .price small {
  font-size: 64%;
  font-weight: 300;
}

.main_wrapper .pagination_wrapper {
  margin-bottom: 20px;
}

.main_wrapper .details_wrapper .carousel .carousel-inner {
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
}

.main_wrapper .details_wrapper .carousel .carousel-inner .carousel-item img {
  height: 415px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content {
  padding: 0;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper:hover {
  border-color: transparent;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper {
  width: 100%;
  border: none;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .name {
  width: 95%;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .google_map {
  margin: 10px 0;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .requirements {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 10px 0 5px;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .requirements_type {
  font-size: 0.8rem;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .topic {
  margin-top: 15px;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .topic .badge {
  margin-bottom: 5px;
  padding: 0.9em 1em;
  font-weight: 400;
}

.main_wrapper .details_wrapper .filter_wrapper .tab-content .item_wrapper .img_wrapper .item .topic .bg-light {
  background: var(--color-light-eee-gray) !important;
}

.main_wrapper .details_wrapper .details_body_wrapper {
  margin-bottom: 20px;
  padding: 15px;
  background: var(--color-light);
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}

.main_wrapper .details_wrapper .details_body_wrapper .nav-tabs {
  margin-bottom: 20px;
}

.main_wrapper .details_wrapper .details_body_wrapper .nav-tabs .nav-link {
  color: var(--title-color);
  font-weight: 500;
  border: none;
}

.main_wrapper .details_wrapper .details_body_wrapper .nav-tabs .nav-link:hover {
  color: var(--brand-secondary-color);
  border-color: transparent;
  border-bottom: 3px solid var(--brand-secondary-color);
}

.main_wrapper .details_wrapper .details_body_wrapper .nav-tabs .nav-link.active {
  color: var(--brand-secondary-color);
  border: none;
  border-bottom: 3px solid var(--brand-secondary-color);
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .title {
  margin-bottom: 15px;
  padding-left: 5px;
  font-size: 1.2rem;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .details {
  margin-bottom: 25px;
  margin-left: 30px;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .list_details {
  margin: 10px 0 10px 20px;
  font-weight: 500;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .badge_items {
  margin: 10px 0 25px 35px;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content ul {
  padding-left: 60px;
  margin: 0;
  list-style: disc;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .icon {
  width: 16px;
  height: 16px;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .bg-light {
  background: var(--color-light-eee-gray) !important;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .contact_details_wrapper {
  margin: 30px 0 20px 60px;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .contact_details_wrapper .list_details {
  margin: 15px 0;
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .contact_details_wrapper .list_details a {
  color: var(--title-color);
}

.main_wrapper .details_wrapper .details_body_wrapper .details_tab_content .contact_details_wrapper .list_details i {
  margin-right: 15px;
  padding: 10px 0;
  color: var(--title-color);
  background: transparent;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  text-align: center;
  vertical-align: sub;
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper {
  border: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
          box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .cover_img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body {
  padding: 0.5rem 0.7rem;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body .card-title {
  margin-bottom: 0;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body .card-text small {
  font-size: 0.8rem;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body .item_text {
  margin: 5px 0 10px;
  font-size: 0.85rem;
  line-height: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body .booking_btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: right;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body .booking_btn_wrapper .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--title-color);
  font-size: 1.3rem;
  font-weight: 600;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body .booking_btn_wrapper .price .discount {
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: line-through;
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body .booking_btn_wrapper .btn_booking {
  color: var(--color-light);
  background: var(--brand-secondary-color);
}

.main_wrapper .details_wrapper .details_body_wrapper .car_details_wrapper .item_wrapper .card-body .booking_btn_wrapper .btn_booking:hover {
  background: var(--brand-secondary-color-hover);
}

.main_wrapper .details_wrapper .booking_continue_wrapper input {
  border-color: var(--color-light-ddd-gray);
}

.main_wrapper .details_wrapper .booking_continue_wrapper select:focus {
  border-color: var(--color-light-ddd-gray);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .span_label {
  font-size: 0.8rem;
  opacity: .65;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper {
  padding: 5px 10px;
  border: 1px solid var(--color-light-ddd-gray);
  border-radius: 5px;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .booking_btn {
  padding: 0;
  width: 100%;
  border: none;
  text-align: left;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .booking_btn::after {
  display: none;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .booking_btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu {
  min-width: 20.45rem;
  -webkit-transform: translate(-1px, 65px) !important;
          transform: translate(-1px, 65px) !important;
  border-radius: 5px;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--color-light-eee-gray);
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item:hover, .main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item:focus, .main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item:active {
  color: var(--title-color);
  background: transparent;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item .item .title {
  color: var(--title-color);
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item .item .title small {
  color: #bec0d9;
  font-size: 80%;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item .item i {
  padding: 5px 0;
  width: 24px;
  height: 24px;
  color: var(--title-color);
  background: transparent;
  border: 1px solid var(--title-color);
  border-radius: 50%;
  font-size: 0.7rem;
  text-align: center;
  vertical-align: bottom;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown-item .item span {
  padding: 0 8px;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown_item_last {
  margin-top: 10px;
  border-bottom: none;
  text-align: right;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown_item_last span {
  display: inline-block;
  padding: 5px 15px;
  color: var(--color-light);
  background: var(--brand-secondary-color);
  border-radius: 5px;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .booking_item_wrapper .dropdown-menu .dropdown_item_last span:hover {
  background: var(--brand-secondary-color-hover);
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .price_range_wrapper {
  margin: 20px 0 10px;
  text-align: center;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .price_range_wrapper .sub_title {
  color: var(--sub-title-color);
  font-size: 0.89rem;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .price_range_wrapper .price {
  margin: 7px 0;
  font-weight: 500;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .price_range_wrapper .btn_continue {
  display: block;
  margin-top: 30px;
  padding: 8px;
  color: var(--color-light);
  background: var(--brand-secondary-color);
  border-radius: 5px;
}

.main_wrapper .details_wrapper .booking_continue_wrapper .price_range_wrapper .btn_continue:hover {
  background: var(--brand-secondary-color-hover);
}

.main_wrapper .details_wrapper .user_rating_wrapper .rating {
  margin-bottom: 20px;
  float: left;
}

.main_wrapper .details_wrapper .user_rating_wrapper .rating:not(:checked) > input {
  position: absolute;
  top: -9999px;
  clip: rect(0, 0, 0, 0);
}

.main_wrapper .details_wrapper .user_rating_wrapper .rating:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 2.5rem;
  color: var(--color-light-ddd-gray);
  line-height: 1;
}

.main_wrapper .details_wrapper .user_rating_wrapper .rating:not(:checked) > label:before {
  content: '★ ';
}

.main_wrapper .details_wrapper .user_rating_wrapper .rating > input:checked ~ label {
  color: var(--brand-secondary-color);
}

.main_wrapper .details_wrapper .user_rating_wrapper .rating:not(:checked) > label:hover,
.main_wrapper .details_wrapper .user_rating_wrapper .rating:not(:checked) > label:hover ~ label {
  color: var(--brand-secondary-color);
}

.main_wrapper .details_wrapper .user_rating_wrapper .rating > input:checked + label:hover,
.main_wrapper .details_wrapper .user_rating_wrapper .rating > input:checked + label:hover ~ label,
.main_wrapper .details_wrapper .user_rating_wrapper .rating > input:checked ~ label:hover,
.main_wrapper .details_wrapper .user_rating_wrapper .rating > input:checked ~ label:hover ~ label,
.main_wrapper .details_wrapper .user_rating_wrapper .rating > label:hover ~ input:checked ~ label {
  color: var(--brand-secondary-color);
}

.main_wrapper .details_wrapper .user_rating_wrapper .rating > label:active {
  position: relative;
  top: 2px;
  left: 2px;
}

.main_wrapper .details_wrapper .rating_wrapper .card {
  margin: 0 0 20px;
  padding: 30px 60px;
  border-color: var(--color-light-eee-gray);
  border-radius: 5px;
}

.main_wrapper .details_wrapper .rating_wrapper .rating-box {
  width: 130px;
  height: 130px;
  margin-right: auto;
  margin-left: auto;
  background-color: #FBC02D;
  color: #fff;
  text-align: center;
  border-radius: 4px;
}

.main_wrapper .details_wrapper .rating_wrapper .rating-box .rating_point {
  margin: 35px 0 0;
  font-size: 2.4rem;
  color: var(--color-light);
}

.main_wrapper .details_wrapper .rating_wrapper .rating_star {
  text-align: center;
}

.main_wrapper .details_wrapper .rating_wrapper .rating-label {
  font-weight: bold;
}

.main_wrapper .details_wrapper .rating_wrapper .rating-bar {
  width: 300px;
  padding: 8px;
  border-radius: 5px;
}

.main_wrapper .details_wrapper .rating_wrapper .bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 5px;
}

.main_wrapper .details_wrapper .rating_wrapper .bar-5 {
  width: 70%;
  height: 13px;
  background-color: #FBC02D;
  border-radius: 20px;
}

.main_wrapper .details_wrapper .rating_wrapper .bar-4 {
  width: 30%;
  height: 13px;
  background-color: #FBC02D;
  border-radius: 20px;
}

.main_wrapper .details_wrapper .rating_wrapper .bar-3 {
  width: 20%;
  height: 13px;
  background-color: #FBC02D;
  border-radius: 20px;
}

.main_wrapper .details_wrapper .rating_wrapper .bar-2 {
  width: 10%;
  height: 13px;
  background-color: #FBC02D;
  border-radius: 20px;
}

.main_wrapper .details_wrapper .rating_wrapper .bar-1 {
  width: 0%;
  height: 13px;
  background-color: #FBC02D;
  border-radius: 20px;
}

.main_wrapper .details_wrapper .rating_wrapper td {
  padding-bottom: 10px;
}

.main_wrapper .details_wrapper .rating_wrapper .star-active {
  color: #FBC02D;
  margin-top: 10px;
  margin-bottom: 10px;
}

.main_wrapper .details_wrapper .rating_wrapper .star-active:hover {
  color: #F9A825;
  cursor: pointer;
}

.main_wrapper .details_wrapper .rating_wrapper .star-inactive {
  color: #CFD8DC;
  margin-top: 10px;
  margin-bottom: 10px;
}

.main_wrapper .details_wrapper .rating_wrapper .user_comment_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main_wrapper .details_wrapper .rating_wrapper .user_comment_wrapper .user_comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_wrapper .details_wrapper .rating_wrapper .user_comment_wrapper .user_comment .profile-pic {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  margin-right: 15px;
}

.main_wrapper .details_wrapper .rating_wrapper .like_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 15px;
}

.main_wrapper .details_wrapper .rating_wrapper .like_wrapper .like {
  margin-right: 20px;
}

.main_wrapper .details_wrapper .rating_wrapper .like_wrapper .like i {
  color: var(--brand-secondary-color);
}

.details_body_wrapper {
  margin-bottom: 20px;
  padding: 15px;
  background: var(--color-light);
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}

.page_title {
  margin-bottom: 30px;
  color: var(--title-color);
  font-size: 1.5rem;
}

.payment_confirmation_wrapper {
  margin: 30px 0 0;
}

.payment_confirmation_wrapper .details_body_wrapper {
  margin-bottom: 25px;
  padding: 15px 20px;
}

.payment_confirmation_wrapper .details_body_wrapper .items_wrapper .item_title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--color-light-ddd-gray);
}

.payment_confirmation_wrapper .details_body_wrapper .items_wrapper .item_title a {
  color: var(--sub-title-color);
}

.payment_confirmation_wrapper .details_body_wrapper .items_wrapper .item_title a:hover {
  color: var(--brand-secondary-color);
}

.payment_confirmation_wrapper .details_body_wrapper .items_wrapper .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
}

.payment_confirmation_wrapper .details_body_wrapper .items_wrapper .item .icon {
  margin-right: 15px;
  color: var(--sub-title-color);
  font-size: 1.3rem;
  width: 24px;
  height: 24px;
  text-align: center;
}

.payment_confirmation_wrapper .details_body_wrapper .items_wrapper .item small.title {
  color: var(--color-light-aaa-gray);
}

.payment_confirmation_wrapper .details_body_wrapper .items_wrapper .item .amount {
  font-weight: 600;
}

.payment_confirmation_wrapper .btn {
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.payment_confirmation_wrapper .btn:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog_list_wrapper .blog_items .item {
  padding: 0;
}

.blog_list_wrapper .blog_items .item:hover .cover_img_wrapper .cover_img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog_list_wrapper .blog_items .item .cover_img_wrapper {
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}

.blog_list_wrapper .blog_items .item .cover_img_wrapper .cover_img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog_list_wrapper .blog_items .item .item_dist {
  padding: 20px 25px;
}

.blog_list_wrapper .blog_items .item .item_dist .tag_list {
  color: var(--sub-title-color);
  font-weight: 500;
  text-transform: uppercase;
}

.blog_list_wrapper .blog_items .item .item_dist .title {
  margin: 4px 0 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.blog_list_wrapper .blog_items .item .item_dist .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #798593;
  font-size: 1.02rem;
  line-height: 1.6;
}

.blog_details_wrapper .blog_items {
  overflow: hidden;
  padding: 0;
}

.blog_details_wrapper .blog_items .cover_img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog_details_wrapper .blog_items .content_wrapper {
  padding: 20px 30px;
}

.blog_details_wrapper .blog_items .content_wrapper .tag_list {
  display: block;
  margin-bottom: 10px;
  color: var(--sub-title-color);
  font-weight: 400;
  text-transform: uppercase;
}

.blog_details_wrapper .blog_items .content_wrapper .title {
  margin-bottom: 2px;
  font-size: 1.5rem;
  font-weight: 600;
}

.blog_details_wrapper .blog_items .content_wrapper .description {
  margin-bottom: 20px;
  color: #798593;
  font-size: 1rem;
  line-height: 1.6;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border: 1px solid var(--color-light-e5-gray);
  border-width: 1px 0;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .back_btn a {
  color: var(--sub-title-color);
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .back_btn a:hover {
  color: var(--link-color);
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .social_title {
  margin-right: 10px;
  color: var(--color-light-aaa-gray);
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon a {
  display: inline-block;
  margin-left: 5px;
  padding: 2px;
  color: var(--color-light);
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 50%;
  text-align: center;
  line-height: 1.8;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .facebook {
  background: #335795;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .facebook:hover {
  color: #335795;
  background: transparent;
  border-color: #335795;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .twitter {
  background: #55ADED;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .twitter:hover {
  color: #55ADED;
  background: transparent;
  border-color: #55ADED;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .linkedin {
  background: #0274B3;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .linkedin:hover {
  color: #0274B3;
  background: transparent;
  border-color: #0274B3;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .instagram {
  background: #833AB4;
}

.blog_details_wrapper .blog_items .content_wrapper .social_wrapper .social_icon .instagram:hover {
  color: #833AB4;
  background: transparent;
  border-color: #833AB4;
}

.blog_sidebar_wrapper .searchbar_wrapper {
  position: relative;
  margin-bottom: 30px;
}

.blog_sidebar_wrapper .searchbar_wrapper .search_bar {
  padding: 15px 45px 15px 20px;
  color: var(--font-color);
  border-color: var(--color-light-e5-gray);
  border-radius: 30px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}

.blog_sidebar_wrapper .searchbar_wrapper .btn_search {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(10px, -55%);
          transform: translate(10px, -55%);
  color: var(--sub-title-color);
}

.blog_sidebar_wrapper .searchbar_wrapper .btn_search:hover {
  color: var(--brand-secondary-color);
}

.blog_sidebar_wrapper .item_wrapper {
  margin-bottom: 30px;
  padding: 25px 30px;
  background: var(--color-light);
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0 0 5px;
          box-shadow: rgba(0, 0, 0, 0.08) 0 0 5px;
}

.blog_sidebar_wrapper .item_wrapper .title {
  margin-bottom: 8px;
  font-size: 1.28rem;
  font-weight: 600;
}

.blog_sidebar_wrapper .item_wrapper ul li a {
  display: block;
  padding: 10px 0;
  color: var(--brand-color);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 2px solid var(--color-light-f3-gray);
}

.blog_sidebar_wrapper .item_wrapper ul li a:hover {
  color: var(--brand-color-hover);
  font-weight: 600;
  border-bottom-color: var(--brand-color-hover);
}

.blog_sidebar_wrapper .item_wrapper ul li:last-child a {
  border-bottom: none;
}

.blog_sidebar_wrapper .item_wrapper ul.post_wrapper li a {
  border-bottom: none;
}

.blog_sidebar_wrapper .item_wrapper ul.post_wrapper li a .post_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.blog_sidebar_wrapper .item_wrapper ul.post_wrapper li a .post_item .number {
  margin-right: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.blog_sidebar_wrapper .item_wrapper ul.post_wrapper li a .post_item .item .title {
  margin-bottom: 1px;
  font-size: 1rem;
}

.blog_sidebar_wrapper .item_wrapper ul.post_wrapper li a .post_item .item .tag {
  color: var(--sub-title-color);
  font-weight: 400;
}

.modal_wrapper .modal-header {
  padding: 0.6rem 1rem;
  background: var(--brand-color);
}

.modal_wrapper .modal-header .modal-title {
  color: var(--color-light);
}

.modal_wrapper .modal-header .btn-close {
  margin-right: 0;
  background: url(../img/close.svg);
  width: 0;
  height: 0;
}

.modal_wrapper .modal-body .title {
  display: inline-block;
  color: var(--color-777);
  max-width: 32%;
  min-width: 32%;
  vertical-align: middle;
}

.modal_wrapper .modal-body .res {
  color: var(--title-color);
  font-weight: 600;
}

.modal_wrapper .modal-footer {
  border-top-style: dashed;
}

.modal_wrapper .modal-footer .btn_confirm {
  font-weight: 300;
}

.login_section {
  padding: 5em 0;
  background: #f8f9fd;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
}

.login_section .login_wrapper {
  position: relative;
  background: var(--color-light);
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
          box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}

.login_section .login_wrapper h3 {
  font-weight: 300;
}

.login_section .form-group {
  position: relative;
  margin-bottom: 1rem;
}

.login_section .form-group .icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: var(--focus-color);
  font-size: 17px;
  border-radius: 5px 0 0 5px;
}

.login_section .form-group .icon i {
  color: var(--color-light);
}

.login_section .form-group .eye_icon {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.login_section .form-control {
  height: 40px;
  background: var(--color-light);
  color: var(--title-color);
  font-size: 14px;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 48px;
}

.login_section .form-control:focus, .login_section .form-control:active {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--focus-color);
}

.login_section .social-media {
  position: relative;
  width: 100%;
}

.login_section .social-media .social-icon {
  display: block;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--color-light-eee-gray);
  font-size: 16px;
  margin-right: 5px;
  border-radius: 50%;
}

.login_section .social-media .social-icon i {
  color: var(--color-light-aaa-gray);
}

.login_section .social-media .social-icon:hover, .login_section .social-media .social-icon:focus {
  background: var(--focus-color);
}

.login_section .social-media .social-icon:hover i, .login_section .social-media .social-icon:focus i {
  color: var(--color-light);
}

.login_section .checkbox-wrap {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.login_section .checkbox-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.login_section .checkmark {
  position: absolute;
  top: 0;
  left: 0;
}

.login_section .checkmark::after {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  color: rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: 900;
  margin-top: -4px;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.login_section .checkbox-wrap input:checked ~ .checkmark:after {
  display: block;
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(0, 0, 0, 0.2);
}

.login_section .checkbox-primary {
  color: var(--focus-color);
}

.login_section .checkbox-primary input:checked ~ .checkmark:after {
  color: var(--focus-color);
}

.login_section .dont_acc {
  color: var(--color-999);
  font-size: 0.9rem;
}

.login_section .dont_acc a {
  color: var(--brand-secondary-color);
  text-decoration: none;
}

.login_section .dont_acc a:hover {
  color: var(--focus-color);
}

.login_section .btn {
  cursor: pointer;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 15px;
  padding: 10px 20px;
}

.login_section .btn:hover, .login_section .btn:active, .login_section .btn:focus {
  outline: none;
}

.login_section .btn.btn-primary {
  background: var(--focus-color);
  border: 1px solid var(--focus-color);
  color: var(--color-light);
}

.login_section .btn.btn-primary:hover {
  border: 1px solid var(--focus-color);
  background: var(--brand-secondary-color-hover);
  color: var(--color-light);
}

.login_section .btn.btn-primary.btn-outline-primary {
  border: 1px solid var(--focus-color);
  background: transparent;
  color: var(--focus-color);
}

.login_section .btn.btn-primary.btn-outline-primary:hover {
  border: 1px solid transparent;
  background: var(--focus-color);
  color: var(--color-light);
}

footer {
  width: 100%;
  padding: 60px 0 30px;
  border-top: 1px solid var(--color-light-ddd-gray);
  background-color: var(--brand-color);
}

footer hr {
  margin: 30px 0 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-color: #ededed;
  opacity: 0.1;
}

footer .footer_top_wrapper span, footer .footer_top_wrapper a, footer .footer_top_wrapper h1, footer .footer_top_wrapper h2, footer .footer_top_wrapper h3, footer .footer_top_wrapper h4, footer .footer_top_wrapper h5, footer .footer_top_wrapper h6, footer .footer_bottom_wrapper span, footer .footer_bottom_wrapper a, footer .footer_bottom_wrapper h1, footer .footer_bottom_wrapper h2, footer .footer_bottom_wrapper h3, footer .footer_bottom_wrapper h4, footer .footer_bottom_wrapper h5, footer .footer_bottom_wrapper h6 {
  color: rgba(255, 255, 255, 0.7);
}

footer .footer_top_wrapper a:hover, footer .footer_bottom_wrapper a:hover {
  color: var(--color-light);
}

footer .footer_top_wrapper .footer_logo {
  margin-bottom: 20px;
}

footer .footer_top_wrapper .social_wrapper span.nav-link {
  margin-right: 10px;
  padding: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.8rem;
  border: none;
}

footer .footer_top_wrapper .social_wrapper span.nav-link:hover {
  border: none;
}

footer .footer_top_wrapper .social_wrapper .nav-link {
  margin: 0 5px;
  padding: 0.1rem 0.5rem;
  font-size: 1.1rem;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 4px;
}

footer .footer_top_wrapper .social_wrapper .nav-link:hover {
  border-color: var(--sub-title-color);
}

footer .footer_top_wrapper .social_wrapper .nav-link i {
  width: 16px;
  height: 16px;
  vertical-align: baseline;
}

footer .footer_top_wrapper .about_us {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  text-align: justify;
  line-height: 1.5rem;
}

footer .footer_top_wrapper .items_wrapper {
  margin-top: 20px;
}

footer .footer_top_wrapper .items_wrapper .title {
  margin-bottom: 20px;
  color: var(--color-light);
  font-size: 1.1rem;
}

footer .footer_top_wrapper .items_wrapper .newsletter_title {
  margin: 25px 0 8px;
}

footer .footer_top_wrapper .items_wrapper ul li a {
  display: block;
  margin-bottom: 8px;
}

footer .footer_top_wrapper .items_wrapper ul li a i {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  text-align: center;
}

footer .footer_top_wrapper .items_wrapper .newsletter_form input[type='email'] {
  border: none;
  height: 40px;
  border-radius: 3px;
  padding: 10px;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

footer .footer_top_wrapper .items_wrapper .newsletter_form .btn {
  color: var(--color-light);
  background: var(--brand-secondary-color);
  font-size: 0.875rem;
  border: none;
}

footer .footer_top_wrapper .items_wrapper .newsletter_form .btn:hover {
  background: var(--brand-secondary-color-hover);
}

footer .footer_bottom_wrapper .copyright {
  font-size: 0.9rem;
  font-weight: 300;
}

footer .footer_bottom_wrapper .quick_link {
  text-align: right;
}

footer .footer_bottom_wrapper .quick_link a {
  font-size: 0.9rem;
}

footer .footer_bottom_wrapper .quick_link a:nth-child(2) {
  margin: 0 15px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-width: 0 1px;
}
/*# sourceMappingURL=style.css.map */