
/*
* 1. common styles
*/
body {
  font-family: "PT Sans";
  color: #616161;
  font-size: 16px;
  line-height: 30px;
  overflow-x: hidden;
}

a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.thm-gray-bg {
  background-color: #f2f2f2;
}

.block-title {
  margin-bottom: 55px;
}

.block-title__title {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #1b181a;
}

.block-title__line {
  margin-top: 20px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 35px;
  text-align: center;
}

.block-title__line:before, .block-title__line:after {
  content: '';
  height: 3px;
  background-color: #ed2c41;
  border-radius: 1.5px;
  text-align: center;
}

.block-title__line:before {
  width: 10px;
  text-align: center;
}

.block-title__line:after {
  width: 20px;
  text-align: center;
}

.block-title__text {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  margin-top: -10px;
  text-align: justify;
  font-weight: 700;
}

.block-title.text-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thm-btn {
  border: none;
  outline: none;
  display: inline-block;
  vertical-align: middle;
  background-color: #ed2c41;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 15.5px 75.5px;
  border-radius: 30.5px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.thm-btn:hover {
  background-color: #1b181a;
  color: #fff;
}

.post-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-pagination a {
  border-radius: 50%;
  background-color: #f2f2f2;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 8px 19px;
  color: #1b181a;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.post-pagination a:hover, .post-pagination a.active {
  background-color: #1b181a;
  color: #fff;
}

.post-pagination a + a {
  margin-left: 15px;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-image: url(../images/travelpro/TravelProFooter-300x71.png);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
}

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #ed2c41;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  display: none;
  border-radius: 50%;
  transition: all .4s ease;
}

.scroll-to-top i {
  color: #fff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: #1b181a;
}

.scroll-to-top:hover i {
  color: #fff;
}

/* Cursor Style */
.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.5;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: '';
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: '';
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*
* 2. header styles
*/
.header-navigation {
  background-color: transparent;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  background-color: transparent;
}

.header-navigation .container {
  background: transparent;
  position: relative;
  display: block;
}

.header-navigation .container .logo-box {
  float: left;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-navigation .container .navbar-brand {
  height: auto;
  margin: 0;
  line-height: 1;
}

.header-navigation .container .menu-toggler {
  display: none;
}

.header-navigation .container .right-side-box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}

.header-navigation .main-navigation {
  float: none;
  text-align: center;
}

@media (min-width: 1200px) {
  .header-navigation .main-navigation {
    display: block !important;
  }
}

