@import url("https://fonts.googleapis.com/css?family=Oswald:500,600,700");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap");

@font-face {
  font-family: "Helvetica 57 Condensed";
  font-style: normal;
  font-weight: normal;
  src: local("Helvetica 57 Condensed"),
    url("../fonts/helvetica/HelveticaNeue-Condensed.woff") format("woff");
}

@font-face {
  font-family: "HelveticaInserat-Roman-SemiB";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/helvetica/HelveticaInserat-Roman-SemiB.ttf") format("ttf");
}

@font-face {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/helvetica/Helvetica-Normal.ttf") format("ttf");
}

@font-face {
  font-family: "Myriad Pro";
  font-weight: 400;
  src: url("../fonts/MyriadPro/MyriadPro-Regular.otf") format("ttf");
}

@font-face {
  font-family: "Myriad Pro";
  font-weight: 300;
  src: url("../fonts/MyriadPro/MyriadPro-Light.otf") format("ttf");
}

@font-face {
  font-family: "Myriad Pro";
  font-weight: 600;
  src: url("../fonts/MyriadPro/MyriadPro-Semibold.otf") format("ttf");
}

@font-face {
  font-family: "Myriad Pro";
  font-weight: 700;
  src: url("../fonts/MyriadPro/MyriadPro-Bold.otf") format("ttf");
}

body {
  background-color: #f2f3f3;
}

/* header banner css starts here */
.banner-title-desp {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  color: white;
  text-align: center;
  font-family: Oswald, sans-serif;
}

.banner-title-desp p {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  margin-top: 22px;
}

.cover-blog-details img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.cover-blog-details {
  position: relative;
}

.cover-blog-details::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* z-index: 1; */
}

.blog_navbar {
  /*top: 81px;*/
}

.button_read_blog {
  position: relative;
  padding: 10px 32px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  background: none;
  border-radius: 0px;
  letter-spacing: 1px;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  display: inline-block;
}

.button_read_blog:hover {
  color: white;
  background-color: #b27f00;
  border: 2px solid #b27f00;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.transparent_nav li a {
  /* color: #fff; */
  text-transform: uppercase;
}

.marginright {
  margin: 0 15px;
}

/* header banner css ends here */
/* hedaer stats here */

header .item {
  height: 100vh;
  position: relative;
}

header .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

header .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}

header .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

header .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}

header .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  word-spacing: 3px;
  color: #fff;
}

header .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
  margin: 5px 0 20px;
}

header .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

header .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

header .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

header .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

header .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

header .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

header .owl-nav .owl-prev:focus {
  outline: 0;
}

header .owl-nav .owl-prev:hover {
  background: #000 !important;
}

header .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

header .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

header .owl-nav .owl-next:focus {
  outline: 0;
}

header .owl-nav .owl-next:hover {
  background: #000 !important;
}

header:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

header:hover .owl-next {
  right: 0px;
  opacity: 1;
}

.blog_navbar {
  transition: all 0.4s;
}

.blog_navbar .nav-link {
  color: #fff;
}

.blog_navbar .nav-link:hover,
.blog_navbar .nav-link:focus {
  color: #fff;
  text-decoration: none;
}

.blog_navbar .navbar-brand {
  color: #fff;
}

/* Change navbar styling on scroll */
.blog_navbar.active {
  background: #fff;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);

}

.blog_navbar.active .nav-link {
  color: #224191;
}

.blog_navbar.active .nav-link:hover,
.blog_navbar.active .nav-link:focus {
  color: #224191;
  text-decoration: none;
}

.blog_navbar.active .navbar-brand {
  color: #224191;
}

/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
  .blog_navbar {
    background: #fff;
  }

  .blog_navbar .navbar-brand,
  .blog_navbar .nav-link {
    color: #212529;
  }
}

.inner-blog-navbar {
  background: #fff;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.inner-blog-navbar .navbar-brand {
  color: #224191;
}

.inner-blog-navbar .nav-link {
  color: #224191;
  transition: color 0.5s;
}

.inner-blog-navbar .search_icon {
  color: #224191;
  transition: color 0.5s;
}

.underline {
  height: 3px;
  background-color: #b27f00;
  width: 0%;
  transition: width 0.2s, background-color 0.5s;
  margin: 0 auto;
}

.blog_navbar ul li.active-link .underline {
  width: 100%;
  background-color: #b27f00;
}

