@charset "utf-8";
/* CSS Document */

/***********
1. Fonts
***********/

@import url("https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600,700,800,900");

/*********************************
2. Body and some general stuff
*********************************/

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: #ffffff;
  color: #131a2f;
}

div {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin-bottom: 0px;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 2.14;
  font-weight: 400;
  color: #131a2f;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p a {
  display: inline;
  position: relative;
  color: inherit;
  border-bottom: solid 1px #ffa07f;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

a,
a:hover,
a:visited,
a:active,
a:link {
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  color: #fe364a;
}

p a:active {
  position: relative;
  color: #fe364a;
}

p a:hover {
  color: #ffffff;
  background: #fe364a;
}

p a:hover::after {
  opacity: 0.2;
}

::selection {
  background: rgba(254, 60, 82, 0.8);
  color: #ffffff;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {}

.form-control {
  color: #fe364a;
}

section {
  display: block;
  position: relative;
  box-sizing: border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.clear {
  clear: both;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.trans_200 {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.trans_300 {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.trans_400 {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.trans_500 {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.fill_height {
  height: 100%;
}

.super_container {
  width: 100%;
  overflow: hidden;
}

.nopadding {
  padding: 0px !important;
}

.parallax-window {
  min-height: 400px;
  background: transparent;
}

/*********************************
3. Home
*********************************/

.home {
  width: 100%;
  height: 100vh;
}

.home_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.home_content {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
}

.home_text_large {
  font-size: 132px;
  font-weight: 900;
  color: #f30a25;
  opacity: 0.34;
  text-transform: uppercase;
  line-height: 0.75;
}

.home_text_small {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 48px;
  font-weight: 400;
  color: #000;
  text-shadow: 0px 11px 51px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.home_content_inner {
  position: absolute;
  top: 46%;
  left: 0;
  width: 100%;
  text-align: left;
}

.home_title {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
}

.home_breadcrumbs {
  margin-top: -6px;
}

.home_breadcrumb {
  display: inline-block;
  font-size: 18px;
  font-weight: 200;
  color: #ffffff;
}

.home_breadcrumb a {
  font-size: 18px;
  font-weight: 200;
  color: #ffffff;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.home_breadcrumb a:hover {
  color: #fe3c52;
}

.home_breadcrumb:not(:last-child)::after {
  content: "/";
  margin-left: 5px;
}

/*********************************
4. Header
*********************************/

.header {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.header_container {
  width: 100%;
  height: 75px;
  background: #fff;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.header.scrolled .header_container {
  height: 75px;
}

/*********************************
4.1 Logo
*********************************/

.logo_container {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -o-transform: translateY(8px);
  transform: translateY(8px);
}

.logo {
  height: 100%;
  padding-left: 72px;
}

.logo div {
  color: #ffffff;
  text-transform: uppercase;
}

.logo div:first-of-type {
  font-size: 24px;
  font-weight: 500;
  line-height: 0.75;
}

.logo div:nth-child(2) {
  font-size: 10px;
  font-weight: 500;
  color: #929292;
  letter-spacing: 0.13em;
  margin-top: 2px;
  padding-left: 2px;
}

.logo_image {
  position: absolute;
  top: -34px;
  left: 41px;
  width: 50px;
  height: 41px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.header.scrolled .logo_image {
  width: 40px;
  top: -40px;
  left: 46px;
}

.logo_image img {
  /* height: 60px; */
  width: 150px;
}

/*********************************
4.2 Navigation
*********************************/

.main_nav {
  /*height: 100%;*/
  padding-right: 60px;
}

.main_nav_list {
  height: 100%;
}

.main_nav_item {
  display: inline-block;
  position: relative;
  /*padding-left: 22px;
	padding-right: 22px;*/
  margin-right: -4px;
  padding-top: 2px;
}

.main_nav_item.active::after {
  display: block;
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fe435b;
  content: "";
}

.main_nav_item a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 121px;
  padding-left: 22px;
  padding-right: 22px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.header.scrolled .main_nav_item a {
  line-height: 90px;
}

.main_nav_item.active a {
  color: #fe435b;
}

.main_nav_item:hover a {
  color: #fe435b;
}

/*********************************
4.3 Search
*********************************/

.search {
  position: absolute;
  top: 0;
  right: 0;
  width: 121px;
  height: 100%;
  background: #fe435b;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.search.active {
  width: 300px;
}

.search:hover {
  background: #eb334a;
}

.search_form {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.search_input {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 25px;
  height: 36px;
  background: transparent;
  border: solid 2px rgba(255, 255, 255, 0.5);
  color: #ffffff;
  outline: none;
  padding-left: 10px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.search.active .search_input {
  display: inline-block;
}

.search_button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 49px;
  width: 24px;
  height: 26px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  pointer-events: none;
}

.search_button img {
  pointer-events: none;
}

.search_button:focus {
  outline: none;
}

.search.active .search_button {
  pointer-events: auto;
}

.search_input::-webkit-input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5) !important;
}

.search_input:-moz-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5) !important;
}

.search_input::-moz-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5) !important;
}

.search_input:-ms-input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5) !important;
}

.search_input::input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5) !important;
}

/*********************************
4.4 Hamburger
*********************************/

.hamburger {
  display: none;
  font-size: 24px;
  padding: 10px;
  color: #3a3a3a;
  margin-right: 20px;
  cursor: pointer;
}

.hamburger i {
  color: #131a2f;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.hamburger:hover i {
  color: #fe435b;
}

/*********************************
5. Menu
*********************************/

.menu_container {
  position: fixed;
  top: 0;
  right: -50vw;
  width: 50vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  visibility: hidden;
  opacity: 0;
}

.menu_container.active {
  visibility: visible;
  opacity: 1;
  right: 0;
}

.menu {
  position: absolute;
  width: 100%;
  top: 150px;
  left: 0;
  padding-left: 15%;
  padding-right: 79px;
}

.menu_list {
  -webkit-transform: translateY(3.5rem);
  -moz-transform: translateY(3.5rem);
  -ms-transform: translateY(3.5rem);
  -o-transform: translateY(3.5rem);
  transform: translateY(3.5rem);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 1000ms 600ms ease;
  opacity: 0;
  margin-top: 30px;
}

.menu_container.active .menu_list {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.menu_item {
  margin-bottom: 9px;
}

.menu_item a {
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #3a3a3a;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_item a:hover {
  color: #fe435b;
}

.menu_close_container {
  position: absolute;
  top: 86px;
  right: 79px;
  width: 21px;
  height: 21px;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu_close {
  top: 9px;
  width: 21px;
  height: 3px;
  background: #3a3a3a;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_close::after {
  display: block;
  position: absolute;
  top: -9px;
  left: 9px;
  content: "";
  width: 3px;
  height: 21px;
  background: #3a3a3a;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after {
  background: #fe435b;
}

.menu_search_form {
  position: relative;
}

.menu_search_input {
  width: 100%;
  height: 50px;
  border: solid 2px rgba(19, 26, 47, 0.5);
  outline: none;
  padding-left: 15px;
}

.menu_search_submit {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  right: 0px;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.menu_search_submit img {
  max-width: 100%;
}

/*********************************
5.1 Menu Social
*********************************/

.menu_social_container {
  margin-top: 100px;
  -webkit-transform: translateY(3.5rem);
  -moz-transform: translateY(3.5rem);
  -ms-transform: translateY(3.5rem);
  -o-transform: translateY(3.5rem);
  transform: translateY(3.5rem);
  -webkit-transition: all 1000ms 1000ms ease;
  -moz-transition: all 1000ms 1000ms ease;
  -ms-transition: all 1000ms 1000ms ease;
  -o-transition: all 1000ms 1000ms ease;
  transition: all 1000ms 1000ms ease;
  opacity: 0;
  padding-left: 4px;
}

.menu_social_item {
  display: inline-block;
  margin-right: 30px;
}

.menu_social_item a i {
  color: #3a3a3a;
}

.menu_social_item a i:hover {
  color: #fe435b;
}

.menu_container.active .menu_social_container {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

/*********************************
5.2 Menu copyright
*********************************/

.menu_copyright {
  margin-top: 60px;
  -webkit-transform: translateY(3.5rem);
  -moz-transform: translateY(3.5rem);
  -ms-transform: translateY(3.5rem);
  -o-transform: translateY(3.5rem);
  transform: translateY(3.5rem);
  -webkit-transition: all 1000ms 1200ms ease;
  -moz-transition: all 1000ms 1200ms ease;
  -ms-transition: all 1000ms 1200ms ease;
  -o-transition: all 1000ms 1200ms ease;
  transition: all 1000ms 1200ms ease;
  opacity: 0;
  padding-left: 3px;
}

.menu_container.active .menu_copyright {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

/*********************************
6. Find
*********************************/

.find {
  width: calc(100% - 124px);
  padding-top: 63px;
  padding-bottom: 70px;
  z-index: 0;
  background: transparent;
}

.find_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.find_form_container {
  width: 100%;
  margin-top: 36px;
}

.find_title {
  width: 100%;
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
}

.find_form {
  width: 100%;
  height: 100%;
}

.find_input {
  width: 100%;
  height: 56px;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 52px;
  color: #ffffff;
  border: solid 2px rgba(255, 255, 255, 0.5);
  background: transparent;
}

.find_item:first-child {
  width: 31.413%;
}

.find_item:nth-child(2) {
  width: 31.413%;
}

.find_item:nth-child(3) {
  width: 10.122%;
}

.find_item:nth-child(4) {
  width: 10.122%;
}

.find_item div {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 7px;
}

.dropdown_item_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  background-image: url(../images/down.png);
  background-position: center right;
  background-repeat: no-repeat;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #939393 !important;
}

.dropdown_item_select::-ms-expand {
  display: none;
}

.find_input:hover {
  border: solid 2px rgba(254, 67, 91, 0.5);
}

.find_input:focus {
  outline-color: rgba(254, 67, 91, 0.5);
  border: solid 2px rgba(254, 67, 91, 0.5);
}

.find_button {
  width: 14.048%;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 52px;
  padding-left: 46px;
  padding-right: 46px;
  background: #fe435b !important;
  -webkit-transform: translateY(14px);
  -moz-transform: translateY(14px);
  -ms-transform: translateY(14px);
  -o-transform: translateY(14px);
  transform: translateY(14px);
  border: none;
  outline: none;
  cursor: pointer;
}

.find_button:hover {
  opacity: 0.8;
}

.find_input::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #939393 !important;
}

.find_input:-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #939393 !important;
}

.find_input::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #939393 !important;
}

.find_input:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #939393 !important;
}

.find_input::input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #939393 !important;
}

/*********************************
7. Top Destinations
*********************************/

.top {
  width: 100%;
  background: #ffffff;
  padding-bottom: 106px;
}

.section_title {
  padding-top: 111px;
  line-height: 1.1;
}

.section_title h2 {
  font-weight: 300;
  color: #131a2f;
}

.section_title div {
  font-size: 16px;
  font-weight: 400;
  color: #7d8293;
  margin-top: 19px;
}

.top_content {
  margin-top: 82px;
}

.top_item {
  width: 100%;
}

.top_item a {
  display: block;
}

.top_item_image img {
  width: 262px;
  height: 262px;
}

.top_item_content {
  position: absolute;
  left: 33px;
  bottom: 29px;
}

.top_item_price {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.top_item_text {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 2px;
}

/*********************************
8. Last Minute Offer
*********************************/

.last {
  width: 100%;
  padding-top: 37px;
  padding-bottom: 64px;
}

.last_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.last_item {
  padding-right: 41px;
}

.last_col:last-child .last_item {
  padding-left: 41px;
  padding-right: 0px;
}

.last_item_content {
  background: rgba(254, 64, 91, 0.79);
  padding-top: 53px;
  padding-bottom: 35px;
  color: #ffffff;
  text-align: center;
  padding-left: 90px;
  padding-right: 80px;
}

.last_subtitle {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}

.last_percent {
  font-size: 160px;
  font-weight: 100;
  line-height: 0.75;
  margin-top: 14px;
  text-align: left;
}

.last_title {
  font-size: 40px;
  font-weight: 300;
  text-align: left;
  margin-top: 7px;
  line-height: 1.1;
}

.last_text {
  font-size: 14px;
  font-weight: 400;
  text-align: start;
  line-height: 2.14;
  margin-top: 15px;
}

.last_button {
  margin-top: 37px;
}

.last_logo {
  position: absolute;
  top: -52px;
  left: -32px;
  z-index: 10;
  width: 100px;
  height: 100px;
}

.last_logo img {
  max-width: 100%;
}

/*********************************
9. Video
*********************************/

.video_section {
  padding-top: 144px;
  padding-bottom: 198px;
}

.video_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video_content {
  width: auto;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.video_title {
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
}

.video_subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  margin-top: 3px;
}

.video_play {
  margin: 0 auto;
  margin-top: 43px;
}

.video {
  outline: none;
}

.play_button {
  cursor: pointer;
}

.play_circle {
  fill: rgba(255, 255, 255, 0);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.play_button:hover .play_circle {
  fill: rgba(255, 255, 255, 0.15);
}

/*********************************
10. Popular
*********************************/

.popular {
  width: 100%;
  background: #ffffff;
}

.popular_content {
  width: 100%;
  margin-top: 82px;
}

.popular_item {
  width: calc((100% - 90px) / 4);
  margin-bottom: 26px;
}

.popular_item:nth-last-child(-n + 4) {
  margin-bottom: 0px;
}

.popular_item a {
  display: block;
}

.popular_item img {
  /* max-width: 100%; */
  width: 263px;
  height: 263px;
}

.popular_item_content {
  position: absolute;
  left: 28px;
  bottom: 27px;
  z-index: 10;
}

.popular_item_price {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.popular_item_title {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

/*********************************
11. Special Offers
*********************************/

.special {
  padding-bottom: 6px;
  background: #ffffff;
}

.special_content {
  margin-top: 76px;
}

.special_item_content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.special_category {
  font-size: 24px;
  font-weight: 300;
  color: #000;
}

.special_title a {
  font-size: 36px;
  font-weight: 300;
  color: #000;
}

.special_item_background {
  width: 100%;
}

.special .owl-item .special_item_background::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254, 67, 91, 0);
  content: "";
  z-index: 0;
  -webkit-transition: all 500ms 100ms ease;
  -moz-transition: all 500ms 100ms ease;
  -ms-transition: all 500ms 100ms ease;
  -o-transition: all 500ms 100ms ease;
  transition: all 500ms 100ms ease;
}

.special .owl-item.center .special_item_background::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254, 67, 91, 0.83);
  content: "";
  z-index: 0;
  -webkit-transition: all 500ms 100ms ease;
  -moz-transition: all 500ms 100ms ease;
  -ms-transition: all 500ms 100ms ease;
  -o-transition: all 500ms 100ms ease;
  transition: all 500ms 100ms ease;
}

.special_slider_nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 90px;
  height: 90px;
  background: #fe3c52;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  z-index: 10;
}