.header-navigation ul.navigation-box {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-navigation ul.navigation-box li a .sub-nav-toggler {
  display: none;
}

.header-navigation ul.navigation-box > li {
  position: relative;
  padding: 33px 0;
  display: inline-block;
  vertical-align: middle;
  /* Second Level Menu */
  /* Thrid Level Menu */
}

.header-navigation ul.navigation-box > li + li {
  margin-left: 65px;
}

.header-navigation ul.navigation-box > li:first-child {
  padding-left: 0;
}

.header-navigation ul.navigation-box > li:last-child {
  padding-right: 0;
}

.header-navigation ul.navigation-box > li > a {
  padding: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: relative;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.header-navigation ul.navigation-box > li > a > .active-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  width: 20px;
  top: calc(50% - 1.5px);
  right: calc(100% + 10px);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.header-navigation ul.navigation-box > li > a > .active-line:before, .header-navigation ul.navigation-box > li > a > .active-line:after {
  content: '';
  height: 3px;
  background-color: #ed2c41;
}

.header-navigation ul.navigation-box > li > a > .active-line:before {
  width: 5px;
}

.header-navigation ul.navigation-box > li > a > .active-line:after {
  width: 10px;
}

.header-navigation ul.navigation-box > li.current > a,
.header-navigation ul.navigation-box > li:hover > a {
  color: #fff;
}

.header-navigation ul.navigation-box > li.current > a > .active-line,
.header-navigation ul.navigation-box > li:hover > a > .active-line {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header-navigation ul.navigation-box > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 911;
  float: left;
  min-width: 220px;
  padding: 0px 0px;
  text-align: left;
  list-style: none;
  background-color: #1b181a;
  background-clip: padding-box;
  opacity: 0;
  border-radius: 0px;
  visibility: hidden;
  -webkit-transition: opacity .4s ease, visibility .4s ease;
  transition: opacity .4s ease, visibility .4s ease;
  -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
  .header-navigation ul.navigation-box > li > .sub-menu {
    display: block !important;
  }
}

.header-navigation ul.navigation-box > li > .sub-menu.right-align {
  left: auto;
  right: 0;
}

.header-navigation ul.navigation-box > li > .sub-menu.center-align {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header-navigation ul.navigation-box > li > .sub-menu > li {
  display: block;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header-navigation ul.navigation-box > li > .sub-menu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-navigation ul.navigation-box > li > .sub-menu > li > a {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  padding: 12px 30px;
  display: block;
  line-height: 26px;
  white-space: nowrap;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header-navigation ul.navigation-box > li > .sub-menu > li:hover > a {
  color: #fff;
  background: #ed2c41;
}

.header-navigation ul.navigation-box > li:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.header-navigation ul.navigation-box > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-navigation ul.navigation-box > li > ul > li {
  /* no more nested showen */
}

.header-navigation ul.navigation-box > li > ul > li > .sub-menu {
  position: absolute;
  top: 0%;
  left: 100%;
  z-index: 911;
  float: left;
  min-width: 220px;
  padding: 0px 0px;
  text-align: left;
  list-style: none;
  background-color: #1b181a;
  background-clip: padding-box;
  opacity: 0;
  border-radius: 0px;
  visibility: hidden;
  -webkit-transition: opacity .4s ease, visibility .4s ease;
  transition: opacity .4s ease, visibility .4s ease;
  -webkit-box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
  .header-navigation ul.navigation-box > li > ul > li > .sub-menu {
    display: block !important;
  }
}

.header-navigation ul.navigation-box > li > ul > li > .sub-menu.right-align {
  left: auto;
  right: 100%;
}

.header-navigation ul.navigation-box > li > ul > li > .sub-menu.center-align {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header-navigation ul.navigation-box > li > ul > li > .sub-menu > li {
  display: block;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header-navigation ul.navigation-box > li > ul > li > .sub-menu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-navigation ul.navigation-box > li > ul > li > .sub-menu > li > a {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  padding: 12px 30px;
  display: block;
  line-height: 26px;
  white-space: nowrap;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header-navigation ul.navigation-box > li > ul > li > .sub-menu > li:hover > a {
  color: #fff;
  background: #ed2c41;
}

.header-navigation ul.navigation-box > li > ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-navigation ul.navigation-box > li > ul > li ul {
  display: none;
}

.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #1b181a;
  -webkit-box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.stricked-menu ul.navigation-box > li {
  padding-top: 18px;
  padding-bottom: 18px;
}

.stricked-menu.stricky-fixed {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.site-header__header-one {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1200px) {
  .site-header__header-one .container {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .site-header__header-one .header-navigation .container .logo-box {
    left: 40px;
  }
}

.site-header__header-one .header-navigation .container .right-side-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-header__header-one .header-navigation .container .right-side-box a {
  color: #fff;
  font-size: 25px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.site-header__header-one .header-navigation .container .right-side-box a:hover {
  color: #ed2c41;
}

.site-header__header-one .header-navigation .container .right-side-box a + a {
  margin-left: 50px;
}

@media (min-width: 1200px) {
  .site-header__header-one .header-navigation .container .right-side-box {
    right: 40px;
  }
}


/*
* 3. slider styles
*/
.banner-wrapper {
  position: relative;
  width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .banner-wrapper {
    overflow: hidden;
  }
}

.banner-wrapper .owl-carousel .owl-item img {
  width: auto;
}

.banner-wrapper .owl-theme .owl-dots {
  line-height: 1em;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner-wrapper .owl-theme .owl-dots .owl-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner-wrapper .owl-theme .owl-dots .owl-dot span {
  background-color: #949494;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin: 0 2.5px;
  vertical-align: middle;
}

.banner-wrapper .owl-theme .owl-nav {
  margin: 0;
}

.banner-wrapper .owl-theme .owl-dots .owl-dot.active span,
.banner-wrapper .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #ed2c41;
}

[class*=banner-carousel] .owl-nav {
  display: none;
}

[class*=banner-carousel].no-dots .owl-dots {
  display: none !important;
}

.banner-one .container {
  position: relative;
  padding-top: 305px;
  padding-bottom: 305px;
}

.banner-one__slide {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner-one__light-color {
  color: #fff;
}

.banner-one__title {
  font-family: 'Rage Italic';
  font-size: 160px;
  color: #fff;
  letter-spacing: -0.08em;
  line-height: 140px;
  margin: 0;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

.banner-one__text {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  line-height: 36px;
  margin-top: 10px;
  margin-bottom: 50px;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

.banner-one__btn {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

.banner-one .active .banner-one__tag-line {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

.banner-one .active .banner-one__title {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.banner-one .active .banner-one__text {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.banner-one .active .banner-one__btn {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.banner-one .active .banner-one__moc {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

[class*=banner-one__nav-] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 59px;
  height: 59px;
  border-radius: 50%;
  z-index: 91;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1b181a;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

[class*=banner-one__nav-]:hover {
  background-color: #fff;
  color: #ed2c41;
}

[class*=banner-one__nav-] i {
  font-size: 24px;
}

.banner-one__nav-left {
  left: 5%;
}

.banner-one__nav-right {
  right: 5%;
}

.banner-one__moc {
  position: absolute;
  right: 0;
  top: -4%;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
  border: 20px solid #fff;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

.banner-one__texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: calc(100% + 70px);
  background-image: url(../images/banner-texture.png);
}


@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}




/*
* 5. footer styles
*/
.site-footer {
  background-color: #1b181a;
  padding-top: 113px;
  padding-bottom: 113px;
}

.site-footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.site-footer__copy a {
  color: #ed2c41;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.site-footer__copy a:hover {
  color: #fff;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          margin-top: 10px;
          justify-content: space-between;
}

.site-footer__social a {
  width: 59px;
  height: 59px;
  background-color: #2d2a2c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.site-footer__social a + a {
  margin-left: 10px;
}

.site-footer__social a i {
  color: inherit;
}

.site-footer__social a:hover {
  background-color: #ed2c41;
  color: #fff;
}




/*
* 8. contact styles
*/
.contact-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-one .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-one__form {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 740px;
  width: 100%;
  margin-left: -10px;
  margin-right: -10px;
}

.contact-one__form [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.contact-one__form input,
.contact-one__form textarea {
  border: none;
  outline: none;
  display: block;
  background-color: #f2f2f2;
  font-size: 16px;
  color: #616161;
  width: 100%;
  height: 79px;
  margin-bottom: 20px;
  padding-left: 30px;
}

.contact-one__form input::-webkit-input-placeholder,
.contact-one__form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #616161;
}

.contact-one__form input::-moz-placeholder,
.contact-one__form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #616161;
}

.contact-one__form input:-ms-input-placeholder,
.contact-one__form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #616161;
}

.contact-one__form input:-moz-placeholder,
.contact-one__form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #616161;
}

.contact-one__form textarea {
  padding-top: 10px;
  height: 189px;
}

.map-one {
  padding-bottom: 60px;
  padding-top: 515px;
  position: relative;
}

.map-one .google-map__contact {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  top: 0;
  left: 0;
}

.map-one__single {
  padding: 42px 50px;
  background-color: #ffffff;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.map-one__single:hover {
  background-color: #ed2c41;
}

.map-one__single:hover h3{
  font-weight: bold;
}

.map-one__single:hover .map-one__title,
.map-one__single:hover .map-one__list li i,
.map-one__single:hover .map-one__list li {
  color: #fff;
  font-size:18px;
  font-weight: 700;
}



.map-one__list {
  margin: 0;
  margin-top: 30px;
}

.map-one__list li {
  position: relative;
  padding-left: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.map-one__list li + li {
  margin-top: 7px;
}

.map-one__list li i {
  font-size: 15px;
  color: #ed2c41;
  position: absolute;
  top: 9px;
  left: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.map-one__list li i.fa-envelope {
  font-size: 15px;
}



.team-one {
  padding-top: 110px;
  padding-bottom: 90px;
}




/*
* 18. service styles
*/
.service-one {
  padding-top: 110px;
  padding-bottom: 120px;
}

.service-one .owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

.service-one .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}

.service-one .owl-theme .owl-dots {
  line-height: 1em;
  margin-top: 30px;
}

.service-one .owl-theme .owl-dots .owl-dot span {
  background-color: #949494;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin: 0 2.5px;
}

.service-one .owl-theme .owl-nav {
  margin: 0;
}

.service-one .owl-theme .owl-dots .owl-dot.active span,
.service-one .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #ed2c41;
}

.service-one__carousel .owl-item:nth-child(odd) {
  background-color: #fff;
}

.service-one__carousel .owl-item:nth-child(even) {
  background-color: #f9f9f9;
}

.service-one__single {
  text-align: center;
  padding-top: 60.5px;
  padding-bottom: 60.5px;
}

.service-one__title {
  color: #1b181a;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 45%;
  margin-left: auto;
  margin-right: auto;
}

.service-one__title a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  text-transform: uppercase;
}

.service-one__text {
  margin: 0;
  font-size: 16px;
  line-height: 30px;
  color: #616161;
  width: 67%;
  margin-left: auto;
  margin-right: auto;
}



.service-one__home-two {
  position: relative;
  padding-top: 95px;
}

.service-one__moc {
  position: absolute;
  bottom: 0;
  right: 0;
}

.service-one__5-col-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -9px;
  margin-right: -9px;
}

.service-one__5-col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
          padding-left: 55px;
    padding-right: 20px;
  position: relative;
  z-index: 9;
}

.service-one__5-col .service-one__single {
  background-color: #fff;
  padding: 48.5px 0;
  width: 285px;
}

.service-one__5-col .service-one__single > img {
  width: 90px;
}

.service-one__5-col .service-one__title {
  font-size: 20px;
  line-height: 1.3em;
  width: 71%;
  margin-top: 20px;
  margin-bottom: 10px;
}







.mb-25{
  margin-bottom: 25px;
}



.service1 {
  color: #1b181a;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 45%;
  margin-left: auto;
  margin-right: auto;
}

.service1 a {
  color: inherit;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service1-c .owl-item:nth-child(odd) {
  background-color: #fff;
}

.service1-c .owl-item:nth-child(even) {
  background-color: #f9f9f9;
}


.red-text{
  color: red;
}

.services-height .owl-item {
  min-height: 510px !important;
  float: left !important;
  
}

.service-imgs{
  height: 100px;
  width: 100px;
  
}

.contact-footer{
  padding: 42px 50px;
  color: #fff;
}

.footer-title{
  margin: 0;
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.sub-footer{
  display: flex;
  width: 100%;
  
  justify-content: space-around;
  float: inline-end;
}

.services-cards{
  display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.service1-card {
  text-align: center;
  padding-top: 60.5px;
  padding-bottom: 60.5px;
  width: 100%;
}

.service2-card {
  text-align: center;
  padding-top: 60.5px;
  padding-bottom: 60.5px;
  width: 100%;
}

.service3-card {
  text-align: center;
  padding-top: 60.5px;
  padding-bottom: 60.5px;
  width: 100%;
}


.service-card-title{
color: #1b181a;
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 45%;
    margin-left: auto;
    margin-right: auto;

}

.service-card-title a{
  color: #000;
  }

  .service-card-text{

    margin: 0;
    font-size: 20px;
    line-height: 30px;
    color: #616161;
    width: 67%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-us-text{
    margin-bottom: 50px;
  }

  .gallery {
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: 1320px;
    flex-wrap: wrap;
    margin: 25px auto;
    /* gap: 14px; */
  }
  .gallery a {
    display: flex;
  }
  .gallery img {
    width: 200px;
    height: 220px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
    margin: 10px 10px;
  }
  
  .gallery img:hover {
    transform: scale(1.1);
  }
  
  .sets .hide,
  .sets .pophide {
    width: 0%;
    opacity: 0;
  }
  
  .closeBtn {
    position: absolute;
    font-size: 22px;
    font-weight: 500;
    right: 25px;
    top: 25px;
    color: white;
    transition: 0.2s linear;
    padding: 8px 40px;
    border-radius: 25px;
    background: #3330;
    border: #fff;
    
  }
  .closeBtn:hover {
    cursor: pointer;
    background: white;
    color: black;
    outline: 2px solid #000;
  }
  
  .openDiv {
    width: 100%;
    height: 100vh;
    background: #000000e7;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    z-index: 9999;
  }
  .imgPreview {
    width: 70%;
    object-fit: scale-down;
    max-height: 40vw;
    height: auto;
  }
  .prevButton,
  .nextButton {
    transition: 0.2s linear;
    padding: 10px 35px;
    font-size: 18px;
    border: none;
    color: white;
    background: #0005;
    border-radius: 10px;
    border: 1px solid white;
    margin: 10px;
  }
  .prevButton:hover,
  .nextButton:hover {
    background: #fff;
    color: black;
  }

  .filter {
    text-align: center;
    max-width: 1050px;
    margin: auto;
  }
  
  .btn-active{
    color: #fff !important;
  }
  
  .btn:hover,.btn-active {
    background: #ed2c41;
    color: #fff;
  }


  .ser-card {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background: #f0f0f0;
    max-width: 250px;
    margin-top: 100px;
    > *:not(:last-child) {
        margin-bottom: 15px;
    }
    span {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f0f0f0;
        padding: 10px;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        text-align: center;
        font-size: 60px;
        margin-top: -120px;
        border: 10px solid white;
        transition: color .5s ease-out, transform .5s ease-in-out;
    }
    h1 {
        font-size: 1.5em;
        text-transform: uppercase;
        color: #c00;
        margin: 10px 0 0;
    }
    p {
        margin: 0;
    }
    a {
        position: relative;
        align-self: flex-end;
        font-size: 1.2em;
        padding-right: 1.2em;
        text-decoration: none;
        color: black;
        font-weight: bold;
        &::before {
            position: absolute;
            right: 0;
            color: #c00;
        }
        &:hover {
            color: #c00;
            cursor: pointer;
        }
    }
}




.ser-card {
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
  max-width: 380px;
    margin-top: 100px;
    height: 350px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.services-card .ser-card {
  background-color: #fff;
  border-radius: 0;
  /* border: solid;
    border-color: #ed2c4196; */
}

.services-card .card-icon {
  margin-top: -6rem;
  margin-bottom: 2rem;
  background: white;
    border-radius: 100%;
    width: 160px;
    height: 160px;
    /* border-style: solid;
    border-color: #ed2c4196; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.services-card .card-title {
  font-weight: bold;
  text-transform: uppercase;
}

.services-card {
  display: flex;
  text-align: -webkit-center;
}


.globe-icon{
  margin-top: 27px;
}

.size-icon{
  margin-top: 15px;
}

.staff-icon{
  margin-top: 24px;
}
