/* GOOGLE FONTS */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,100italic,200,200italic,300,300italic,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);



















/* Modern Gallery Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}


.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px 5%;
  margin: 0 auto;
  max-width: 1600px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 25px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  width: 100%;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  margin: 0 0 5px 0;
  font-size: 1.4em;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-caption p {
  margin: 0;
  font-size: 0.95em;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand img {
  height: 50px;
}

/* Navigation active state */
.navbar .nav-item.active .nav-link {
  color: #004180 !important;
  font-weight: 600;
  position: relative;
}

.navbar .nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #004180;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.navbar .nav-item .nav-link {
  position: relative;
  color: #333;
  transition: color 0.3s ease;
}

.navbar .nav-item .nav-link:hover {
  color: #004180;
}

.navbar .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #004180;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff !important;
}

.navbar-nav .active>.nav-link {
  color: #007bff !important;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #343a40;
  color: #fff;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
  text-decoration: none;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
  text-decoration: none;
}

.copyright {
  border-top: 1px solid #495057;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  color: #adb5bd;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 20px 3%;
  }

  .gallery-header h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .gallery-header {
    padding: 70px 0;
  }

  .gallery-header h1 {
    font-size: 2.3rem;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .gallery-container {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .gallery-header {
    padding: 50px 0;
  }

  .gallery-header h1 {
    font-size: 2rem;
  }
}
























.navbar {
  padding: 1rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 110px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.8rem 2rem;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

.navbar-toggler {
  border: none;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
}













/* Image adjustments */







.col-md-6.animated {
  display: flex;
  align-items: flex-end;
}

.img1 {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: auto;
}

/* Ensure the container has enough height */
.col-md-6.animated {
  min-height: 200px;
  /* Adjust as needed */
}

/* Navigation Buttons */
#home-button,
#prev-button,
#next-button {
  cursor: pointer !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

#home-button {
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  background-color: rgba(30, 58, 138, 0.7) !important;
}

#home-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  background-color: rgba(26, 51, 115, 0.8) !important;
}

#home-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Navigation Arrows */
#prev-button,
#next-button {
  width: 2.5rem !important;
  height: 2.5rem !important;
  padding: 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: rgba(30, 58, 138, 0.7) !important;
  border: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

#prev-button:hover,
#next-button:hover {
  background-color: rgba(26, 51, 115, 0.8) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

#prev-button:active,
#next-button:active {
  transform: translateY(-50%) scale(0.95) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Global properties ======================================================== */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: #004180 !important;
  color: #fff
}

::-moz-selection {
  background: #004180 !important;
  color: #fff
}

a {
  color: #004180;
  text-decoration: underline;
  outline: none
}

a:hover {
  color: #004180;
  text-decoration: none;
  outline: none
}

body {
  background: #fff;
  border: 0;
  font: 14px 'Raleway', Arial, Helvetica, sans-serif;
  color: #959595;
  line-height: 1.42857143;
  min-width: 320px;
}

.container {
  position: relative;
  min-width: 320px;
}

#main {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Page Animated item Styles */
.animated {
  visibility: hidden;
}

.visible {
  visibility: visible;
}


/* ============================= header ====================== */
.social_wrapper {
  float: right;
}

.social {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social li {
  display: inline-block;
  margin: 0 10px;
  float: left;
}

.social li a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #ebebeb;
  text-align: center;
  line-height: 20px;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.social li a:hover {
  color: #004180;
}

.social_sm_wrapper {}

.social_sm {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social_sm li {
  display: inline-block;
  margin: 0 10px 10px 0;
  float: left;
}

.social_sm li a {
  display: block;
  text-decoration: none;
  font-size: 20px;
  color: #ebebeb;
  text-align: center;
  line-height: 20px;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.social_sm li a:hover {
  color: #004180;
}

.social3_wrapper {}

.social3 {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social3 li {
  display: inline-block;
  margin: 0 15px 10px 0;
  float: left;
}

.social3 li a {
  display: block;
  text-decoration: none;
  font-size: 20px;
  color: #d7d7d7;
  text-align: center;
  line-height: 20px;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.social3 li a:hover {
  color: #004180;
}

.social4_wrapper {
  display: inline-block;
}

.social4 {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social4 li {
  display: inline-block;
  margin: 0 8px;
  float: left;
}

.social4 li a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #d7d7d7;
  text-align: center;
  line-height: 20px;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.social4 li a:hover {
  color: #004180;
}

.lang1 {
  position: relative;
  display: block;
  float: left;
  white-space: nowrap;
  padding-left: 0px;
  background: none;
  margin-left: 50px;
}

.lang1 .dropdown-toggle {
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 14px;
  color: #8c8c8c;
  text-shadow: none;
  padding: 10px 15px;
  border: none;
  margin: 0;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  text-align: left;
  text-transform: none;
  vertical-align: middle;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  background: none !important;
  outline: none !important;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.lang1 .dropdown-toggle:hover,
.lang1 .dropdown-toggle:focus,
.lang1 .dropdown-toggle:active {
  color: #004180;
  text-decoration: none;
  background: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #004180;
  outline: none;
}




.lang1 .dropdown-menu {
  min-width: 120px;
  margin: 5px 0 0;
  padding: 5px 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: #fff;
  z-index: 1000;
}

.lang1 .dropdown-menu a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  background: none !important;
  outline: none;
  border: none;
}

.lang1 .dropdown-menu a:hover {
  background-color: #f8f9fa !important;
  color: #004180 !important;
  text-decoration: none;
}

.lang1 .dropdown-menu a:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 12px;
  background: url(../images/flag_en.webp) 0 0 no-repeat;
  vertical-align: top;
  margin-top: 3px;
  margin-right: 5px;
}

.lang1 .dropdown-menu a.ge:before {
  background: url(../images/flag_ge.webp) 0 0 no-repeat;
}

.lang1 .dropdown-menu a.ru:before {
  background: url(../images/flag_ru.webp) 0 0 no-repeat;
}

.lang1 .dropdown-item.active {
    font-weight: bold;
    color: #004180;
}

.lang1 .dropdown-item.active::after {
    content: '✔';
    margin-left: auto;
}

.flag-icon {
  width: 18px;
  margin-right: 8px;
}

.lang1 .dropdown-item {
  display: flex;
  align-items: center;
}

.top2_wrapper {
  position: relative;
  background: #fff;
}

.top2 {
  position: relative;
}

header {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 31;
}


/* ============================= slider ====================== */
#slider_wrapper {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
}

#slider_inner {}

#slider {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
}

.slider_pagination {
  padding-top: 160px;
}

.slider_pagination a {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../images/pagination.webp) center center no-repeat;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
}

.slider_pagination a:hover,
.slider_pagination a.selected {
  background: url(../images/pagination_hover.webp) center center no-repeat;
}


#slider .carousel-box {
  position: relative;
}

#slider .carousel-box .inner {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
}

#slider .carousel.main {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-right: -30px;
}

#slider .caroufredsel_wrapper {
  padding: 0;
  margin: 0;
}

#slider .caroufredsel_wrapper ul {
  padding: 0;
  margin: 0;
}

#slider .carousel-box ul li {
  float: left;
  display: inline-block;
  padding: 0px 0px 0px 0px;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-right: 30px
}

.slider {}

.slider .slider_inner {
  line-height: 1.2;
  color: #fff;
}

.slider .slider_inner span {
  background: #004180;
  background: rgba(0, 65, 128);
  padding: 5px 15px;
  display: inline-block;
}

.slider .slider_inner .txt1 {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 5px;
}

.slider .slider_inner .txt2 {
  font-weight: 800;
  font-size: 45px;
  margin-bottom: 5px;
}

.slider .slider_inner .txt3 {
  font-weight: 400;
  font-size: 18px;
}

/* ============================= slider end ====================== */

/* ============================= video bg ====================== */
.video-background-wrapper {
  position: relative;
  overflow: hidden;
  max-height: 781px;
  background: url(../images/video-loader.gif) center center no-repeat;
}

.video-background {
  width: 100%;
  display: block;
}

/* ============================= video bg end ====================== */

/* ============================= supersildes ====================== */
#home {
  height: 781px;
  position: relative;
  z-index: 0;
}

/* ============================= supersildes end ====================== */

/* ============================= sm slider ====================== */
.sm_slider {
  position: relative;
  padding: 25px 20px 65px;
  background: #004180;
  border-top: 5px solid #004180;
  margin-bottom: 30px;
}

.sm_slider_prev {
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: -27px;
  z-index: 10;
  background: url(../images/prev.webp) left top no-repeat;
}

.sm_slider_prev:hover {
  background-position: bottom;
}

.sm_slider_next {
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: 5px;
  z-index: 10;
  background: url(../images/next.webp) left top no-repeat;
}