.special_slider_nav:hover {
  opacity: 0.8;
}

/*********************************
12. Newsletter
*********************************/

.newsletter {
  padding-top: 108px;
  padding-bottom: 113px;
}

.newsletter_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.newsletter_title {
  font-size: 40px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
}

.newsletter_form_container {
  margin-top: 53px;
}

.newsletter_input {
  /* width: calc(100% - 180px); */
  width: 100%;
  height: 56px;
  border: solid 2px rgba(255, 255, 255, 0.5);
  outline: none;
  background: rgba(254, 67, 91, 0.6);
  padding-left: 31px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  padding-top: 5px;
}

.newsletter_button {
  width: 161px;
  height: 56px;
  vertical-align: top;
  cursor: pointer;
  border: none;
  outline: none;
  background: #fe364a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.newsletter_button:hover {
  opacity: 0.8;
}

.newsletter_input::-webkit-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #FFFFFF !important;
}

.newsletter_input:-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #FFFFFF !important;
}

.newsletter_input::-moz-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #FFFFFF !important;
}

.newsletter_input:-ms-input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #FFFFFF !important;
}

.newsletter_input::input-placeholder {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #FFFFFF !important;
}

/*********************************
13. Footer
*********************************/

.footer {
  width: 100%;
  background: #fff;
  padding-top: 79px;
  padding-bottom: 79px;
}