.blog_navbar ul li .underline {
  height: 3px;
  background-color: transparent;
  width: 0%;
  transition: width 0.2s, background-color 0.5s;
  /* margin: 0 auto; */
}

.blog_navbar ul li:hover .underline {
  background-color: #b27f00;
  width: 100%;
}

.inner-blog-navbar .nav-link:hover,
.inner-blog-navbar .nav-link:focus {
  color: #212529;
  text-decoration: none;
}

header .item {
  height: 100vh;
  position: relative;
}

header .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

header .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}

header .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

header .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}

header .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

header .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}

header .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

header .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}

header .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

header .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

header .owl-nav .owl-prev:focus {
  outline: 0;
}

header .owl-nav .owl-prev:hover {
  background: #000 !important;
}

header .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

header .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

header .owl-nav .owl-next:focus {
  outline: 0;
}

header .owl-nav .owl-next:hover {
  background: #000 !important;
}

header:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

header:hover .owl-next {
  right: 0px;
  opacity: 1;
}

/* css ends here for blog menu */
.dropdown-menu-right {
  box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08),
    0px 4px 11px -2px rgba(0, 0, 0, 0.06);
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  border: unset;
  padding-top: 0;
}

.dropdown-menu-right .dropdown-item {
  border-top: 1px solid #efefef;
  padding: 10px 15px;
}