.sm_slider_next:hover {
  background-position: bottom;
}

.sm_slider .carousel-box {
  position: relative;
}

.sm_slider .carousel-box .inner {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
}

.sm_slider .carousel.main {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-right: -30px;
}

.sm_slider .caroufredsel_wrapper {
  padding: 0;
  margin: 0;
}

.sm_slider .caroufredsel_wrapper ul {
  padding: 0;
  margin: 0;
}

.sm_slider .carousel-box ul li {
  float: left;
  display: inline-block;
  padding: 0px 0px 0px 0px;
  position: relative;
  width: 300px;
  overflow: hidden;
  padding-right: 30px
}

.sm_slider_inner {
  text-align: center;
  color: #fff;
  padding-top: 25px;
  background: url(../images/q1.webp) center top no-repeat;
}

.sm_slider_inner .txt1 {}

.sm_slider_inner .txt2 {
  font-weight: 600;
  font-size: 15px;
  color: #fff799;
  padding-top: 10px;
}


/* ============================= sm slider end ====================== */

/* ============================= sl1 ====================== */
#sl1 {
  position: relative;
}

.sl1_prev,
.sl1_next {
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 4%;
  top: 50%;
  margin-top: -14px;
  background: url(../images/prev3.webp) 0 0 no-repeat;
  z-index: 2;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.sl1_prev:hover,
.sl1_next:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.sl1_next {
  background: url(../images/next3.webp) center center no-repeat;
  left: auto;
  right: 4%;
}

.sl1_pagination {
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 15px;
  text-align: center;
  line-height: 0;
}

.sl1_pagination a {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid transparent;
  margin: 0 3px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  text-decoration: none;
}

.sl1_pagination a.selected {
  background: transparent;
  border-color: #fff;
}

.sl1_pagination a span {
  display: none;
}

#sl1 .carousel-box {
  position: relative;
}

#sl1 .carousel-box .inner {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
}

#sl1 .carousel.main {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-right: 0px;
}

#sl1 .caroufredsel_wrapper {
  padding: 0;
  margin: 0;
}

#sl1 .caroufredsel_wrapper ul {
  padding: 0;
  margin: 0;
}

#sl1 .carousel-box ul li {
  float: left;
  display: inline-block;
  padding: 0px 0px 0px 0px;
  position: relative;
  width: 300px;
  overflow: hidden;
  padding-right: 0px
}

.sl1 .sl1_inner img {
  width: 100%;
}

/* ============================= sl1 end ====================== */

/* ============================= tabs end ====================== */

/* ============================= blog ====================== */
.post {
  margin-bottom: 30px;
}

.post .post-header {
  position: relative;
  border: 4px solid #fafafa;
}

.post .post-header .post-slide {
  position: relative;
}

.post .post-header .post-video {
  position: relative;
  padding-bottom: 56%;
}

.post .post-header .post-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.post .post-story {}

.post .post-story h2 {
  text-align: left;
  font-size: 30px;
  color: #464646;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 0;
}


.post .post-story .post-story-info .date1 {
  display: inline-block;
  background: #004180;
  color: #fff;
  padding: 6px 15px;
  margin-right: 15px;
}

.post .post-story .post-story-info .by {
  display: inline-block;
  color: #c2c2c2;
  padding: 6px 0;
}

@media(min-width: 1200px) {
  .post .post-story .post-story-info {
    background: #fafafa;
    margin-bottom: 20px;
    height: 36px;
  }

  .post .post-story .post-story-info .date12 {
    float: left;
    background: #004180;
    color: #fff;
    padding: 8px 15px;
    margin-right: 15px;
  }

  .post .post-story .post-story-info .option-booking {
    font-family: 'Raleway', sans-serif;
    font-size: 10pt;
    display: inline-block;
    color: #c2c2c2;
  }

  .post .post-story .post-story-info .option-booking span {
    float: left;
    color: #959595;
    font-weight: 500;
    font-size: 11px;
    margin-left: 5px;
    margin-top: 6px;
    margin-right: 10px;
  }

  .post .post-story .post-story-info .option-booking i {
    width: 26px;
    height: 20px;
    float: left;
    margin-top: 2px;
    margin-left: 7px;
  }
}

@media(min-width: 320px) and (max-width: 1199px) {
  .post .post-story .post-story-info {
    background: #fafafa;
    margin-bottom: 20px;
    height: 206px;
  }

  .post .post-story .post-story-info .date12 {
    text-align: center;
    background: #004180;
    color: #fff;
    padding: 8px 15px;
  }

  .post .post-story .post-story-info .option-booking {
    font-family: 'Raleway', sans-serif;
    font-size: 10pt;
    display: inline-block;
    color: #c2c2c2;
  }

  .post .post-story .post-story-info .option-booking span {
    float: left;
    color: #959595;
    font-weight: 500;
    font-size: 11px;
    margin-left: 5px;
    margin-top: 14px;
    margin-right: 10px;
  }

  .post .post-story .post-story-info .option-booking i {
    width: 26px;
    height: 20px;
    float: left;
    margin-top: 10px;
    margin-left: 7px;
    clear: both;
  }
}

@media(min-width: 320px) and (max-width: 767px) {
  h3.hch {
    text-transform: none;
    color: #464646;
    font-size: 40px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0.8
  }

  h3.hch2 {
    text-transform: none;
    color: #464646;
    font-size: 40px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0.8
  }

  p.address {
    font-size: 17px;
    font-weight: 500;
    color: #464646;
  }

  .star-rating {
    display: inline-block;
    margin-top: 10px;
  }
}

@media(min-width: 768px) {
  h3.hch {
    display: inline-block;
    float: left;
    text-transform: none;
    color: #464646;
    font-size: 40px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 7px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0.8
  }

  h3.hch2 {
    text-transform: none;
    color: #464646;
    font-size: 40px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 7px;
    padding-top: 0;
    padding-bottom: 0;
  }

  p.address {
    font-size: 17px;
    font-weight: 500;
    color: #464646;
  }

  .star-rating {
    display: inline-block;
    float: left;
    margin-left: 20px;
    margin-top: 10px;
  }
}

@media(min-width: 768px) {
  .paddinger {
    padding-top: 200px;
  }
}

.col-centered {
  float: none;
  margin: 0 auto;
}

.booking-success {
  font-weight: 600;
  color: #464646;
}

.booking-success h3 {
  font-size: 30px;
  text-transform: none;
  padding-bottom: 0;
}

.booking-success span {
  color: #004180;
}

.booking-success p span {
  font-weight: 700;
}

.border-bottom {
  border-bottom: 1px solid #004180;
  padding-bottom: 10px;
}

.booking-row {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  margin-right: 0;
}

.booking-row h3 {
  font-weight: 600;
  font-size: 18px;
  color: #01726a;
  padding-bottom: 9px;
}

.booking-row h3.line {
  font-weight: 600;
  font-size: 18px;
  color: #004180;
  border-bottom: 2px solid #004180;
  padding-bottom: 9px;
}

.booking-row label {
  color: #434343;
  font-size: 14px;
  margin-top: 8px;
}