.footer_about {
  width: 100%;
}

.footer .logo {
  padding-left: 32px;
}

.footer .logo_image {
  left: 0;
}

.footer_about_text {
  font-size: 12px;
  font-weight: 300;
  line-height: 2.5;
  color: #000;
  margin-top: 35px;
  padding-top: 30px;
}

.copyright {
  font-size: 12px;
  font-weight: 300;
  line-height: 2.5;
  color: #000;
  margin-top: 39px;
}

.footer_latest {
  width: 100%;
}

.footer_title {
  font-size: 20px;
  font-weight: 300;
  color: #000;
}

.footer_latest_item {
  margin-bottom: 27px;
}

.footer_latest_item:last-child {
  margin-bottom: 0;
}

.footer_latest_content {
  margin-top: 33px;
}

.footer_latest_image {
  display: inline-block;
  width: 78px;
  height: 78px;
}

.footer_latest_image img {
  max-width: 100%;
}

.footer_latest_item_content {
  display: inline-block;
  vertical-align: top;
  margin-top: -4px;
  /* padding-left: 19px; */
}

.footer_latest_item_title {
  font-size: 16px;
  font-weight: 300;
  color: #fe364a;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.footer_latest_item_title a:hover {
  color: #fe3c52;
}

.footer_latest_item_date {
  font-size: 12px;
  font-weight: 300;
  color: #fe3c52;
  margin-top: 10px;
}