.left_txt {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.inner_left_txt {
  padding: 0 8% 8px 0;
}

.inner_left_txt h1 {
  font-size: 59px;
  line-height: 1.8em;
  margin: 0 0 14px;
  position: relative;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  letter-spacing: -0.02em;
  margin: 25px 0;
  /* font-weight: 700; */
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  text-transform: uppercase;
}

.inner_left_txt h1 span {
  background: white;
  padding: 0px 9px;
}

.center_text {
  align-self: center;
}

.mgtop {
  margin-top: 8rem;
}

.mgbottom {
  margin-bottom: 65px;
}

.read-blog {
  margin: 31px 0 0;
  margin-top: 29px;
  color: #fff;
  background-color: #1f3e93;
  border: 1px solid transparent;
  padding: 10px 40px;
  display: inline-block;
  font-family: Oswald, sans-serif;
  font-size: 16px;
  line-height: 2em;
  font-weight: 700;
  text-transform: uppercase;
}

.read-blog:hover {
  background: #3d5eb7;
  color: white;
}

.blog_title {
  text-align: center;
  padding: 60px 0;
}

.blog_title h1 {
  /*font-family: "Oswald", sans-serif;*/
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #224191;
  text-transform: uppercase;
}

.blog_title p {
  /*font-family: "Open Sans", sans-serif;*/
  color: #212529;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

/*
.blog_title p::before,
.blog_title p::after {
    display: inline-block;
    content: "";
    border-top: 1px solid #c7c7c7;
    width: 2rem;
    margin: 0 1rem;
    transform: translateY(-3px);
} */

.search_bar {
  align-self: center;
  /* border-left: 1px solid #efefef; */
  padding-left: 14px;
  position: relative;
  cursor: pointer;
}

.search_icon {
  color: #fff;
}

.search_active {
  color: #212529;
}

.title_header h1 {
  font-size: 26px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  text-align: center;
  /* font-family: 'Open Sans', sans-serif; */
}

.title_header {
  margin-bottom: 28px;
}

.blog_container {
  margin: 0 auto;
  margin-top: 65px;
  /* margin-bottom: 100px; */
}

.blog_content {
  margin-top: 28px;
}

.blog_content p {
  font-size: 15px;
  font-family: "Open Sans";
  line-height: 24px;
  margin-bottom: 26px;
}

.read-more a span {
  position: relative;
  padding: 0 10px;
  background: #fff;
  z-index: 1;
}

.read-more a {
  position: relative;
  display: inline-block;
  color: #212529;
}

.read-more a:before {
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -1px;
  content: "";
  width: calc(100% + 40px);
  border-bottom: 1px solid #d6d6d6;
}

.read-more {
  margin-top: 35px;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.newsletter_content {
  background-color: #eaeaeb;
  padding: 28px 30px;
  margin-bottom: 45px;
  border: 1px solid #dcdcdc;
}

.widget_title {
  position: relative;
  margin: 0;
  border: 0;
  margin-bottom: 40px;
  line-height: 1;
  background: transparent;
  text-align: center;
}

.widget_title span {
  font-weight: 500;
}

.widget_title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 9px);
  margin-top: 18px;
  width: 18px;
  height: 1px;
  background: #b4b4b4;
}

.nws_inner {
  text-align: center;
}

.nws_inner p {
  font-size: 14px;
  text-align: center;
  color: #898c90;
  margin-bottom: 22px;
}

.nws_inner input {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 0;
}

.nws_inner input::-webkit-input-placeholder {
  /* Edge */
  color: #b4b4b4;
  font-size: 14px;
}

.nws_inner input:-ms-input-placeholder {
  /* Internet Explorer */
  color: #b4b4b4;
  font-size: 14px;
}

.nws_inner input::placeholder {
  color: #b4b4b4;
  font-size: 14px;
}

.subscribe_btn {
  color: #fff;
  padding: 13px 20px;
  border: 0;
  font-weight: 600;
  line-height: 1;
  height: auto;
  text-transform: uppercase;
  background: #224191;
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 10px;
  width: 100%;
}

.upper-content {
  border-top: 1px solid #f0f0f0;
  margin-top: 65px;
  /* padding-top: 65px; */
}

.bgwhite {
  background: white;
}

/* header css starts here */

/* country thumb views css starts here */
.country_img a {
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.country_img {
  overflow: hidden;
}

.country_img a img {
  transition: 0.3s;
}

.country_img a img:hover {
  transform: scale(1.1);
}

.title_thumb_post {
  margin-top: 25px;
  margin-bottom: 8px;
  /* margin-bottom: 22px; */
  text-align: center;
  padding: 0 30px;
}

.title_thumb_post::after {
  content: "";
  display: inline-flex;
  margin-top: 15px;
  padding-bottom: 3px;
  width: 36px;
  border-top: 1px solid #224191;
}

.name_country {
  text-align: center;
  display: none;
}

.name_country span {
  font-size: 12px;
  letter-spacing: 0.09em;
  color: #224191;
  font-weight: 600;
  text-transform: uppercase;
}

.todo_title {
  text-align: center;
}

.todo_title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  height: 40px;
  margin: 9px 0;
  text-transform: uppercase;
  cursor: pointer;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.todo_title:hover,
.read-more span:hover {
  color: #224191;
  transition: all 0.25s ease-in-out;
}

.small_desp p {
  line-height: 27px;
  height: 75px;
  padding: 0 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.footer_post {
  margin-top: 38px;
  text-align: center;
  line-height: 41px;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.post_date {
  font-size: 12px;
  width: 100%;
  margin-bottom: 0;
}

.post_date li {
  display: contents;
  margin-right: 14px;
}

.breaker {
  color: #868686;
}

.post_travel_country {
  margin-bottom: 45px;
  background: white;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.post_travel_country:hover {
  -webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  transform: scale(1.05);
}

.follow_us {
  margin: 0 0 43px;
  padding: 0 12%;
  box-sizing: border-box;
}

.nwsltr_inner {
  position: relative;
  text-align: center;
  /* overflow: hidden; */
}

/* .thin_line {
    content: '';
    height: 1px;
    width: 100%;
    background-color: #f2f2f2;
    top: 15px;
    position: absolute;
    left: 0;
} */

.thin_line h6 {
  color: #898c90;
  font-size: 12px;
  line-height: 1.8em;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  width: auto;
  margin: 0 0 43px;
  /* background-color: #fff; */
  padding: 0 12px;
}

.thin_line h6::before,
.thin_line h6::after {
  display: inline-block;
  content: "";
  border-top: 1px solid #c7c7c7;
  width: 2rem;
  margin: 0 1rem;
  transform: translateY(-3px);
}

.social_links {
  text-align: center;
  width: 25%;
  float: unset;
}

.social_links i {
  color: #000000;
  font-size: 25px;
}

.social_links i:hover {
  color: #1f3e93;
  transition: 0.3s;
}

.social_links:hover .social_name {
  color: #1f3e93;
  transition: 0.3s;
}

.social_name {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  color: #898c90;
  letter-spacing: 0.33em;
  font-size: 8px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.aligncenter {
  text-align: center;
  margin: 0 0 25px;
}

.uremail {
  color: #959595;
  font-size: 12px;
  font-weight: 400;
  border-color: #c7c7c7;
  border-radius: 0;
  border-width: 1px;
  text-align: center;
  height: 42px;
  margin-bottom: 13px;
}

.button_subscribe {
  font-size: 12px;
  line-height: 2em;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-transform: uppercase;
  outline: 0;
  box-sizing: border-box;
  -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
  padding: 9px 41px 10px;
  color: #fff;
  background-color: #000;
  border: 1px solid transparent;
  cursor: pointer;
  width: 100%;
}

.button_subscribe:hover {
  background-color: #212121;
  border-color: #212121;
}

.newsletter-sec {
  border-top: 1px solid #dcdcdc;
  padding-top: 65px;
}

/* country thumb views css ends here */

/* css on videos page starts here */
.video_inner {
  margin-top: 20px;
  margin-right: 20px;
}

.videos_details {
  padding: 45px 25px;
}

.videos_details h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin: 9px 0;
  text-transform: uppercase;
}

.inner_travel_vdos {
  background-color: white;
  margin-bottom: 30px;
}

.videos_details p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15px;
  line-height: 27px;
}

.view_more {
  padding: 4px 10px;
  display: inline-block;
  margin-top: 20px;
  color: #212529;
  /* background: #1f3e93; */
  font-size: 14px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  border-left: 1px solid #212529;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.view_more:hover {
  color: white;
  background-color: #334d95;
  transition: 0.5s;
  border: 1px solid #334d95;
  border-radius: 3px;
}

.blog-banner-img img {
  max-width: 100%;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.blog-main {
  position: relative;
}

.vlog_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #161616;
  padding: 24px 26px;
  letter-spacing: 0.15em;
  text-align: center;
}

.vlog_title h1 {
  font-family: "Oswald", sans-serif;
  font-size: 3.5rem;
}

.description_destination {
  background: white;
  padding: 40px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  /* height: 100%; */
}

.blog_details_inner {
  position: relative;
}

.booking-filter-section {
  background: white;
  /*padding-bottom: 50px;*/
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 199px;
  z-index: 999;
}

.description_destination p {
  margin-bottom: 26px;
  /* margin-top: 26px; */
  font-size: 15px;
  font-family: "Open Sans";
  line-height: 24px;
}

.share_row {
  margin-top: 44px;
  border: 1px solid #ebebeb;
  border-right-color: transparent;
  text-align: center;
  line-height: 41px;
  box-sizing: border-box;
  border-right: 0;
  border-left: 0;
}

.left-side {
  font-size: 11px;
  text-align: left;
}

.right-side {
  text-align: right;
}

.span-one {
  margin-right: 2px;
  /* font-style: italic; */
  color: #898c90;
}

.span-two {
  color: #212529;
  font-weight: 600;
  text-transform: uppercase;
}

.social_share ul li {
  display: inline-block;
  margin-right: 14px;
  font-size: 14px;
}

.social_share ul li i:hover {
  color: #1f3e93;
}

.social_share ul {
  margin-bottom: 0;
}

.right-booking-filter li {
  display: block !important;
  width: 100% !important;
}

.rt-bk-flt input {
  border: 0.25px solid #ebebeb !important;
  margin-bottom: 18px !important;
}

.rt-bk-flt {
  padding: 20px 30px;
}

.bk-nw {
  border-top: 1px solid #224191;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: white;
  -webkit-font-smoothing: antialiased;
  line-height: 44px;
  text-transform: uppercase;
  background: #224191;
  padding: 6px 30px;
  text-align: center;
}

.comment_title {
  margin-top: 30px;
}

.comment_title h6 {
  font-family: "Open Sans", sans-serif;
  color: #212529;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}

.comment_title h6::before,
.comment_title h6::after {
  display: inline-block;
  content: "";
  border-top: 1px solid #c7c7c7;
  width: 2rem;
  margin: 0 1rem;
  transform: translateY(-3px);
}

.num-span {
  color: #224191;
  margin-right: 5px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-item:active {
  background-color: #b27f00;
}

.dropdown-submenu .icon:after {
  content: "";
  background-image: url(../images/play.png);
  position: absolute;
  width: 7px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  top: 45%;
  right: 6px;
}

.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0px;
  margin-left: 0px;
}

.container-center {
  margin: 0 auto;
}

.search-box {
  /* background: #eaeaeb; */
  position: absolute;
  top: 57px;
  right: 0;
  width: 350px;
  /* height: 13px; */
  line-height: 41px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  /* border-top: 4px solid #1f3e93; */
  display: none;
  z-index: 1;
}

.search-box:before {
  content: "";
  position: absolute;
  top: -28px;
  right: 13px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid #224191;
  z-index: 1;
}

.search-box input[type="text"] {
  width: 271px;
  padding: 5px 10px;
  /* margin-left: 23px; */
  border: 1px solid #224191;
  outline: none;
}

.search-box input[type="button"] {
  width: 80px;
  padding: 5px 0;
  background: #224191;
  color: #fff;
  margin-left: -6px;
  border: 1px solid #224191;
  outline: none;
  cursor: pointer;
}

.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

/* Media Queries */

@media screen and (max-width: 700px) {
  .search-box {
    width: 270px;
    right: -16%;
  }

  .search-box input[type="text"] {
    width: 140px;
    margin-left: 15px;
  }

  .search-box input[type="button"] {
    margin-right: 12px;
  }
}

/* header css ends here */

/* newsletter side css starts here */

.blue_newsletter_sec {
  background: #1f3e93;
  padding: 20px 30px;
}

.blue_newsletter_sec h1 {
  line-height: 28px;
  font-size: 22px;
  color: white;
}

.blue_newsletter_sec p {
  color: #c3d1f8;
}

.input-newsletter {
  background: #1e3576f0;
  padding: 10px;
  margin-top: 20px;
}

.input-newsletter input {
  border-radius: 0;
}

.input-newsletter button {
  border-radius: 0;
  border: unset;
  background: #1f3e93;
  color: #c3d1f8;
  font-weight: 500;
}

.input-newsletter input::-webkit-input-placeholder {
  /* Edge */
  font-size: 12px;
}

.input-newsletter input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 12px;
}

.input-newsletter input::placeholder {
  font-size: 12px;
}

.blog-follow-social ul {
  display: flex;
  background: #1e3678;
  padding: 12px;
  margin-bottom: 0;
}

.blog-follow-social ul li h6 {
  color: #c3d1f8;
  margin-bottom: 0;
  margin-right: 16px;
}

.blog-follow-social ul li a {
  background: #c3d1f8;
  border-radius: 50%;
  height: 26px;
  padding: 2px;
  width: 26px;
  display: inline-block;
  text-align: center;
  margin-right: 6px;
}

.blog-follow-social ul li a i {
  color: #1e3678;
  font-size: 14px;
}

/* newsletter side css ends here */

/* css for  float icons starts here */
.float_icons {
  list-style: none;
  position: sticky;
  top: 220px;
  left: 0;
}

.float_icons li {
  margin: 5px 20px;
  display: inline-block;
}

.float_icons h4 {
  font-size: 12px;
  font-weight: 500;
}

.float_icons i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  vertical-align: middle;
  color: #fff;
  margin-right: 5px;
}

.float_icons .fa-facebook-f {
  background: #3b5998;
}

.float_icons .fa-linkedin {
  background: #0077b5;
}

.float_icons .fa-twitter {
  background: #1da1f2;
}

.float_icons .fa-instagram {
  background: #d6249f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.float_icons .fa-google-plus {
  background: #d04338;
}

.float_icons .fa-youtube {
  background: #ff0000;
}

.float_icons .fa-pinterest {
  background: #bd081c;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: url(data:image/svg+xml;;;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPjxwYXRoIGQ9Ik0yLjUgMEwxIDEuNSAzLjUgNCAxIDYuNSAyLjUgOGw0LTQtNC00eiIgZmlsbD0iY3VycmVudENvbG9yIi8+PC9zdmc+);
}

.custom-bd {
  background-color: white;
  padding: 0;
}

ol.breadcrumb.custom-bd li {
  font-style: italic;
  text-transform: capitalize;
}

.desctiption_blogs {
  padding-left: 20px;
}

/* css for float icons ends here */

/* New css starts here */

.desctiption_blogs ul {
  padding-left: 20px;
  list-style: disc;
}

.search-barlist > li {
  flex: 1 1 100% !important;
}

@media only screen and (max-width: 992px) and (min-width: 456px){
  .blog_navbar {
    /*top: 92px;*/
  }

  .country_img img {
    width: 100%;
  }
}