.booking-row .form-control {
  font-family: 'Raleway', sans-serif;
  height: 43px;
  margin-top: 9px;
  padding: 13px 12px;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

.booking-row .form-control:focus {
  border-color: #004180;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(28, 187, 180, .3);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(28, 187, 180, .3);
}

.booking-row .red {
  color: #ee742c;
  font-size: 21px;
  font-weight: 700;
  padding-top: 15px;
  display: inline-block;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.no-padding-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.border-3px {
  width: 100%;
  height: 2px;
  background-color: #004180;
}

.star-rating-left {
  display: inline-block;
  float: left;
  margin-top: 5px;
}

.location {
  display: inline-block;
  float: left;
  margin-left: 20px;
  font-weight: 600;
  font-size: 13px;
  color: #464646;
  margin-top: 8px;
}

.sidebar-block {
  background-color: #f3f3f3;
  padding: 25px 25px;
  border-bottom: 3px solid #004180;
}

.sidebar-block h3 {
  font-weight: 600;
  color: #01726a;
  font-size: 18px;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.sidebar-block label {
  font-size: 14px;
  color: #636363;
  font-weight: 600;
  margin-bottom: 9px;
}

.sidebar-block .nights {
  display: block;
  font-weight: 500;
  color: #464646;
  font-size: 13px;
  margin-top: 8px;
}

.margin-top {
  margin-top: 20px;
}

.price-left {
  margin-top: 5px;
  color: #000;
  text-align: right;
}

.price-left span.red {
  font-weight: 700;
  font-size: 18px;
  color: #ee742c;
}

.price-left span.blue {
  font-weight: 500;
  color: #004180;
  font-size: 11px;
  padding-right: 5px;
}

.price-total-left {
  margin-top: 3px;
  color: #000;
  text-align: right;
}

.price-total-left span.red {
  font-weight: 700;
  font-size: 25px;
  color: #ee742c;
}

.post .post-story .post-story-info .by a {
  text-decoration: none;
}

.free-wifi {
  background: url('../images/free-wifi.webp') no-repeat center center;
}

.parking {
  background: url('../images/parking.webp') no-repeat center center;
}

.no-parking {
  background: url('../images/no-parking.webp') no-repeat center center;
}

.no-smoking {
  background: url('../images/no-smoking.webp') no-repeat center center;
}

.breakfast {
  background: url('../images/breakfast.webp') no-repeat center center;
}

.airport-shuttle {
  background: url('../images/airport-shuttle.webp') no-repeat center center;
}

.post .post-story .post-story-body {
  margin-bottom: 20px;
}

.post .post-story .post-story-link {}

.post .post-story .post-story-tags {
  background: #fafafa;
  padding: 10px 25px;
}

.post .post-story .post-story-tags .tags_wrapper {
  float: left;
  color: #636363;
  font-size: 13px;
  padding-top: 4px;
}

.post .post-story .post-story-tags .tags_wrapper a {
  text-decoration: none;
}

.share_post {
  float: right;
}

.share_post .txt1 {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: #636363;
  vertical-align: top;
  padding-right: 20px;
  padding-top: 4px;
}

.num-comments {
  font-size: 30px;
  color: #464646;
  font-weight: 600;
  padding: 30px 0;
}

.comment-block {
  margin-bottom: 30px;
}

.comment-block.left1 {
  margin-left: 100px;
}

.comment-block figure {
  float: left;
  margin-right: 30px;
}

.comment-block figure img {}

.comment-block .caption {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ebebeb;
  padding: 15px;
}

.comment-block .caption .top {
  padding-bottom: 15px;
  color: #c2c2c2;
  font-size: 12px;
  font-weight: 500;
}

.comment-block .caption .top span {
  display: inline-block;
  margin: 0 25px;
}

.comment-block .caption .top .txt1 {
  display: inline-block;
}

.comment-block .caption .top .txt1 a {
  color: #004180;
  text-decoration: none;
}

.comment-block .caption .top .txt2 {
  display: inline-block;
}

.comment-block .caption .top .txt3 {
  display: inline-block;
}

.comment-block .caption .top .txt3 a {
  color: #004180;
  text-decoration: none;
}

.comment-block .caption .top .txt3 a:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 8px;
  background: url(../images/arr1_hover.webp) right center no-repeat;
  margin-left: 5px;
}

.comment-block .caption .txt {
  color: #959595;
}

.live-comment {
  padding-top: 20px;
  padding-bottom: 20px;
}

.live-comment .live-comment-title {
  font-weight: 700;
  font-size: 30px;
  color: #464646;
  padding-bottom: 20px;
}


/* ============================= blog end ====================== */






/* ============================= content ====================== */
.page_banner {
  height: 274px;
}

.page-about .page_banner {
  background: url(../images/about.webp) center center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.breadcrumbs1_wrapper {}

.breadcrumbs1 {
  padding: 15px 0;
  margin-top: 0px;
  font-weight: 400;
  line-height: 20px;
  color: #686868;
  font-size: 14px;
}

.breadcrumbs1 a {
  color: #004180;
  text-decoration: none;
}

.breadcrumbs1 a:hover {
  color: #004180;
  text-decoration: underline;
}

.breadcrumbs1 span {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}

#what1 {
  position: relative;
  padding-top: 20px;
  padding-bottom: 50px;
  background: #fafafa;
}

.ul2 {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ul2>li {
  font-size: 15px;
  font-weight: 400;
  color: #959595;
  margin-bottom: 8px;
}

.ul2>li a {
  color: #959595;
  text-decoration: none;
  display: block;
  padding: 5px 0px 5px 35px;
  background: url(../images/li_st2.webp) 0 3px no-repeat;
}

.ul2>li a:hover {
  color: #004180;
}

.blockquote0 {
  border-left: 3px solid #004180;
  padding: 2px 0 2px 20px;
  margin-bottom: 0;
  font-size: 14px;
  color: #959595;
}

.blockquote1 {
  margin-top: 20px;
  margin-bottom: 30px;
  background: url(../images/blockquote1.webp) 30px 40px no-repeat #252525;
  padding: 33px 60px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  border: none;
  margin-left: 9%;
}

.blockquote1 .author {
  font-size: 15px;
  color: #004180;
  font-weight: 600;
  padding-top: 10px;
}

.blockquote1 .author span {
  font-size: 12px;
  color: #636363;
  font-weight: 500;
}

#company1 {
  padding-bottom: 0px;
  padding-top: 30px;
  background: none;
  color: #959595;
}

#company1 .img1 {
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
  margin-bottom: -40px;
}

#company1 .content {
  padding-bottom: 30px;
  padding-top: 20px;
}

#company1 .content .txt1 {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 500;
  color: #464646;
  padding-bottom: 20px;
}

#company1 .content .txt2 {
  font-weight: 400;
  padding-bottom: 30px;
  color: #959595;
}

#company1 .distance1 .txt {
  color: #464646;
}

#company1 .distance1 .bg {
  background: #ebebeb;
}

#company1 .distance1 .bg .animated-distance span {
  color: #004180;
}


#team1 {
  position: relative;
  padding-top: 30px;
  padding-bottom: 10px;
  background: #fafafa;
}

#content {
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
}

.page-pages #content {
  padding-top: 0;
}

.page-contacts #content {
  padding-top: 0;
}

.page-blog #content {
  padding-top: 0;
}

.page-post #content {
  padding-top: 0;
}



#google_map2 {
  position: relative;
  width: 100%;
  height: 284px;
}

#google_map2_wrapper {
  position: relative;
  padding-top: 3px;
  border-top: 1px solid #004180;
  padding-bottom: 3px;
  border-bottom: 1px solid #004180;
}

#google_map {
  position: relative;
  width: 100%;
  height: 440px;
}

#google_map_wrapper {
  position: relative;
  padding-top: 3px;
  border-top: 1px solid #004180;
  padding-bottom: 3px;
  border-bottom: 1px solid #004180;
}

.pager_wrapper {
  padding-top: 40px;
  margin-bottom: 30px;
}

.pager {
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: 'Raleway';
  font-weight: 400;
  font-size: 14px;
}

.pager li {}

.pager li>a {
  border: 1px solid #ebebeb;
  padding: 0px 2px;
  border-radius: 0px;
  background: #fafafa;
  color: #959595;
  text-align: center;
  min-width: 32px;
  line-height: 40px;
  text-decoration: none;
}

.pager li>a:hover {
  text-decoration: none;
  background: #fff;
  border-color: #004180;
  color: #004180;
}

.pager li.active>a {
  background: #004180;
  color: #fff;
  cursor: default;
  text-decoration: none;
  border-color: #004180;
}

.pager .prev {}

.pager .prev>a {
  float: left;
  background: #fafafa;
  color: #959595;
  padding: 0 20px;
  border: 1px solid #ebebeb;
  min-width: 110px;
  text-align: center;
}

.pager .prev>a:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 8px;
  background: url(../images/prev2.webp);
  margin-right: 10px;
}

.pager .prev>a:hover {
  background: #004180;
  border-color: #004180;
  color: #fff;
}

.pager .prev>a:hover:before {
  background: url(../images/prev2_hover.webp);
}

.pager .next {}

.pager .next>a {
  float: right;
  background: #fafafa;
  color: #959595;
  padding: 0 20px;
  border: 1px solid #ebebeb;
  min-width: 110px;
  text-align: center;
}

.pager .next>a:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 8px;
  background: url(../images/next2.webp);
  margin-left: 10px;
}

.pager .next>a:hover {
  background: #004180;
  border-color: #004180;
  color: #fff;
}

.pager .next>a:hover:after {
  background: url(../images/next2_hover.webp);
}

.pager .li {
  display: none;
}

@media (min-width: 768px) {
  .pager .li {
    display: inline-block;
  }
}

/* Travel Package Styles */
.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-img-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.card-text {
  color: #666;
}

.btn-primary {
  background-color: #004180;
  border-color: #004180;
}

.btn-primary:hover {
  background-color: #002a54;
  border-color: #002a54;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}



/* Language Dropdown Styles */
.language-dropdown .dropdown-menu {
  min-width: 160px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  margin-top: 8px;
}

.language-dropdown .dropdown-item {
  padding: 8px 15px;
  color: #333;
  transition: all 0.2s ease-in-out;
}

.language-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #004180;
}

.language-dropdown .dropdown-item.active {
  background-color: #f0f7ff;
  color: #004180;
  font-weight: 500;
}

.flag-icon {
  display: inline-block;
  width: 20px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  border-radius: 2px;
}