.tags_content {
  margin-top: 32px;
}

.tag {
  height: 36px;
  background: rgba(254, 60, 82, 1);
  margin-right: 6px;
  margin-bottom: 6px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.tag a {
  display: block;
  font-size: 12px;
  font-weight: 300;
  padding-left: 27px;
  padding-right: 27px;
  line-height: 36px;
  color: #ffffff;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.tag:hover {
  background: rgba(254, 60, 82, 0.8);
}

/*********************************
8. Milestones
*********************************/

.milestones {
  padding-bottom: 120px;
}

.milestones_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.milestones_text {
  width: 100%;
  text-align: center;
  margin-top: 64px;
}

.milestones_text p {
  color: #ffffff;
}

.milestones_text p:last-of-type {
  margin-bottom: 0px;
}

.milestones .section_title h2 {
  color: #ffffff;
}

.milestones_container {
  margin-top: 111px;
}

.milestone {
  text-align: center;
}

.milestone_text {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  margin-top: -3px;
}

.milestone_icon {
  width: 100%;
  height: 82px;
  text-align: center;
}

.milestone_icon img {
  max-height: 100%;
}

.milestone_counter {
  font-size: 36px;
  font-weight: 300;
  color: #ffffff;
  margin-top: 43px;
}

/*********************************
7. Contact
*********************************/

.contact {
  padding-top: 60px;
  padding-bottom: 120px;
}

.contact_title {
  font-size: 40px;
  font-weight: 400;
  color: #131a2f;
}

.contact_subtitle {
  font-size: 16px;
  text-transform: uppercase;
  color: #7d8293;
  margin-top: 10px;
}

.contact_content {
  margin-top: 74px;
}

.contact_text p:last-of-type {
  margin-bottom: 0px;
}

.contact_info {
  margin-top: 75px;
}

.contact_info_box {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  background: #fe3c52;
  font-style: italic;
}

.contact_info_container {
  display: inline-block;
  vertical-align: top;
  margin-top: -4px;
  padding-left: 23px;
  max-width: 310px;
}

.contact_info_content ul li {
  font-size: 14px;
  color: #131a2f;
  font-weight: 500;
  margin-bottom: 18px;
}

.contact_info_social {
  margin-top: 46px;
  margin-left: -10px;
}

.contact_info_social ul li {
  display: inline-block;
  margin-right: 3px;
}

.contact_info_social ul li a i {
  color: #000;
  padding: 10px;
  font-size: 17px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.contact_info_social ul li a i:hover {
  color: #fe3c52;
}

/*********************************
7.1 Contact Form
*********************************/

.contact_form_container {
  width: 100%;
  margin-top: 7px;
}

.contact_input {
  width: 100%;
  height: 41px;
  border: solid 2px #dbdbdb;
  padding-left: 20px;
  margin-bottom: 19px;
  outline: none;
  color: #7d8293;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
}

.contact_input_message {
  width: 100%;
  height: 150px;
  border: solid 2px #dbdbdb;
  outline: none;
  padding-top: 13px;
  padding-left: 20px;
}

.contact_send_btn {
  width: 161px;
  height: 56px;
  background: rgba(254, 60, 82, 1);
  border: none;
  outline: none;
  float: right;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 14px;
}

.contact_send_btn:hover {
  background: rgba(254, 60, 82, 0.8);
}

/*********************************
7.2 Contact Map
*********************************/

.contact_map {
  margin-top: 86px;
}

.map_container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.map_container img {
  width: 100%;
  height: 100%;
}

/* .map_container svg path {
	fill: rgba(254, 60, 82, 1);
	stroke: rgba(254, 60, 82, 1);
	stroke-width: .25;
}

.map_container svg path:hover {
	fill: rgba(254, 60, 82, 1);
	transition: 0.6s;
	cursor: pointer;
} */

.map_container {
  position: relative;
}

.map_container .pin {
  position: absolute;
  background-color: #131a2f;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  cursor: pointer;
}

.map_container .pin::before {
  content: "";
  background-color: #131a2f;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse 1.3s ease-in-out infinite;
  height: 100%;
  width: 100%;
}

.map_container .africa {
  top: 52%;
  left: 55%;
}

.map_container .india {
  top: 41%;
  left: 71%;
}

.map_container .asia {
  top: 12%;
  left: 71%;
}


@keyframes pulse {
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}


/*********************************
9. Services
*********************************/

.services {
  width: 100%;
  background: #ffffff;
  padding-bottom: 109px;
}

.icon_box_container {
  margin-top: 87px;
}

.icon_box_image {
  display: inline-block;
  height: 62px;
}

.icon_box_image img {
  max-height: 100%;
}

.svg path,
.svg rect,
.svg polygon {
  fill: #afafaf;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.icon_box:hover .svg path,
.icon_box:hover .svg rect,
.icon_box:hover .svg polygon {
  fill: #fe3c52;
}

.icon_box svg {
  height: 62px;
  width: auto;
}

.icon_box .svg {
  filter: brightness(0.5);
}

.icon_box_title {
  display: inline-block;
  vertical-align: bottom;
  font-size: 24px;
  font-weight: 300;
  color: #131a2f;
  padding-left: 22px;
}

.icon_box_text {
  margin-top: 14px;
}

.icon_box p:last-of-type {
  margin-bottom: 0;
}

.icon_box_more {
  display: inline-block;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: #131a2f;
  margin-top: 35px;
  overflow: hidden;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.icon_box_more:hover {
  color: #fe3c52;
}

.icon_box_more::before {
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  background: #fe3c52;
  -webkit-transition: all 0.5s cubic-bezier(0.615, 0.19, 0.305, 0.91);
  -moz-transition: all 0.5s cubic-bezier(0.615, 0.19, 0.305, 0.91);
  -ms-transition: all 0.5s cubic-bezier(0.615, 0.19, 0.305, 0.91);
  -o-transition: all 0.5s cubic-bezier(0.615, 0.19, 0.305, 0.91);
  transition: all 0.5s cubic-bezier(0.615, 0.19, 0.305, 0.91);
}

.icon_box_more:hover::before {
  left: 100%;
}

/*********************************
7. About
*********************************/

.about {
  padding-bottom: 119px;
  background: #ffffff;
}

.section_title {
  padding-top: 111px;
  line-height: 1.1;
}

.section_title h2 {
  font-weight: 300;
  color: #131a2f;
}

.section_title div {
  font-size: 16px;
  font-weight: 400;
  color: #7d8293;
  text-transform: uppercase;
  margin-top: 19px;
}

.button {
  display: inline-block;
  width: 161px;
  height: 56px;
  background: #fe3c52;
  text-align: center;
}

.button a {
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  line-height: 56px;
}

.about_row {
  padding-top: 25px;
}

.about_content {
  margin-top: -7px;
}

.about_content p:last-of-type {
  margin-bottom: 0;
}

.about_button {
  margin-top: 48px;
}

.about_button:hover {
  opacity: 0.8;
}

.about_image img {
  max-width: 100%;
}

/*********************************
7. Offers
*********************************/

.offers {
  width: 100%;
  padding-bottom: 114px;
}

.filtering_row {
  margin-top: 90px;
}

.item_sorting {
  display: inline-block;
}

.item_sorting>li {
  display: inline-block;
  position: relative;
  width: 132px;
  height: 36px;
  line-height: 32px;
  cursor: pointer;
  border: solid 2px #dbdbdb;
  padding-left: 15px;
  padding-right: 7px;
  margin-right: 16px;
  font-size: 12px;
  font-weight: 500;
  color: #131a2f;
  margin-bottom: 10px;
}

.item_sorting li i {
  float: right;
  line-height: 32px;
  font-size: 18px;
  color: #d0d0d0;
}

.item_sorting li ul {
  display: block;
  position: absolute;
  right: 0;
  top: 120%;
  margin: 0;
  width: 100%;
  background: #ffffff;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}

.item_sorting>li:hover ul {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 1px);
}

.item_sorting li ul li {
  display: block;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}

.item_sorting li ul li span {
  display: block;
  height: 36px;
  line-height: 36px;
  border-bottom: solid 1px #dddddd;
  color: #131a2f;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}

.item_sorting li ul li span:hover {
  color: #b5aec4;
}

.item_sorting li ul li:last-child span {
  border-bottom: none;
}

.item_sorting li span:nth-child(2) {
  margin-left: 71px;
}

.items {
  margin-top: 90px;
}

.item {
  margin-bottom: 35px;
}

.item.box {
  width: 50%;
  float: left;
}

.item_image {
  width: 20%;
  float: left;
}

.item.box .item_image {
  width: 50%;
}

.item_image img {
  /* max-width: 100%; */
  width: 228px;
  height: 228px;
}

.item_content {
  width: 80%;
  padding-left: 29px;
  margin-top: -4px;
  float: left;
}

.item.box .item_content {
  width: 50%;
}

.item_content ul {
  margin-top: 13px;
}

.item_content ul li {
  display: inline-block;
  font-size: 12px;
  color: #878c9b;
}

.item_content ul li:not(:last-of-type)::after {
  content: "/";
  margin-left: 5px;
}

.item_price {
  font-size: 14px;
  font-weight: 500;
  color: #131a2f;
}

.item_title {
  font-size: 20px;
  font-weight: 500;
  color: #131a2f;
  margin-top: 1px;
}

.item_text {
  color: #7d8293;
  font-size: 15px;
  line-height: 2;
  margin-top: 11px;
}

.item.box .item_text {
  display: none;
}

.item_more_link {
  margin-top: 28px;
}

.item_more_link a {
  font-size: 12px;
  color: #131a2f;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.item_more_link a:hover {
  color: #fe3c52;
}

.rating {
  margin-top: 11px;
}

.rating i {
  font-size: 19px;
  margin-right: 4px;
  color: #878c9b;
}

.rating i:last-child {
  margin-right: 0px;
}

.rating_1 i:first-child {
  color: #fa9e1b;
}

.rating_2 i:first-child {
  color: #fa9e1b;
}

.rating_2 i:nth-child(2) {
  color: #fa9e1b;
}

.rating_3 i:first-child {
  color: #fa9e1b;
}

.rating_3 i:nth-child(2) {
  color: #fa9e1b;
}

.rating_3 i:nth-child(3) {
  color: #fa9e1b;
}

.rating_4 i:first-child {
  color: #fa9e1b;
}

.rating_4 i:nth-child(2) {
  color: #fa9e1b;
}

.rating_4 i:nth-child(3) {
  color: #fa9e1b;
}

.rating_4 i:nth-child(4) {
  color: #fa9e1b;
}

.rating_5 i:first-child {
  color: #fa9e1b;
}

.rating_5 i:nth-child(2) {
  color: #fa9e1b;
}

.rating_5 i:nth-child(3) {
  color: #fa9e1b;
}

.rating_5 i:nth-child(4) {
  color: #fa9e1b;
}

.rating_5 i:nth-child(5) {
  color: #fa9e1b;
}

.sorting_group_1 {
  float: left;
}

.sorting_group_2 {
  float: right;
}

.sorting_group_2 ul {
  float: left;
}

.sorting_group_2 ul li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #9195a3;
  margin-right: 30px;
  line-height: 36px;
}

.sorting_group_2 ul li:last-child {
  margin-right: 0;
}

.sorting_icons {
  float: left;
}

.detail_view {
  float: left;
  font-size: 20px;
  margin-right: 16px;
  margin-left: 36px;
  cursor: pointer;
}

.detail_view i {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.detail_view:hover i {
  color: #fe3c52;
}

.box_view {
  font-size: 20px;
  float: left;
  cursor: pointer;
}

.box_view i {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.box_view:hover i {
  color: #fe3c52;
}

.pages {
  margin-top: 49px;
}

.page {
  display: inline-block;
}

.page a {
  font-size: 15px;
  font-weight: 400;
  color: #131a2f;
}

.page.active a {
  color: #fe3c52;
}

/*********************************
7. News
*********************************/

.news {
  padding-top: 104px;
  padding-bottom: 120px;
}

.news_post {
  width: 100%;
  margin-bottom: 59px;
}

.news_post:last-child {
  margin-bottom: 0;
}

.post_title {}

.post_title a {
  font-size: 40px;
  font-weight: 300;
  color: #131a2f;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.post_title a:hover {
  color: #fe3c52;
}

.post_meta {
  margin-top: 12px;
}

.post_meta ul li {
  display: inline-block;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  color: #7d8293;
  text-transform: uppercase;
  padding-right: 26px;
}

.post_meta ul li::after {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  content: "|";
}

.post_meta ul li:last-child::after {
  display: none;
}

.post_meta ul li a {
  font-size: 12px;
  font-weight: 600;
  color: #7d8293;
  text-transform: uppercase;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.post_meta ul li a:hover {
  color: #fe3c52;
}

.post_image {
  margin-top: 28px;
}

.post_image img {
  width: 100%;
  height: 100%;
}

.post_image_box {
  display: block;
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 41px;
  height: 41px;
  line-height: 41px;
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  background: #fe3c52;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.post_image_box:hover {
  opacity: 0.8;
}

.post_text {
  margin-top: 40px;
}

.post_text p:last-of-type {
  margin-bottom: 0;
}

/*********************************
8. Sidebar
*********************************/

.sidebar {
  width: 100%;
}

.sidebar_search {
  padding-top: 15px;
}

.sidebar_search_input {
  height: 47px;
  width: 100%;
  background: transparent;
  padding-left: 20px;
  border: solid 2px #dbdbdb;
  outline: none;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.sidebar_search_input:focus {
  border: solid 2px #fe3c52;
}

.sidebar_search_input::-webkit-input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #9a9eab !important;
}

.sidebar_search_input:-moz-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #9a9eab !important;
}

.sidebar_search_input::-moz-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #9a9eab !important;
}

.sidebar_search_input:-ms-input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #9a9eab !important;
}

.sidebar_search_input::input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: italic;
  color: #9a9eab !important;
}

.sidebar_featured {
  margin-top: 85px;
}

.sidebar_featured_post {
  margin-bottom: 26px;
}

.sidebar_featured_image {
  width: 100%;
}

.sidebar_featured_image img {
  max-width: 100%;
}

.sidebar_featured_title {
  margin-top: 30px;
}

.sidebar_featured_title a {
  font-size: 20px;
  font-weight: 400;
  color: #131a2f;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.sidebar_featured_title a:hover {
  color: #fe3c52;
}

.sidebar_featured_meta {
  margin-top: 8px;
}

.sidebar_featured_meta ul li {
  display: inline-block;
  position: relative;
  font-size: 9px;
  font-weight: 500;
  color: #7d8293;
  text-transform: uppercase;
  padding-right: 18px;
}

.sidebar_featured_meta ul li::after {
  display: block;
  position: absolute;
  top: 0;
  right: 6px;
  content: "|";
}

.sidebar_featured_meta ul li:last-child::after {
  display: none;
}

.sidebar_featured_meta ul li a {
  font-size: 9px;
  font-weight: 500;
  color: #7d8293;
  text-transform: uppercase;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.sidebar_featured_meta ul li a:hover {
  color: #fe3c52;
}

.sidebar_offers {
  margin-top: 52px;
}

.sidebar_offer {
  width: 100%;
  padding-top: 43px;
  padding-bottom: 97px;
  padding-left: 21px;
  padding-right: 21px;
  margin-bottom: 38px;
}

.sidebar_offer:last-child {
  margin-bottom: 0;
}

.sidebar_offer_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.sidebar_offer_content {
  background: rgba(254, 60, 82, 0.79);
  color: #ffffff;
  padding-top: 21px;
  padding-left: 33px;
  padding-right: 30px;
  padding-bottom: 40px;
}

.sidebar_offer_destination {
  font-size: 7px;
  font-weight: 600;
  text-transform: uppercase;
}

.sidebar_offer_percent {
  font-size: 68px;
  font-weight: 100;
  line-height: 0.75;
  margin-top: 4px;
}

.sidebar_offer_title {
  font-size: 18px;
  font-weight: 400;
  margin-top: 4px;
}

.sidebar_offer_text {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.77;
  text-align: center;
  margin-top: 8px;
}

.sidebar_offer_button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -17px;
  width: 117px;
  height: 41px;
  background: rgba(19, 26, 47, 1);
  text-align: center;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.sidebar_offer_button:hover {
  background: rgba(19, 26, 47, 0.8);
}

.sidebar_offer_button a {
  display: block;
  line-height: 41px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.sidebar_quote {
  margin-top: 90px;
}

.quote_box {
  width: 47px;
  height: 47px;
  background: #fe3c52;
  margin: 0 auto;
  text-align: center;
  line-height: 42px;
  color: #ffffff;
}

.quote_text {
  font-size: 18px;
  font-style: italic;
  margin-top: 63px;
  color: #131a2f;
  padding-left: 15px;
  line-height: 1.66;
}

.quote_text span {
  color: #fe3c52;
}