.flag-icon[data-lang="en"] {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><clipPath id="a"><path d="M0 0v30h60V0z"/></clipPath><clipPath id="b"><path d="M30 15h30v15zv15H0zH0V0z"/></clipPath><g clip-path="url(#a)"><path d="M0 0v30h60V0z" fill="#012169"/><path d="M0 0l60 30m0-30L0 30" stroke="#fff" stroke-width="6"/><path d="M0 0l60 30m0-30L0 30" clip-path="url(#b)" stroke="#C8102E" stroke-width="4"/><path d="M30 0v30M0 15h60" stroke="#fff" stroke-width="10"/><path d="M30 0v30M0 15h60" stroke="#C8102E" stroke-width="6"/></g></svg>');
}

.flag-icon[data-lang="de"] {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><rect width="5" height="3" fill="#000"/><rect width="5" height="2" y="1" fill="#D00"/><rect width="5" height="1" y="2" fill="#FFCE00"/></svg>');
}

.flag-icon[data-lang="pl"] {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 10"><rect width="16" height="10" fill="#fff"/><rect width="16" height="5" y="5" fill="#dc143c"/></svg>');
}

/* Offcanvas Customization Panel */
.offcanvas-start {
  width: 400px;
}

.offcanvas-header {
  border-bottom: 1px solid #dee2e6;
}

.offcanvas-title {
  font-weight: 600;
  color: #333;
}

.offcanvas-body .form-label {
  font-weight: 500;
  color: #495057;
}

.offcanvas-body .form-range {
  cursor: pointer;
}

.offcanvas-body .btn-primary {
  font-size: 1.1rem;
  padding: 0.75rem;
}

/* Travel Package Styles */
.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-img-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.card-text {
  color: #666;
}

.btn-primary {
  background-color: #004180;
  border-color: #004180;
}

.btn-primary:hover {
  background-color: #002a54;
  border-color: #002a54;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

/* Customize Form Styles */
#customize {
  background-color: #f8f9fa;
  padding: 3rem 0;
  border-radius: 8px;
}

#customize h2 {
  color: #333;
}

#customize .form-label {
  font-weight: 600;
}

#customize .form-control {
  border-radius: 4px;
}

#customize .btn-primary {
  width: 100%;
  padding: 0.75rem;
  font-size: 1.1rem;
}


.star_rating_wrapper {
  margin-bottom: 30px;
}

.star_rating_wrapper .title {
  background: #004180;
  position: relative;
  font-weight: 700;
  color: #fff;
  padding: 15px 37px 15px 20px;
  line-height: 20px;
}

.star_rating_wrapper .title:after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/star_rating.webp);
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}

.star_rating_wrapper .content {
  background: #fafafa;
  padding: 15px;
  border-bottom: 1px solid #ebebeb;
}

.checkbox1-custom {
  opacity: 0;
  position: absolute;
}

.checkbox1-custom,
.checkbox1-custom-label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}

.checkbox1-custom-label {
  position: relative;
  font-size: 14px;
  color: #bebebe;
  font-weight: 400;
}

.checkbox1-custom-label img {
  margin-right: 2px;
}

.checkbox1-custom-label span {
  color: #959595;
  padding-left: 10px;
}

.checkbox1-custom+.checkbox1-custom-label:before {
  content: '';
  background: url(../images/ch1.webp);
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 16px;
  margin-right: 10px;
}

.checkbox1-custom:checked+.checkbox1-custom-label:before {
  background: url(../images/ch2.webp);
}

.checkbox1-custom:focus+.checkbox1-custom-label {
  outline: none;
}



#slider_wrapper {
  padding-bottom: 180px;
  padding-top: 270px;
  background: url(../images/slider.jpg) center center no-repeat;
  background-size: cover;
}

#why1 {
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
}

#popular_cruises1 {
  position: relative;
  padding-top: 20px;
  padding-bottom: 70px;
}

/* ============================= popular ====================== */
#popular_wrapper {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
}

#popular_inner {}

#popular {
  position: relative;
  padding-top: 0px;
  padding-bottom: 0px;
}

.popular_pagination {
  padding-top: 20px;
  text-align: center;
}

.popular_pagination a {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 2px;
  background: url(../images/pagination2.webp) center center no-repeat;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
}

.popular_pagination a:hover,
.popular_pagination a.selected {
  background: url(../images/pagination2_hover.webp) center center no-repeat;
}

#popular .carousel-box {
  position: relative;
}

#popular .carousel-box .inner {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
}

#popular .carousel.main {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-right: -30px;
}

#popular .caroufredsel_wrapper {
  padding: 0;
  margin: 0;
}

#popular .caroufredsel_wrapper ul {
  padding: 0;
  margin: 0;
}

#popular .carousel-box ul li {
  float: left;
  display: inline-block;
  padding: 0px 0px 0px 0px;
  position: relative;
  width: 300px;
  overflow: hidden;
  padding-right: 30px
}

.popular {}

.popular .popular_inner {}

.popular .popular_inner figure {
  position: relative;
}

.popular .popular_inner figure img {
  position: relative;
  width: 100%;
}

.popular .popular_inner figure .over {
  background: #004180;
  background: #004180;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  width: 100%;
  color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.popular .popular_inner:hover figure .over {
  opacity: 1;
  filter: alpha(opacity=100);
}

.popular .popular_inner figure .over .v1 {
  font-weight: 700;
  font-size: 21px;
}

.popular .popular_inner figure .over .v1 span {
  color: #fef697;
  font-size: 14px;
  padding-left: 5px;
  font-style: italic;
  font-weight: 400;
}

.popular .popular_inner figure .over .v2 {}

.popular .popular_inner .caption {
  padding: 25px;
  border-bottom: 3px solid transparent;
  background: #fafafa;
}

.popular .popular_inner:hover .caption {
  border-color: #004180;
}

.popular .popular_inner .txt1 {
  font-weight: 500;
  padding-bottom: 5px;
  font-size: 12px;
  color: #ee742c;
}

.popular .popular_inner .txt1 span {
  padding-right: 5px;
  font-size: 21px;
  color: #636363;
}

.popular .popular_inner:hover .txt1 span {
  color: #004180;
}

.popular .popular_inner .txt2 {
  color: #959595;
  padding-bottom: 20px;
}

.popular .popular_inner .txt3 {}

.popular .popular_inner .txt3 .left_side {
  float: left;
  padding-top: 5px;
}

.popular .popular_inner .txt3 .right_side {
  float: right;
}

.popular .popular_inner .txt3 .nums {
  display: inline-block;
  font-size: 12px;
  color: #c2c2c2;
}

/* ============================= popular end ====================== */

.stars1 {
  display: inline-block;
}

.stars1 img {
  margin-right: 1px;
}

#happy1 {
  padding-bottom: 0px;
  padding-top: 50px;
  background: url(../images/happy1.webp) center center no-repeat;
  background-size: cover;
  color: #fff;
}

#happy1 .img1 {
  margin-top: 120px;
}

#happy1 .content {
  padding-bottom: 30px;
}

#happy1 .content .txt1 {
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 600;
}

#happy1 .content .txt2 {
  font-weight: 600;
  padding-bottom: 40px;
}

#happy1 .content .txt3 {
  padding-bottom: 20px;
}

.distance1 {
  position: relative;
  padding-bottom: 20px;
}

.distance1 .txt {
  font-weight: 600;
  padding-bottom: 5px;
}

.distance1 .bg {
  position: relative;
  height: 13px;
  background: #f8f8f8;
}

.distance1 .bg .animated-distance {
  background: #004180;
  position: absolute;
  left: 0: top: 0;
  width: 0;
  height: 100%;
}

.distance1 .bg .animated-distance span {
  position: absolute;
  top: -25px;
  right: -10px;
  font-weight: 700;
}

#partners {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.similar {
  color: #464646;
  font-style: italic;
}





/* ============================= footer ====================== */
.bot1_wrapper {
  background: #252525;
  border-top: 4px solid #004180;
  padding-top: 35px;
  padding-bottom: 45px;
  color: #959595;
}

.bot1_title {
  font-size: 24px;
  color: #898989;
  font-weight: 700;
  padding-top: 40px;
  padding-bottom: 20px;
}

.logo2_wrapper {
  padding-bottom: 10px;
}

.social2_wrapper {
  padding-top: 10px;
}

.social2 {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social2 li {
  display: inline-block;
  margin: 0 4px 4px 0;
  float: left;
}

.social2 li a {
  display: block;
  width: 39px;
  height: 39px;
  text-decoration: none;
  background-position: left top;
  background-repeat: no-repeat;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.social2 li a:hover {
  background-position: bottom;
}

.social2 li.nav1 a {
  background-image: url(../images/social_ic1.webp);
}

.social2 li.nav2 a {
  background-image: url(../images/social_ic2.webp);
}

.social2 li.nav3 a {
  background-image: url(../images/social_ic3.webp);
}

.social2 li.nav4 a {
  background-image: url(../images/social_ic4.webp);
}

.social2 li.nav5 a {
  background-image: url(../images/social_ic5.webp);
}

.social2 li.nav6 a {
  background-image: url(../images/social_ic6.webp);
}

.twits1 {}

.twits1 .twit1 {
  color: #959595;
  border-top: 1px solid #363636;
  padding: 8px 0;
}

.twits1 .twit1:first-child {
  border-top: none;
}

.twits1 .twit1 a {
  color: #004180;
  text-decoration: none;
}

.twits1 .twit1 .date {
  color: #464646;
  font-size: 12px;
}

.newsletter_block {}

.newsletter_block .txt1 {
  font-size: 12px;
  padding-bottom: 5px;
}

.newsletter-wrapper {}

.newsletter {}

.newsletter input {
  width: 100%;
  height: auto;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  background: url(../images/newsletter.webp) right center no-repeat #101010;
  border: 1px solid #343434;
  margin: 0;
  padding: 10px 50px 10px 10px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.newsletter input:focus {
  color: #fff;
  background-color: #000;
  border-color: #707070;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.phone2 {
  font-size: 30px;
  color: #004180;
  padding-top: 5px;
}

.support1 {
  color: #555555;
}

.support1 a {
  color: #555555;
}

.bot2_wrapper {
  background: #004180;
  padding-top: 29px;
  padding-bottom: 29px;
  color: #fff;
  font-size: 13px;
}

.bot2_wrapper a {
  color: #fff;
  text-decoration: none;
}

.bot2_wrapper a:hover {
  text-decoration: underline;
}

.bot2_wrapper span {
  padding: 0 5px;
}

.bot2_wrapper .left_side {
  float: left;
}

.bot2_wrapper .right_side {
  float: right;
}



/* ============================= parallax ====================== */
.parallax {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: none;
}

.parallax,
.parallax .parallax-content,
.parallax .overlay {
  height: 100%;
}

.parallax-bg {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0 auto;
  position: absolute;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: repeat-y;
  background-position: center center;
}

.parallax-bg.bg-fixed {
  background-attachment: fixed;
}

.parallax .overlay {
  background: none;
  width: 100%;
  position: absolute;
  overflow: hidden;
  background: none;
}

.parallax-content {
  padding-top: 0px;
  padding-bottom: 0px;
}




.bg1 {
  background-image: url(../images/parallax1.webp);
}

.bg2 {
  background-image: url(../images/parallax2.webp);
}


#parallax1 {
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
}

#parallax1 .txt1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff799;
}

#parallax1 .txt3 {
  padding-top: 10px;
  color: #fff799;
  font-size: 18px;
}

#parallax1 .txt3 strong {
  font-size: 30px;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}

#parallax1 .txt3 span {
  font-size: 14px;
  color: #fff;
}

#parallax2 {
  padding-top: 290px;
}



/* ============================= main menu ====================== */
.menu_wrapper {}

.navbar_ {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  z-index: 30;
  min-height: 0;
  float: right;
  display: block;
  background: none;
  line-height: 1px;
}

.navbar_ .navbar-toggle {
  float: right;
  background: #004180;
  border: none;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin-top: 41px;
  margin-bottom: 41px;
  margin-left: 15px;
}

.navbar_ .navbar-toggle:hover,
.navbar_ .navbar-toggle:focus {
  background: #004180;
}

.navbar_ .navbar-toggle .icon-bar {
  background: #fff;
}

.navbar-collapse_ {
  padding-left: 0;
  padding-right: 0;
  border: none;
}

.navbar_ .nav {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  float: none;
  padding-right: 0px;
  background: none;
}

.navbar_ .nav>li {
  position: relative;
  display: block;
  float: left;
  white-space: nowrap;
  padding-left: 0px;
  background: none;
  margin-left: 50px;
}

.navbar_ .nav>li:first-child {
  margin-left: 0;
}

.navbar_ .nav>li>a {
  display: block;
  text-decoration: none;
  background: none;
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #8c8c8c;
  text-shadow: none;
  padding: 45px 0px 45px 0;
  border: none;
  margin: 0;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  text-align: left;
  text-transform: none;
  vertical-align: middle;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
}

.navbar_ .nav>li>a em {
  display: inline-block;
  width: 8px;
  height: 5px;
  background: url(../images/caret.webp);
  margin-left: 5px;
}

.navbar_ .nav>li>a:hover,
.navbar_ .nav>li>a:focus,
.navbar_ .nav>li.sfHover>a,
.navbar_ .nav>li.sfHover>a:hover {
  color: #004180;
  text-decoration: none;
  background: none;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #004180;
}

.navbar_ .nav>li.active>a,
.navbar_ .nav>li.active>a:hover,
.navbar_ .nav>li.active>a:focus {
  color: #004180;
  text-decoration: none;
  background: none;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #004180;
}

.sub-menu ul {
  position: absolute;
  display: none;
  left: -25px;
  top: 75px;
  list-style: none;
  zoom: 1;
  z-index: 10;
  margin: 0;
  padding: 15px 25px;
  background: #fff;
  text-align: left;
  margin-top: -6px;
  min-width: 180px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.sub-menu li {
  margin: 0;
  position: relative;
  zoom: 1;
  display: block;
  border-top: 1px solid #ebebeb;
}

.sub-menu li:first-child {
  border: none;
}

.sub-menu li a {
  display: block;
  position: relative;
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #8c8c8c;
  text-decoration: none;
  padding: 10px 0px;
  background: none;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.sub-menu li a:hover {
  text-decoration: none;
  color: #004180;
}

@media(min-width:768px) {
  .sub-menu li ul {
    position: absolute;
    display: none;
    left: 158px;
    top: 0px;
    list-style: none;
    zoom: 1;
    z-index: 10;
    margin: 0;
    padding: 6px 25px;
    background: #fff;
    text-align: left;
    margin-top: -6px;
    min-width: 180px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  }

  .sub-menu li ul li {
    margin: 0;
    position: relative;
    zoom: 1;
    display: block;
    border-top: 1px solid #ebebeb;
  }

  .sub-menu li ul li ul:first-child {
    border: none;
  }

  .sub-menu li ul li a {
    display: block;
    position: relative;
    font-family: 'Raleway';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #8c8c8c;
    text-decoration: none;
    padding: 10px 0px;
    background: none;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
  }

  .sub-menu li ul li a:hover {
    text-decoration: none;
    color: #004180;
  }
}



.sub-menu-1>ul {}

.sub-menu-2>ul {
  left: 100%;
  top: 0;
  margin-left: 0px;
  background: #002745;
}

/* ============================= search-form ====================== */
.search-form-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.search-form-wrapper .form-control {
  border: 1px solid #ebebeb;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  padding-top: 9px;
  padding-bottom: 9px;
  height: 40px;
  color: #c2c2c2;
  font-size: 14px;
}

.search-form-wrapper .form-control:focus {
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #004180;
}

.search-form-wrapper a {
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 40px;
  line-height: 40px;
  color: #c2c2c2;
}

.search-form-wrapper a:hover {
  color: #004180;
}

.search-form-wrapper a i {
  font-size: 16px;
  line-height: 40px;
}


/* ============================= toTop ====================== */
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border: none;
  text-indent: 100%;
  background: url(../images/totop.gif) no-repeat left top;
}

#toTopHover {
  background: url(../images/totop.gif) no-repeat left bottom;
  width: 50px;
  height: 50px;
  display: block;
  overflow: hidden;
  float: left;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
}

#toTop:active,
#toTop:focus {
  outline: none;
}



/* ============================= main layout ====================== */


h1 {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 36px;
  color: #323a45;
  background: none;
  line-height: 1.1;
  padding: 20px 0 20px;
  margin: 0 0 25px 0;
  position: relative;
  border-bottom: 4px solid #046db6;
}

h2 {
  font-family: 'Raleway';
  font-weight: 600;
  font-size: 42px;
  color: #464646;
  background: none;
  line-height: 1.1;
  padding: 20px 0 20px;
  margin: 0 0 10px 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

h3 {
  font-family: 'Raleway';
  font-weight: 600;
  font-size: 42px;
  color: #464646;
  background: none;
  line-height: 1.1;
  padding: 20px 0 20px;
  margin: 0 0 10px 0;
  position: relative;
  text-align: left;
  text-transform: uppercase;
}

h4 {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 18px;
  color: #004180;
  background: none;
  line-height: 1.1;
  padding: 15px 0 10px;
  margin: 0 0 0px 0;
  position: relative;
  text-align: left;
  text-transform: uppercase;
}

h5 {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 19px;
  color: #464646;
  background: none;
  line-height: 1.1;
  padding: 20px 0 20px;
  margin: 0 0 0px 0;
  position: relative;
  text-align: left;
}







.title1 {
  text-align: center;
  font-size: 18px;
  color: #959595;
  padding-bottom: 15px;
}





















.img-responsive {
  width: auto \9;
}

.img-responsive-old {
  display: block;
  max-width: 100%;
  height: auto;
}

.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.color1 {
  color: #002e51;
}



/* === */
.ul1 {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ul1>li {
  font-size: 15px;
  color: #959595;
  border-bottom: 1px solid #363636;
}

.ul1>li a {
  color: #959595;
  text-decoration: none;
  display: block;
  padding: 10px 20px 10px 0px;
  background: url(../images/arr1.webp) right center no-repeat;
}

.ul1>li a:hover {
  color: #004180;
  text-decoration: none;
  background: url(../images/arr1_hover.webp) right center no-repeat;
}

.ul3 {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.ul3>li {
  font-size: 14px;
  font-weight: 700;
  color: #636363;
  margin-bottom: 2px;
}

.ul3>li a {
  display: block;
  color: #636363;
  text-decoration: none;
  display: block;
  padding: 15px 40px 15px 30px;
  background: #f3f3f3;
  position: relative;
}

.ul3>li a:hover {
  color: #004180;
  background: #fafafa;
}

.ul3>li a:after {
  display: block;
  content: '';
  width: 15px;
  height: 15px;
  background: url(../images/li_st3.webp) 0 0 no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}

.ul3>li a:hover:after {
  background: url(../images/li_st3_hover.webp) 0 0 no-repeat;
}

.hl1 {
  margin-top: 30px;
  margin-bottom: 30px;
  height: 1px;
  background: #fafafa;
}

.ul4 {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  font-family: 'Raleway';
  font-size: 14px;
}

.ul4>li {
  font-size: 14px;
  color: #959595;
  border-top: 1px solid #ebebeb;
}

.ul4>li:first-child {
  border-top: none;
}

.ul4>li a {
  color: #959595;
  text-decoration: none;
  display: block;
  padding: 10px 30px 10px 20px;
  position: relative;
  line-height: 1.3;
  background: url(../images/li_st4.webp) 0 13px no-repeat;
}

.ul4>li a:hover {
  color: #004180;
  text-decoration: none;
  background-image: url(../images/li_st4_hover.webp);
}

.ul4>li a span {
  position: absolute;
  right: 0;
  top: 10px;
  color: #c2c2c2;
}

.ul4>li a:hover span {
  color: #004180;
}

.tabs3 {
  padding: 0;
  background: none;
  border-radius: 0;
  border: 1px solid #ebebeb;
  border-top: none;
  font-family: inherit;
  margin-bottom: 30px;
}

.tabs3_tabs {
  text-align: center;
}

.tabs3_tabs .ui-tabs-nav {
  padding: 0;
  display: block;
  font-family: 'Raleway';
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  border: none;
  border-radius: 0;
  background: none;
}

.tabs3_tabs .ui-tabs-nav li {
  margin: 0 !important;
  border: none;
  background: none;
  font-weight: 500;
  width: 50%;
}

.tabs3_tabs .ui-tabs-nav li.ui-tabs-active {
  margin: 0;
  padding: 0;
}

.tabs3_tabs .ui-tabs-nav .ui-tabs-anchor {
  color: #fff;
  padding: 15px 2px;
  background: #004180;
  float: none;
  display: block;
  border-top: 2px solid #fff;
}

.tabs3_tabs .ui-tabs-nav .ui-tabs-anchor:focus {
  outline: none;
}

.tabs3_tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  background: #fff;
  color: #004180;
  border-color: #004180;
}

.tabs3_content {
  padding: 15px;
}

.tabs3_content .ui-tabs-panel {
  padding: 0px;
}

.news1 {
  border-top: 1px solid #ebebeb;
  padding-top: 15px;
  padding-bottom: 15px;
}

.news1:first-child {
  border-top: none;
  padding-top: 0;
}

.news1 a {
  display: block;
  font-size: 13px;
  text-decoration: none;
}

.news1 a .txt1 {
  color: #959595;
  padding-bottom: 5px;
}

.news1 a:hover .txt1 {
  color: #004180;
}

.news1 a .txt2 {
  color: #c2c2c2;
  font-size: 11px;
}

.news1 a .txt2 span {
  color: #c4df9b;
}

.tags1 {
  display: block;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.tags1 li {
  display: inline-block;
  margin: 0 5px 5px 0px;
  float: left;
}

.tags1 li a {
  display: inline-block;
  background: none;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: 400;
  color: #c2c2c2;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  text-decoration: none;
  border: 1px solid #ececec;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.tags1 li a:hover {
  background: #004180;
  color: #fff;
  border-color: #004180;
}

.text_widget {
  margin-bottom: 30px;
  font-size: 13px;
}

.users {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.users li {
  display: block;
  float: left;
  padding: 0 2px 2px 0;
}

.users li a {
  display: block;
  text-decoration: none;
}

.users li a figure {
  position: relative;
}

.users li a figure img {
  position: relative;
}

.users li a figure em {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #004180;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.users li a:hover figure em {
  opacity: 1;
  filter: alpha(opacity=100);
}

.big_letter {
  font-size: 35px;
  font-weight: 900;
  padding: 2px 17px;
  background: #004180;
  float: left;
  margin-right: 20px;
  margin-bottom: 2px;
  color: #fff;
}


/*-----btn-----*/
.btn-default.btn0 {
  display: block;
  color: #fff;
  border: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  padding: 15px 10px;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
  background: #ee742c;
  position: relative;
  text-align: center;
  width: 100%;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  margin-top: 50px;
}

.btn-default.btn0:hover {
  color: #fff;
  background: #004180;
}

.btn-default.btn1 {
  display: inline-block;
  color: #fff;
  border: none;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  padding: 5px 20px;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
  background: #004180;
  position: relative;
  text-align: center;
  width: 100%;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
}

.btn-default.btn1:hover {
  color: #fff;
  background: #ee742c;
}

.btn-default.btn2 {
  display: inline-block;
  color: #898989;
  border: none;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  padding: 0px 15px 0 0;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: none;
  background: url(../images/arr1.webp) right center no-repeat;
}

.btn-default.btn2:hover {
  color: #004180;
  background: url(../images/arr1_hover.webp) right center no-repeat;
}

.btn-default.btn3 {
  display: inline-block;
  color: #fff;
  border: none;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  padding: 6px 20px;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
  background: #ee742c;
  position: relative;
  text-align: center;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  margin-top: 15px;
}

.btn-default.btn3:hover {
  color: #fff;
  background: #004180;
}

.btn-default.btn4 {
  display: inline-block;
  color: #fff;
  border: none;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  padding: 6px 20px;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
  background: #004180;
  position: relative;
  text-align: center;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  margin-top: 15px;
}

.btn-default.btn4:hover {
  color: #fff;
  background: #ee742c;
}




.btn-default.s1 {
  font-family: 'Raleway';
  display: inline-block;
  color: #fff;
  border: 1px solid #ececec;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 0;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  background: url(../images/type1.webp) center center no-repeat #fafafa;
  position: relative;
  letter-spacing: 0;
  width: 42px;
  height: 42px;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.btn-default.s1:hover {
  background: url(../images/type1_hover.webp) center center no-repeat #004180;
  border-color: #004180;
}

.btn-default.s2 {
  font-family: 'Raleway';
  display: inline-block;
  color: #fff;
  border: 1px solid #ececec;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 0;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  background: url(../images/type2.webp) center center no-repeat #fafafa;
  position: relative;
  letter-spacing: 0;
  width: 42px;
  height: 42px;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.btn-default.s2:hover {
  background: url(../images/type3_hover.webp) center center no-repeat #004180;
  border-color: #004180;
}

.btn-default.s3 {
  font-family: 'Raleway';
  display: inline-block;
  color: #fff;
  border: 1px solid #ececec;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 0;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  background: url(../images/type3.webp) center center no-repeat #fafafa;
  position: relative;
  letter-spacing: 0;
  width: 42px;
  height: 42px;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.btn-default.s3:hover {
  background: url(../images/type3_hover.webp) center center no-repeat #004180;
  border-color: #004180;
}








/* ============================= thumbnail ====================== */
.img-polaroid {
  position: relative;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.img-polaroid img {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.img-circle {
  position: relative;
  padding: 0px;
  background: none;
  border: none;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.img-circle img {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.thumbnail .caption {
  padding: 0;
  color: inherit;
}

.thumb1 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.thumb1.last {
  margin-bottom: 0px;
}

.thumb1 .thumbnail {
  padding: 0;
  border: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin-bottom: 0;
  background: none;
}

.thumb1 .thumbnail a {
  position: relative;
  display: block;
}

.thumb1 .thumbnail a figure {
  margin: 0;
  float: none;
  margin: 0px 0px 0px 0px;
  position: relative;
}

.thumb1 .thumbnail a figure img {
  width: 100%;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb1 .thumbnail a figure .img2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.thumb1 .thumbnail a:hover figure .img2 {
  opacity: 1;
  filter: alpha(opacity=100);
}

.thumb1 .thumbnail a:hover figure .img1 {
  opacity: 0;
  filter: alpha(opacity=0);
}

.thumb2 {
  margin-bottom: 20px;
}

.thumb2.last {
  margin-bottom: 0px;
}

.thumb2 .thumbnail {
  padding: 0;
  border: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin-bottom: 0;
  background: none;
}

.thumb2 .thumbnail a {
  display: block;
  text-decoration: none;
  text-align: center;
}

.thumb2 .thumbnail a figure {
  margin: 0;
  float: none;
  margin: 0px 0px 0px 0px;
  display: inline-block;
  position: relative;
}

.thumb2 .thumbnail a figure {
  padding: 20px 0;
  margin: 0;
}

.thumb2 .thumbnail a figure .why-icon {
  font-size: 60px;
  color: #999;
  transition: all 0.3s ease;
  display: inline-block;
}

.thumb2 .thumbnail a:hover figure .why-icon {
  color: #004180;
  transform: scale(1.1);
}

.thumb2 .thumbnail a .caption {
  padding-top: 15px;
}

.thumb2 .thumbnail a:hover .caption {}

.thumb2 .thumbnail a .caption .txt1 {
  font-family: 'Raleway';
  font-size: 21px;
  color: #464646;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb2 .thumbnail a:hover .caption .txt1 {
  color: #004180;
  text-decoration: none;
}

.thumb2 .thumbnail a .caption .txt2 {
  color: #959595;
  padding-bottom: 15px;
}

.thumb2 .thumbnail a .caption .txt3 {
  display: inline-block;
  color: #c2c2c2;
  font-size: 13px;
  padding-right: 15px;
  line-height: 20px;
  background: url(../images/btn1.webp) right center no-repeat;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb2 .thumbnail a:hover .caption .txt3 {
  color: #004180;
  background-image: url(../images/btn1_hover.webp);
}

.thumb3 {
  margin-bottom: 20px;
}

.thumb3.last {
  margin-bottom: 0px;
}

.thumb3 .thumbnail {
  padding: 0;
  border: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin-bottom: 0;
  background: none;
}

.thumb3 .thumbnail figure {
  margin: 0;
  float: none;
  margin: 0px 0px 0px 0px;
  position: relative;
  border: 4px solid #e0e0e0;
}

.thumb3 .thumbnail figure img {
  width: 100%;
}

.thumb3 .thumbnail figure .over {
  background: #004180;
  background: #004180;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb3 .thumbnail:hover figure .over {
  opacity: 1;
  filter: alpha(opacity=100);
}

.thumb3 .thumbnail .caption {
  padding-top: 20px;
}

.thumb3 .thumbnail .caption .txt1 {
  font-size: 21px;
  font-weight: 500;
  color: #464646;
  padding-bottom: 10px;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb3 .thumbnail:hover .caption .txt1 {
  color: #004180;
}

.thumb3 .thumbnail .caption .txt2 {
  color: #959595;
  padding-bottom: 15px;
}

.thumb4 {
  margin-bottom: 0px;
  margin-top: 0px;
}

.thumb4.last {
  margin-bottom: 0px;
}

.thumb4 .thumbnail {
  padding: 0;
  border: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin-bottom: 0;
  background: none;
  border-bottom: 3px solid transparent;
}

.thumb4 .thumbnail:hover {
  border-bottom-color: #004180;
}

.thumb4 .thumbnail figure {
  margin: 0;
  float: none;
  margin: 0px 0px 0px 0px;
  padding: 4px;
  background: #fafafa;
}

.thumb4 .thumbnail figure img {
  width: 100%;
}

.thumb4 .thumbnail .caption {
  background: #fafafa;
  padding: 20px;
}

.thumb4 .thumbnail .caption .txt1 {
  font-size: 19px;
  font-weight: 500;
  color: #636363;
  padding-bottom: 10px;
}

.thumb4 .thumbnail .caption .txt2 {}

.thumb4 .thumbnail .caption .txt3 {}

.thumb4 .thumbnail .caption .txt3 .left_side {
  float: left;
}

.thumb4 .thumbnail .caption .txt3 .right_side {
  float: right;
  padding-top: 5px;
}

.thumb4 .thumbnail .caption .txt3 .price {
  font-size: 21px;
  color: #ee742c;
  font-weight: 700;
}

.thumb4 .thumbnail .caption .txt3 .nums {
  font-size: 12px;
  color: #c2c2c2;
}

.thumb5 {
  margin-bottom: 0px;
  margin-top: 0px;
}

.thumb5.last {
  margin-bottom: 0px;
}

.thumb5 .thumbnail {
  padding: 0;
  border: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin-bottom: 0;
  background: none;
  border-bottom: 3px solid transparent;
}

.thumb5 .thumbnail:hover {
  border-bottom-color: #004180;
}

.thumb5 .thumbnail figure {
  margin: 0;
  float: none;
  margin: 0px 0px 0px 0px;
  position: relative;
}

.thumb5 .thumbnail figure img {
  width: 100%;
}

.thumb5 .thumbnail figure .over {
  background: #004180;
  background: #004180;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5px;
  width: 100%;
  color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb5 .thumbnail:hover figure .over {
  opacity: 1;
  filter: alpha(opacity=100);
}

.thumb5 .thumbnail figure .over .v1 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
}

.thumb5 .thumbnail figure .over .v1 span {
  display: inline-block;
  color: #fef697;
  font-size: 12px;
  padding-left: 5px;
  font-style: italic;
  font-weight: 400;
}

.thumb5 .thumbnail figure .over .v2 {
  font-size: 12px;
  color: #fff;
}

.thumb5 .thumbnail .caption {
  background: #fafafa;
  padding: 20px;
}

.thumb5 .thumbnail .caption .txt1 {
  font-size: 19px;
  font-weight: 500;
  color: #636363;
}

.thumb5 .thumbnail .caption .txt2 {
  font-size: 12px;
  color: #b2b1b1;
  padding-bottom: 0px;
}

.thumb5 .thumbnail .caption .txt3 {}

.thumb5 .thumbnail .caption .txt3 .left_side {
  float: left;
}

.thumb5 .thumbnail .caption .txt3 .right_side {
  float: right;
  padding-top: 15px;
}

.thumb5 .thumbnail .caption .txt3 .price {
  font-size: 21px;
  color: #ee742c;
  font-weight: 700;
}

.thumb5 .thumbnail .caption .txt3 .nums {
  font-size: 12px;
  color: #c2c2c2;
}

.thumb6 {
  margin-bottom: 0px;
  margin-top: 0px;
}

.thumb6.last {
  margin-bottom: 0px;
}

.thumb6 .thumbnail {
  padding: 0;
  border: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin-bottom: 0;
  background: none;
  border-bottom: 3px solid transparent;
}

.thumb6 .thumbnail:hover {
  border-bottom-color: #004180;
}

.thumb6 .thumbnail figure {
  margin: 0;
  float: none;
  margin: 0px 0px 0px 0px;
  position: relative;
}

.thumb6 .thumbnail figure img {
  width: 100%;
}

.thumb6 .thumbnail figure .over {
  background: #004180;
  background: #004180;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5px;
  width: 100%;
  color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.thumb6 .thumbnail:hover figure .over {
  opacity: 1;
  filter: alpha(opacity=100);
}

.thumb6 .thumbnail figure .over .v1 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
}

.thumb6 .thumbnail figure .over .v1 span {
  display: inline-block;
  color: #fef697;
  font-size: 12px;
  padding-left: 5px;
  font-style: italic;
  font-weight: 400;
}

.thumb6 .thumbnail figure .over .v2 {
  font-size: 12px;
  color: #fff;
}

.thumb6 .thumbnail .caption {
  background: #fafafa;
  padding: 20px;
}

.thumb6 .thumbnail .caption .txt1 {
  font-size: 19px;
  font-weight: 500;
  color: #636363;
}

.thumb6 .thumbnail .caption .txt2 {
  font-size: 12px;
  color: #b2b1b1;
  padding-bottom: 0px;
}

.thumb6 .thumbnail .caption .txt3 {}

.thumb6 .thumbnail .caption .txt3 .left_side {
  float: left;
}

.thumb6 .thumbnail .caption .txt3 .right_side {
  float: right;
  padding-top: 15px;
}

.thumb6 .thumbnail .caption .txt3 .price {
  font-size: 21px;
  color: #ee742c;
  font-weight: 700;
}

.thumb6 .thumbnail .caption .txt3 .nums {
  font-size: 12px;
  color: #c2c2c2;
}





/*================= Contacts =========================*/
#note {}

.notification_error {
  color: #ee742c;
  padding-bottom: 10px;
}

.notification_ok {
  text-align: left;
  padding-bottom: 10px;
}

#ajax-contact-form .form-group {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 20px;
}

#ajax-contact-form .form-group label {
  color: #272727;
  font-weight: 400;
  display: none;
}

#ajax-contact-form .form-control {
  height: 48px;
  padding: 13px 12px;
  font-size: 14px;
  line-height: 20px;
  color: #959595;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

#ajax-contact-form .form-control:focus {
  color: #004180;
  border-color: #004180;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(28, 187, 180, .3);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(28, 187, 180, .3);
}

#ajax-contact-form textarea.form-control {
  height: auto;
}

#ajax-contact-form .form-group.capthca {
  float: left;
  margin-right: 30px;
}

#ajax-contact-form .form-group.capthca input {
  width: 170px;
}

#ajax-contact-form .form-group.img {
  float: left;
}

#ajax-contact-form .form-group.img img {
  width: 170px;
  height: 38px;
}

.btn-default.btn-cf-submit {
  display: block;
  background: #004180;
  color: #fff;
  font-family: 'Raleway';
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border: none;
  text-transform: uppercase;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
}

.btn-default.btn-cf-submit:hover {
  color: #fff;
  background: #ee742c;
}

/*================= Contacts3 =========================*/
#note3 {}

.notification_error3 {
  color: #ee742c;
  padding-bottom: 10px;
}

.notification_ok3 {
  text-align: left;
  padding-bottom: 10px;
}

#ajax-contact-form3 .form-group {
  margin-left: 0;
  margin-right: 0;
}

#ajax-contact-form3 .form-group label {
  color: #141414;
  font-weight: 400;
  text-transform: uppercase;
  display: none;
}

#ajax-contact-form3 .form-control {
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 20px;
  color: #959595;
  background: #fff;
  ;
  border: 1px solid #e8e8e8;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

#ajax-contact-form3 .form-control:focus {
  border-color: #004180;
  color: #004180;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(28, 187, 180, .3);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(28, 187, 180, .3);
}

#ajax-contact-form3 textarea.form-control {
  height: 144px;
}

#ajax-contact-form3 .form-group.capthca {
  float: left;
  margin-right: 20px;
}

#ajax-contact-form3 .form-group.capthca input {
  width: 170px;
}

#ajax-contact-form3 .form-group.img {
  float: left;
}

#ajax-contact-form3 .form-group.img img {
  width: 170px;
  height: 38px;
}

.btn-default.btn-cf-submit3 {
  display: block;
  background: #ee742c;
  color: #fff;
  font-family: 'Raleway';
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border: none;
  text-transform: uppercase;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  moz-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2) inset;
}

.btn-default.btn-cf-submit3:hover {
  color: #fff;
  background: #004180;
}












/*----- media queries ------*/
/* Large desktop */
@media (min-width: 2560px) {

  #slider_wrapper {
    background: url(../images/slider_large.jpg) top center no-repeat;
    background-size: cover;
    padding-bottom: 280px;
    padding-top: 370px;
  }

  #home {
    height: 1005px;
  }



}

@media (min-width: 1200px) {}

/* Default landscape and desktop to large desktop */
@media (max-width: 1199px) {}

@media (min-width: 992px) and (max-width: 1199px) {
  #happy1 .img1 {
    margin-top: 220px;
  }

  .form2_flights .select1_inner {
    width: 55px;
  }

  .form3 .sel {
    width: 90px;
  }









}

/* Portrait tablet to landscape and desktop */
@media (max-width: 991px) {

  .form1 .select1_wrapper,
  .form1 .input1_wrapper {
    margin-bottom: 30px;
  }

  #slider_wrapper {
    padding-bottom: 50px;
    padding-top: 170px;
  }

  #home {
    height: 551px;
  }

  #front_tabs {
    margin-top: -47px;
  }

  #happy1 .img1 {
    margin-top: 10px;
  }

  #company1 .img1 {
    margin-bottom: -30px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 38px;
  }

  .pager .prev {
    display: block;
    margin-bottom: 10px;
  }

  .pager .prev>a {
    float: none;
  }

  .pager .next {
    display: block;
    margin-top: 10px;
  }

  .pager .next>a {
    float: none;
  }













}

@media (min-width: 768px) and (max-width: 991px) {

  .navbar_ .nav>li {
    margin-left: 20px;
  }

  #parallax1 .txt1 {
    font-size: 38px;
  }

  .form2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form2_flights label {
    font-size: 12px;
    margin-right: 10px;
  }

  .form2_flights .select1_inner {
    width: 44px;
  }

  .form3 .txt label {
    font-size: 12px;
  }

  .form3 .select1_wrapper {
    margin-right: 10px;
  }

  .form3 .sel {
    width: 95px;
  }

  .form3 .buttons {
    display: none;
  }

  .checkbox1-custom-label span {
    display: none;
  }













}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {

  .slider .slider_inner .txt1 {
    font-size: 20px;
  }

  .slider .slider_inner .txt2 {
    font-size: 35px;
  }

  .slider .slider_inner .txt3 {
    font-size: 14px;
  }

  .email1 {
    float: none;
    margin-right: 0;
    border-right: none;
    margin-bottom: 10px;
  }

  .phone1 {
    float: none;
    margin-bottom: 10px;
  }

  .social_wrapper {
    float: none;
    margin-bottom: 10px;
  }

  .lang1 {
    border: none;
    float: none;
  }

  #front_tabs {
    margin-top: 0;
  }

  #front_tabs .tabs_wrapper {
    margin-left: -15px;
    margin-right: -15px;
  }

  #front_tabs .form1 {
    padding: 15px;
  }

  #slider_wrapper {
    padding-bottom: 10px;
    padding-top: 100px;
  }

  #home {
    height: 362px;
  }

  .slider_pagination {
    padding-top: 110px;
  }

  .tabs_tabs .ui-tabs-nav {
    display: block;
  }

  .tabs_tabs .ui-tabs-nav li {
    margin-left: 0 !important;
    display: block;
    float: none;
    margin-bottom: 1px !important;
  }







  .navbar_ {
    float: none;
    margin-bottom: 0;
    margin-left: -15px;
    margin-right: -15px;
    display: block;
    height: auto;
    padding-right: 0;
    background: none;
  }

  .navbar-collapse_ {
    clear: both;
  }

  .navbar_ .nav {
    display: block;
    background: #fff;
    padding-right: 0;
  }

  .navbar_ .nav>li {
    float: none;
    background: none;
    padding-left: 0;
    border-top: none;
    margin-left: 0;
  }

  .navbar_ .nav>li:first-child {
    border-top: none;
  }

  .navbar_ .nav>li>a {
    margin-bottom: 0;
    margin-top: 0;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
  }

  .navbar_ .nav>li.active>a,
  .navbar_ .nav>li.active>a:hover,
  .navbar_ .nav>li.active>a:focus,
  .navbar_ .nav>li>a:hover,
  .navbar_ .nav>li>a:focus,
  .navbar_ .nav>li.sfHover>a,
  .navbar_ .nav>li.sfHover>a:hover {
    background: #fff;
  }

  .sub-menu ul {
    position: relative;
    left: 0;
    top: 0;
    text-align: center;
    box-shadow: none;
    moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin-top: 0;
  }

  .sub-menu li a {}

  #parallax1 .txt1 {
    font-size: 28px;
  }

  .btn-default.btn0 {
    margin-top: 20px;
  }

  .bot2_wrapper .left_side {
    float: none;
  }

  .bot2_wrapper .right_side {
    float: none;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 32px;
  }

  .form2_flights label {
    float: none;
    margin-right: 0;
    margin-top: 0;
  }

  .form2_flights .select1_inner {
    float: none;
    width: auto;
  }

  .form3 .select1_wrapper {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .form3 .sel {
    width: auto;
  }

  .form3 .buttons {
    margin-bottom: 0;
  }

  .form2_hotels .select1_wrapper {
    margin-top: 20px;
  }

  .form2_hotels .select1_wrapper:first-child {
    margin-top: 0px;
  }

  .comment-block.left1 {
    margin-left: 20px;
  }











}

@media (min-width: 481px) and (max-width: 767px) {}

/* Landscape phones and down */
@media (max-width: 480px) {

  .popular .popular_inner .txt3 .nums {
    display: none;
  }









}

@media (min-width: 2559px) {

  .video-background-wrapper {
    max-height: 995px;
  }
}