@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,100;1,300;1,400;1,700;1,900&family=Titillium+Web:ital,wght@0,200;0,400;1,200;1,400&display=swap");
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Titillium Web", sans-serif;
}

h1 {
  font-size: 38px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

h5 {
  font-size: 16px;
  font-weight: 400;
}

.mt-50 {
  margin-top: 50px;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

/**---Variable---**/
/**---Variable---**/
body {
  margin: 0;
  padding: 0;
  font-family: "Titillium Web", sans-serif;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a {
  text-decoration: none;
}

a:hover {
  color: #000;
}

p {
  font-size: 16px;
  line-height: 22px;
  color: #727272;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-80 {
  padding-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }
  .pb-120 {
    padding-bottom: 80px;
  }
}
.tittle {
  padding-bottom: 50px;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.tittle h3 {
  font-size: 50px;
  text-transform: capitalize;
  color: #00356a;
  font-weight: 700;
  text-align: center;
}
.tittle p {
  font-size: 16px;
  color: #727272;
  font-weight: 500;
  line-height: 30px;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .tittle h3 {
    font-size: 42px;
  }
  .tittle p {
    font-size: 14px;
    line-height: 25px;
  }
}
.bg-one {
  background: #f9f9f9;
}

/*----Menu Header Start-----*/
.header-section {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.menu-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  transition: all 0.9s;
  background: #00356a;
}

.header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: all 0.9s;
  padding: 20px 0;
}
.header-wrapper .logo-menu {
  max-width: 200px;
}
.header-wrapper .logo-menu img {
  max-width: 100%;
}
.header-wrapper .main-menu {
  position: relative;
  display: flex;
  align-items: center;
}
.header-wrapper .main-menu li {
  transition: all 0.6s;
  position: relative;
}
.header-wrapper .main-menu li:not(:last-child) {
  margin-right: 30px;
}
.header-wrapper .main-menu li a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.header-wrapper .main-menu li a:hover {
  color: #fff;
}
.header-wrapper .main-menu li a i {
  margin-left: 5px;
  font-size: 14px;
}
.header-wrapper .main-menu li .sub-menu {
  display: none;
  transform: translateY(15px);
}
@media (min-width: 992px) {
  .header-wrapper .main-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 250px;
    transition: all 0.8s;
    background: #F0F8FF;
    padding: 10px 10px 10px;
    box-shadow: -1px 7px 19px -14px rgb(66, 106, 184);
    border-radius: 5px;
    display: block;
    opacity: 0;
    visibility: hidden;
  }
}
.header-wrapper .main-menu li .sub-menu li {
  margin-right: 0;
  transition: all 0.4s ease-in-out;
}
.header-wrapper .main-menu li .sub-menu li a {
  color: var(--head-color);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: 15px 0;
}
.header-wrapper .main-menu li .sub-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(18, 19, 21, 0.1215686275);
}
.header-wrapper .main-menu li .sub-menu li :hover {
  margin-left: 10px;
}
.header-wrapper .main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header-wrapper .main-menu .active a {
  color: #B7256E;
}
.header-wrapper .main-menu .logo-menu-three {
  width: 130px;
  height: 85px;
}
.header-wrapper .main-menu .logo-menu-three img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-wrapper .main-menu .btn-wrapper .menu-btns-one {
  text-decoration: none;
  padding: 15px 40px;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  border-radius: 4px;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  border: 2px solid;
  margin-right: 20px;
}
.header-wrapper .main-menu .btn-wrapper .menu-btns-one:hover {
  background: linear-gradient(90deg, #EB566C 0%, #B7256E 100%);
  border: 2px solid #B7256E;
}
.header-wrapper .main-menu .btn-wrapper .menu-btns-two {
  text-decoration: none;
  padding: 15px 40px;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  border-radius: 4px;
  background: linear-gradient(90deg, #EB566C 0%, #B7256E 100%);
  transition: all 0.5s ease-in-out;
  border: 2px solid #B7256E;
}
.header-wrapper .main-menu .btn-wrapper .menu-btns-two:hover {
  background: transparent;
  border: 2px solid #fff;
}

/*----Menu Header Start-----*/
@media screen and (max-width: 1199px) {
  .header-wrapper .logo-menu {
    max-width: 122px;
  }
  .header-wrapper .main-menu .btn-wrapper {
    margin-left: 0px;
  }
  .header-wrapper .main-menu li a {
    font-size: 17px;
  }
}
@media screen and (max-width: 991px) {
  .header-section {
    padding: 10px 0;
  }
  .menu-btn-wrapper {
    display: none;
  }
  .header-wrapper {
    padding: 12px 0px;
  }
  .header-wrapper .logo-menu {
    padding: 0px 0px;
  }
  .main-menu {
    position: absolute;
    top: 100%;
    width: 100%;
    display: inline !important;
    left: 0;
    z-index: 999;
    padding: 15px 15px;
    background: #00356a;
    transition: all 2s !important;
    transform-origin: top;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
  .main-menu:not(.active) {
    display: none !important;
    transition: all 2s;
  }
  .main-menu li {
    width: 100%;
  }
  .main-menu li:not(:last-child) {
    border-bottom: 1px solid rgb(198, 206, 210);
    margin-right: 0 !important;
  }
  .main-menu li a {
    display: block;
    padding: 14px 0px;
  }
  .main-menu .btn-wrapper {
    margin-top: 15px;
  }
  .main-menu .btn-wrapper .cmn--btn-3 {
    margin-top: 14px;
  }
  .main-menu .active a {
    color: #454545;
  }
  .header-bar {
    position: relative;
    width: 25px;
    height: 20px;
  }
  .header-bar span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: inline-block;
    transition: all 0.3s;
    left: 0;
    background: var(--head-color);
  }
  .header-bar span:first-child {
    top: 0;
    background: #fff;
  }
  .header-bar span:nth-child(2) {
    top: 44%;
    background: #fff;
  }
  .header-bar span:last-child {
    bottom: 0;
    background: #fff;
  }
  .header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
  }
  .header-bar.active span:nth-child(2) {
    opacity: 0;
  }
  .header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
  }
  .header-bar:hover {
    cursor: pointer;
  }
  .header-wrapper .main-menu li .sub-menu {
    background: #fff;
    position: relative;
    transform: translateY(2px);
  }
  .header-wrapper .main-menu li .sub-menu li a {
    color: #00356a;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 347px) {
  .header-wrapper .main-menu .btn-wrapper .menu-btns-one {
    margin-bottom: 20px;
  }
}
/*=============== Home Page One Here ===============

 /*========== Banner-section Start ==========*/
.banner-section {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url(../../assets/images/video/Pexels\ Videos\ 2141798.mp4) no-repeat center center/cover;
  background-size: cover;
}
.banner-section .banner-items video {
  min-width: 100%;
  min-height: 100vh;
  z-index: 1;
}
.banner-section .banner-items .overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: 3px 3px;
  z-index: 2;
}
.banner-section .banner-items .banner-content {
  text-align: center;
  max-width: 875px;
  margin: 0 auto;
  position: absolute;
  top: 200px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  width: 100%;
  color: #fff;
}
.banner-section .banner-items .banner-content h6 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  color: #fff;
}
.banner-section .banner-items .banner-content h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  color: #fff;
}
.banner-section .banner-items .banner-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  color: #fff;
}
.banner-section .banner-items .banner-content .banner-button {
  margin-top: 40px;
  position: relative;
}
.banner-section .banner-items .banner-content .banner-button .btns {
  padding: 15px 30px;
  background: #00356a;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
}
.banner-section .banner-items .banner-content .banner-button .btns:hover {
  background: #fff;
  color: #00356a;
}

@media screen and (max-width: 991px) {
  .banner-section .banner-items .banner-content h6 {
    font-size: 22px;
  }
  .banner-section .banner-items .banner-content h1 {
    font-size: 60px;
  }
  .banner-section .banner-items .banner-content p {
    font-size: 14px;
  }
  .banner-section .banner-items .banner-content .banner-button .btns {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .banner-section .banner-items .banner-content h6 {
    font-size: 20px;
  }
  .banner-section .banner-items .banner-content h1 {
    font-size: 30px;
    line-height: 28px;
  }
  .banner-section .banner-items .banner-content p {
    font-size: 14px;
  }
  .banner-section .banner-items .banner-content .banner-button .btns {
    font-size: 14px;
  }
  .banner-section .banner-items .banner-content .banner-button {
    margin-top: 30px;
}
}

@media screen and (max-width: 450px){
.banner-section .banner-items .banner-content {
    top: 170px !important;
}
}
/*========== Banner-section End ==========*/
/*========== Best Place Start ==========*/
.best-place-section {
  overflow: hidden;
}
.best-place-section .place-items {
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  border-radius: 10px;
}
.best-place-section .place-items .place-thump {
  overflow: hidden;
}
.best-place-section .place-items .place-thump img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.best-place-section .place-items .place-content {
  padding: 30px 20px;
  text-align: center;
}
.best-place-section .place-items .place-content h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.best-place-section .place-items .place-content h4 a {
  color: #454545;
  transition: all 0.4s ease-in-out;
}
.best-place-section .place-items .place-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #727272;
  margin-top: 10px;
}
.best-place-section .place-items .place-content .place-button {
  margin-top: 20px;
}
.best-place-section .place-items .place-content .place-button .place-btns {
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
  color: #454545;
  border: 1px solid #00356a;
  padding: 10px 20px;
}
.best-place-section .place-items .place-content .place-button .place-btns:hover {
  background: #00356a;
  color: #fff;
  border: 1px solid #00356a;
}
.best-place-section .place-items:hover .place-thump img {
  transform: scale(1.2);
}
.best-place-section .place-items:hover .place-content h4 a {
  color: #00356a;
}

@media screen and (max-width: 768px) {
  .best-place-section .place-items .place-content h4 {
    font-size: 18px;
  }
  .best-place-section .place-items .place-content p {
    font-size: 14px;
    line-height: 28px;
  }
  .best-place-section .place-items .place-content .place-button .place-btns {
    font-size: 14px;
  }
}
/*========== Best Place End ==========*/
/*========== Special Packges Start ==========*/
.special-packges-section {
  overflow: hidden;
}
.special-packges-section .packges-items {
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  border-radius: 5px;
}
.special-packges-section .packges-items .packges-thump {
  position: relative;
  overflow: hidden;
}
.special-packges-section .packges-items .packges-thump .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 40px;
  line-height: 40px;
  background: #00356a;
  text-align: center;
  color: #fff;
}
.special-packges-section .packges-items .packges-thump img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.special-packges-section .packges-items .packges-content {
  padding: 30px 20px;
}
.special-packges-section .packges-items .packges-content h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 30px;
}
.special-packges-section .packges-items .packges-content h4 a {
  color: #454545;
  transition: all 0.4s ease-in-out;
}
.special-packges-section .packges-items .packges-content span {
  color: #727272;
  font-size: 16px;
  font-weight: 500;
}
.special-packges-section .packges-items .packges-content i {
  margin-right: 10px;
}
.special-packges-section .packges-items .packges-content .details {
  margin-top: 15px;
}
.special-packges-section .packges-items .packges-content .details p {
  color: #727272;
  line-height: 28px;
}
.special-packges-section .packges-items .packges-content .details span {
  color: #454545;
  font-weight: 600;
}
.special-packges-section .packges-items .packges-content .packges-button {
  margin-top: 25px;
}
.special-packges-section .packges-items .packges-content .packges-button .packges-btns {
  padding: 15px 30px;
  background: #00356a;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
  width: 100%;
  border: 2px solid #00356a;
}
.special-packges-section .packges-items .packges-content .packges-button .packges-btns:hover {
  background: #fff;
  color: #00356a;
  border: 2px solid #00356a;
}
.special-packges-section .packges-items:hover .packges-thump img {
  transform: scale(1.2);
}
.special-packges-section .packges-items:hover .packges-content h4 a {
  color: #00356a;
}

@media screen and (max-width: 768px) {
  .special-packges-section .packges-items .packges-content h4 {
    font-size: 18px;
  }
  .special-packges-section .packges-items .packges-content span {
    font-size: 14px;
  }
  .special-packges-section .packges-items .packges-content .packges-button .packges-btns {
    font-size: 14px;
  }
}
/*========== Special Packges End ==========*/
/*========== Traveler Section Here ==========*/
.traveler-section {
  overflow: hidden;
  background: url(../../assets/images/traveler/bg-one.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.traveler-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}
.traveler-section .traveler-items {
  padding: 200px 0px;
  position: relative;
}
.traveler-section .traveler-items .traveler-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.traveler-section .traveler-items .traveler-content h2 {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.traveler-section .traveler-items .traveler-content p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 30px;
}
.traveler-section .traveler-items .traveler-content .button-items {
  margin-top: 25px;
}
.traveler-section .traveler-items .traveler-content .button-items .traveler-btns-one {
  padding: 15px 30px;
  background: #00356a;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
}
.traveler-section .traveler-items .traveler-content .button-items .traveler-btns-one:hover {
  background: #fff;
  color: #00356a;
}
.traveler-section .traveler-items .traveler-content .button-items .traveler-btns-two {
  padding: 15px 30px;
  background: #fff;
  display: inline-block;
  color: #00356a;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
  margin-left: 20px;
}
.traveler-section .traveler-items .traveler-content .button-items .traveler-btns-two:hover {
  background: #00356a;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .traveler-section .traveler-items .traveler-content h2 {
    font-size: 28px;
  }
  .traveler-section .traveler-items .traveler-content p {
    font-size: 14px;
  }
  .traveler-section .traveler-items .traveler-content .button-items .traveler-btns-one {
    font-size: 14px;
  }
  .traveler-section .traveler-items .traveler-content .button-items .traveler-btns-two {
    font-size: 14px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 383px) {
  .traveler-section .traveler-items .traveler-content .button-items .traveler-btns-two {
    margin-left: initial;
    margin-top: 15px;
  }
}
/*========== Traveler Section End ==========*/
/*========== Counter Up Here ==========*/
.counter-up-section .counter-wrapper {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  padding: 64px 70px;
  transform: translateY(-120px);
  margin-bottom: -120px;
  z-index: 9;
  position: relative;
}
.counter-up-section .counter-wrapper .counter-up-items .counterup-text {
  text-align: center;
}
.counter-up-section .counter-wrapper .counter-up-items .counterup-text .counterup {
  font-size: 50px;
  font-weight: 700;
  color: #454545;
  margin-bottom: 10px;
}
.counter-up-section .counter-wrapper .counter-up-items .counterup-text span {
  font-size: 50px;
  font-weight: 700;
  color: #454545;
}
.counter-up-section .counter-wrapper .counter-up-items .counterup-text p {
  font-size: 18px;
  color: #727272;
  text-transform: uppercase;
}

/*========== Offer Scetion Start ==========*/
.offer-section {
  overflow: hidden;
}
.offer-section .offer-items .offer-thump {
  overflow: hidden;
}
.offer-section .offer-items .offer-thump img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.offer-section .offer-items .offer-content {
  background-color: #ffffff;
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  margin-top: -75px;
  padding: 30px;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 10px;
}
.offer-section .offer-items .offer-content span {
  font-weight: 700;
  text-transform: uppercase;
}
.offer-section .offer-items .offer-content span a {
  color: #454545;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.offer-section .offer-items .offer-content span a i {
  margin-right: 5px;
}
.offer-section .offer-items .offer-content h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
}
.offer-section .offer-items .offer-content h4 a {
  color: #454545;
  transition: all 0.4s ease-in-out;
}
.offer-section .offer-items .offer-content .package-price {
  font-size: 16px;
  font-weight: 600;
  color: #00356a;
  margin-top: 10px;
}
.offer-section .offer-items .offer-content .package-price ins {
  list-style: none;
  text-decoration: none;
  margin-left: 5px;
}
.offer-section .offer-items:hover .offer-thump img {
  transform: scale(1.2);
}
.offer-section .offer-items:hover .offer-content a {
  color: #00356a;
}

@media screen and (max-width: 768px) {
  .offer-section .offer-items .offer-content span a {
    font-size: 14px;
  }
  .offer-section .offer-items .offer-content span h4 {
    font-size: 18px;
  }
  .offer-section .offer-items .offer-content span .package-price {
    font-size: 14px;
  }
}
/*========== Offer Scetion End ==========*/
/*========== Testimonial Scetion Start ==========*/
.testimonial-section {
  overflow: hidden;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0;
}
.testimonial-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(240, 248, 255, 0.6);
}

.testimonial-item {
  position: relative;
}
.testimonial-item .testimonial-inner {
  background: #fff;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  border: 1px solid #ebebeb;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.5s;
}
.testimonial-item .testimonial-inner .testimonial-icon {
  margin-bottom: 28px;
  text-align: left;
}
.testimonial-item .testimonial-inner .testimonial-icon i {
  font-size: 56px;
  color: #727272;
}
.testimonial-item .testimonial-inner p {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.3;
}
.testimonial-item .testimonial-inner .ratting {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}
.testimonial-item .testimonial-inner .ratting li:not(:last-child) {
  margin-right: 10px;
}
.testimonial-item .testimonial-inner .ratting li i {
  color: #727272;
  font-size: 20px;
}
.testimonial-item .testimonial-inner .client-name {
  margin-top: 20px;
}
.testimonial-item .testimonial-inner .client-name .thumb {
  width: 100px;
  height: 100px;
  text-align: center;
  margin: 0 auto;
}
.testimonial-item .testimonial-inner .client-name .thumb img {
  width: 100%;
  border-radius: 100%;
  height: 100%;
}
.testimonial-item .testimonial-inner .client-name .cont {
  text-align: center;
  margin-top: 15px;
}
.testimonial-item .testimonial-inner .client-name .cont .name {
  font-size: 18px;
  color: #454545;
  text-align: center;
  font-weight: 600;
}
.testimonial-item .testimonial-inner .client-name .cont p {
  font-size: 16px;
  color: #727272;
  font-weight: 500;
  margin: 10px 0px;
  line-height: 30px;
}
.testimonial-item:hover testimonial-inner testimonial-thumb {
  transform: scale(1.1);
}

.test-button-wrapper .accordion-item {
  background-color: transparent !important;
  background: none;
  border: none;
}
.test-button-wrapper .accordion-item .accordion-header {
  text-align: center;
}
.test-button-wrapper .accordion-item .accordion-header .accordion-button {
  position: relative;
  display: inline;
  align-items: center;
  width: 100px;
  border-radius: 50%;
  padding: 0 0;
  font-size: 1rem;
  text-align: left;
  background: none !important;
  border: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
.test-button-wrapper .accordion-item .accordion-header .accordion-button .thumb {
  width: 100px;
  height: 100px;
  display: block;
}
.test-button-wrapper .accordion-item .accordion-header .accordion-button .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.test-button-wrapper .accordion-body {
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
  padding: 0 0;
  margin-bottom: 0;
  max-width: 400px;
  margin: auto;
}
.test-button-wrapper .accordion-button:not(.collapsed) {
  color: #00356a;
  background-color: transparent !important;
  box-shadow: none !important;
}
.test-button-wrapper .accordion-button:focus {
  z-index: 3;
  border-color: unset !important;
  outline: 0;
  box-shadow: none !important;
}
.test-button-wrapper .accordion-button:not(.collapsed)::after {
  display: none;
}
.test-button-wrapper .accordion-button::after {
  display: none;
}
.test-button-wrapper .thumb {
  position: relative;
}
.test-button-wrapper .thumb i {
  color: #454545;
  font-size: 22px;
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translate(-50%);
}

.testimonial-main-wrapper .testimonial-item {
  margin: 25px 0px 15px;
}

@media screen and (max-width: 768px) {
  .testimonial-section .testimonial-items .testi-content h4 {
    font-size: 18px;
    color: #454545;
    font-weight: 600;
  }
  .testimonial-section .testimonial-items .testi-content p {
    font-size: 14px;
    line-height: 28px;
    color: #727272;
    font-weight: 500;
  }
}
@media screen and (max-width: 1199px) {
  .testimonial-section {
    padding: 90px 0;
  }
  .testimonial-item .testimonial-inner .testimonial-icon {
    top: -10%;
  }
  .testimonial-item .testimonial-inner p {
    font-size: 20px;
  }
  .testimonial-item:hover testimonial-inner testimonial-thumb {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .testimonial-section {
    padding: 50px 0;
  }
  .listign-section {
    margin-bottom: -40px;
  }
  .test-button-wrapper .accordion-body {
    margin: 0 auto;
  }
  .testimonial-item .testimonial-inner p {
    font-size: 18px;
  }
}
/*========== Testimonial Scetion End ==========*/
/*========== Blog Scetion Start ==========*/
.blog-section {
  overflow: hidden;
}
.blog-section .blog-items {
  background-color: #ffffff;
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  border-radius: 5px;
}
.blog-section .blog-items .blog-thump {
  overflow: hidden;
}
.blog-section .blog-items .blog-thump img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.blog-section .blog-items .blog-content {
  padding: 30px 20px;
}
.blog-section .blog-items .blog-content h4 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 28px;
  line-height: 30px;
}
.blog-section .blog-items .blog-content h4 a {
  font-size: 20px;
  color: #454545;
  transition: all 0.4s ease-in-out;
}
.blog-section .blog-items .blog-content .comments-area {
  display: flex;
  margin: 10px 0px;
}
.blog-section .blog-items .blog-content .comments-area li {
  font-size: 15px;
  color: #727272;
  font-weight: 500;
  margin-right: 10px;
  text-transform: capitalize;
}
.blog-section .blog-items .blog-content .comments-area li i {
  margin-right: 8px;
}
.blog-section .blog-items .blog-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
.blog-section .blog-items .blog-content .btns {
  display: inline-block;
  color: #454545;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
  border: 1px solid #00356a;
  padding: 10px 20px;
  margin-top: 10px;
}
.blog-section .blog-items .blog-content .btns:hover {
  color: #fff;
  background: #00356a;
  border: 1px solid #00356a;
}
.blog-section .blog-items:hover .blog-thump img {
  transform: scale(1.2);
}
.blog-section .blog-items:hover .blog-content h4 a {
  color: #00356a;
}

@media screen and (max-width: 1240px) {
  .blog-section .blog-items .blog-content .comments-area li {
    font-size: 14px;
  }
  .blog-section .blog-items .blog-content .comments-area li i {
    margin-right: 5px;
  }
}
@media screen and (max-width: 768px) {
  .blog-section {
    overflow: hidden;
  }
  .blog-section .blog-items .blog-content h4 a {
    font-size: 18px;
  }
  .blog-section .blog-items .blog-content p {
    font-size: 14px;
  }
  .blog-section .blog-items .blog-content .btns {
    font-size: 14px;
  }
}
@media screen and (max-width: 404px) {
  .blog-section .blog-items .blog-content .comments-area {
    flex-wrap: wrap;
  }
  .blog-section .blog-items .blog-content .comments-area li {
    margin-bottom: 10px;
  }
}
/*========== Newsletter Scetion Start ==========*/
.newsletter {
  overflow: hidden;
  padding: 70px 0px;
  background: #00356a;
}
.newsletter .form-content h5 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}
.newsletter .form {
  position: relative;
}
.newsletter .form input {
  color: #00356a;
  width: 100%;
  padding: 22px 35px;
  border: none;
  outline: none;
  border-radius: 10px;
}
.newsletter .form i {
  position: absolute;
  top: 30px;
  left: 14px;
  color: #00356a;
}
.newsletter .form .effect-button {
  position: absolute;
  top: 22px;
  right: 6px;
}
.newsletter .form .effect-button .effect-btns {
  border: none;
  outline: none;
  border-radius: 5px;
  background: none;
  color: #fff !important;
  padding: 16px 40px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  background-image: -webkit-linear-gradient(145deg, rgb(27, 211, 228) 0%, rgb(20, 201, 192) 100%);
  box-shadow: 0px 18px 30px 0px rgba(100, 159, 205, 0.36);
}

@media screen and (max-width: 991px) {
  .newsletter .form input {
    font-size: 15px;
  }
  .newsletter .form .effect-button .effect-btns {
    padding: 15px 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .newsletter .form-content h5 {
    font-size: 28px;
  }
}
@media screen and (max-width: 500px) {
  .newsletter .form-content h5 {
    font-size: 28px;
  }
  .newsletter .form input {
    font-size: 14px;
  }
  .newsletter .form .effect-button .effect-btns {
    padding: 10px 10px;
    font-size: 14px;
  }
}
/*========== Newsletter Scetion End ==========*/
/*========== Footer Scetion Start ==========*/
.footer-section {
  overflow: hidden;
  background-color: rgba(34, 54, 69, 0.98);
}
.footer-section .footer-top .widget-items .footer-head {
  margin-bottom: 30px;
}
.footer-section .footer-top .widget-items .footer-head .header-content {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}
.footer-section .footer-top .widget-items .footer-content-area p {
  font-weight: 500;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}
.footer-section .footer-top .widget-items .footer-content-area .quick-link li {
  margin-bottom: 10px;
}
.footer-section .footer-top .widget-items .footer-content-area .quick-link li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.footer-section .footer-top .widget-items .footer-content-area .quick-link li a:hover {
  color: #00356a;
}
.footer-section .footer-top .widget-items .footer-content-area .contact .list {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.footer-section .footer-top .widget-items .footer-content-area .contact .list i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
}
.footer-section .footer-top .widget-items .footer-content-area .contact .list span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.footer-section .border-area {
  border-top: 1px solid #00356a;
}
.footer-section .border-area .footer-bottom {
  padding: 30px 0px;
  text-align: center;
}
.footer-section .border-area .footer-bottom p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.footer-section .border-area .footer-bottom p a {
  color: #00356a;
  letter-spacing: 2px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .footer-section .footer-top .widget-items .footer-head .header-content {
    font-size: 28px;
  }
  .footer-section .footer-top .widget-items .footer-content-area p {
    font-size: 14px;
  }
  .footer-section .footer-top .widget-items .footer-content-area .quick-link li a {
    font-size: 16px;
  }
  .footer-section .footer-top .widget-items .footer-content-area .contact .list i {
    font-size: 14px;
  }
  .footer-section .footer-top .widget-items .footer-content-area .contact .list span {
    font-size: 14px;
  }
  .footer-section .border-area .footer-bottom p {
    font-size: 14px;
  }
}
/*========== Footer Scetion End ==========*/
/*=============== Home Page One End ===============*/
/*=============== Home Page Two Here ===============*/
/*========== Banner Scetion Two Start ==========*/
.banner-two {
  overflow: hidden;
}
.banner-two .banner-items {
  position: relative;
  padding: 250px 0px;
  background: url(../../assets/images/banner/banner2.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
}
.banner-two .banner-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}
.banner-two .banner-items .banner-content {
  text-align: center;
  max-width: 870px;
  margin: 0 auto;
}
.banner-two .banner-items .banner-content h6 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  color: #fff;
}
.banner-two .banner-items .banner-content h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  color: #fff;
}
.banner-two .banner-items .banner-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  color: #fff;
}
.banner-two .banner-items .banner-content .banner-button {
  margin-top: 40px;
  position: relative;
}
.banner-two .banner-items .banner-content .banner-button .btns {
  padding: 15px 30px;
  background: transparent;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
  border: 1px solid #fff;
}
.banner-two .banner-items .banner-content .banner-button .btns:hover {
  background: #fff;
  color: #00356a;
  border: 1px solid #fff;
}
.banner-two .banner-items.style-two {
  background: url(../../assets/images/banner/banner5.jpg) no-repeat center center;
}
.banner-two .banner-items.style-three {
  background: url(../../assets/images/banner/banner6.jpg) no-repeat center center;
}

@media screen and (max-width: 991px) {
  .banner-two .banner-items {
    padding: 150px 0px;
  }
  .banner-two .banner-items .banner-content h6 {
    font-size: 22px;
  }
  .banner-two .banner-items .banner-content h1 {
    font-size: 50px;
  }
  .banner-two .banner-items .banner-content p {
    font-size: 14px;
  }
  .banner-two .banner-items .banner-content .banner-button .btns {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .banner-two .banner-items {
    padding: 100px 0px;
  }
  .banner-two .banner-items .banner-content h6 {
    font-size: 20px;
  }
  .banner-two .banner-items .banner-content h1 {
    font-size: 38px;
    line-height: 55px;
  }
  .banner-two .banner-items .banner-content .banner-button .btns {
    font-size: 14px;
  }
}
/*========== Banner Scetion Two End ==========*/
/*========== About Section start ==========*/
.about-section {
  overflow: hidden;
}
.about-section .about-content h2 {
  font-size: 42px;
  color: #454545;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: 55px;
}
.about-section .about-content p {
  color: #727272;
  font-weight: 500;
  line-height: 30px;
}
.about-section .about-content .about-button {
  margin-top: 30px;
}
.about-section .about-content .about-button .about-btn {
  padding: 15px 30px;
  background: #fff;
  display: inline-block;
  color: #00356a;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
  border: 1px solid #00356a;
}
.about-section .about-content .about-button .about-btn:hover {
  background: #00356a;
  color: #fff;
  border: 1px solid #00356a;
}
.about-section .about-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .about-section {
    overflow: hidden;
  }
  .about-section .about-content h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .about-section .about-content p {
    font-size: 14px;
  }
  .about-section .about-content .about-button .about-btn {
    font-size: 14px;
  }
}
/*========== About Section End ==========*/
/*========== Top Tour Start ==========*/
.top-tour {
  overflow: hidden;
}
.top-tour .tour-items {
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  border-radius: 5px;
}
.top-tour .tour-items .tour-thumb {
  position: relative;
  overflow: hidden;
}
.top-tour .tour-items .tour-thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.top-tour .tour-items .tour-thumb .button-effcet {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.top-tour .tour-items .tour-thumb .button-effcet:hover {
  opacity: 1;
}
.top-tour .tour-items .tour-thumb .button-effcet .button {
  margin-top: 33%;
  text-align: center;
}
.top-tour .tour-items .tour-thumb .button-effcet .button .btns {
  text-decoration: none;
  color: #fff;
  padding: 12px 20px;
  line-height: 46px;
  border-radius: 4px;
  font-size: 16px;
  transform-origin: right;
  transition: all 0.3s ease;
  background: transparent;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #fff;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
}
.top-tour .tour-items .tour-thumb .button-effcet .button .btns:hover {
  background: #00356a;
  color: #fff;
  border: 1px solid #00356a;
}
.top-tour .tour-items .tour-content {
  text-align: center;
  padding: 20px 10px;
}
.top-tour .tour-items .tour-content h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.top-tour .tour-items .tour-content h4 a {
  color: #454545;
  transition: all 0.4s ease-in-out;
}
.top-tour .tour-items .tour-content span {
  font-weight: 500;
  color: #727272;
  font-size: 16px;
}
.top-tour .tour-items .tour-content .icon {
  display: flex;
  justify-content: center;
  margin: 10px 0px;
}
.top-tour .tour-items .tour-content .icon li {
  margin-right: 10px;
}
.top-tour .tour-items .tour-content .icon li i {
  color: #00356a;
}
.top-tour .tour-items .tour-content ins {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: #00356a;
}
.top-tour .tour-items:hover .tour-thumb img {
  transform: scale(1.2);
}
.top-tour .tour-items:hover .tour-content h4 a {
  color: #00356a;
}

@media screen and (max-width: 768px) {
  .top-tour .tour-items .tour-content h4 {
    font-size: 18px;
  }
  .top-tour .tour-items .tour-content span {
    font-size: 14px;
  }
  .top-tour .tour-items .tour-content ins {
    font-size: 16px;
  }
}
/*========== Top Tour End ==========*/
/*------Gallery Section Start--------*/
.gallery-section {
  overflow: hidden;
  position: relative;
}
.gallery-section .galley-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-section .galley-wrapper .gallery-items .g-items {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 25px;
}
.gallery-section .galley-wrapper .gallery-items .g-items img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  opacity: 0;
  transition: all 0.7s;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content .title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 10%;
  display: block;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link a:not(:last-child) {
  margin-right: 10px;
}
.gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link a i {
  color: #fff;
  font-size: 17px;
}
.gallery-section .galley-wrapper .gallery-items .g-items:hover {
  cursor: pointer;
}
.gallery-section .galley-wrapper .gallery-items .g-items:hover .link-solcial {
  opacity: 1;
}
.gallery-section .galley-wrapper .gallery-items-two {
  margin: 0 20px;
}

@media screen and (max-width: 1199px) {
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .gallery-section .galley-wrapper {
    flex-wrap: wrap;
  }
  .gallery-section .galley-wrapper .gallery-items-two {
    margin: 0;
  }
  .gallery-section .galley-wrapper .gallery-items-three {
    margin-top: -25px;
  }
  .gallery-section .galley-wrapper .gallery-items {
    width: 48.5%;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items {
    margin: 20px;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 580px) {
  .gallery-section .galley-wrapper {
    flex-wrap: wrap;
  }
  .gallery-section .galley-wrapper .gallery-items-two {
    margin: 0;
  }
  .gallery-section .galley-wrapper .gallery-items-three {
    margin-top: 0px;
  }
  .gallery-section .galley-wrapper .gallery-items {
    width: 95%;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items {
    margin: 10px;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items:not(:last-child) {
    margin-bottom: 25px;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
/*========== Gallery Scetion End ==========*/
/*========== Popular Hotel Start ==========*/
.popular-hotel {
  overflow: hidden;
}
.popular-hotel .popular-items {
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  border-radius: 5px;
  overflow: hidden;
}
.popular-hotel .popular-items .popular-thumb {
  position: relative;
  overflow: hidden;
}
.popular-hotel .popular-items .popular-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}
.popular-hotel .popular-items .popular-thumb .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 40px;
  line-height: 40px;
  background: #00356a;
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.popular-hotel .popular-items .popular-content {
  padding: 30px 20px;
}
.popular-hotel .popular-items .popular-content span {
  font-weight: 700;
  text-transform: uppercase;
}
.popular-hotel .popular-items .popular-content span a {
  color: #454545;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.popular-hotel .popular-items .popular-content span a i {
  margin-right: 5px;
}
.popular-hotel .popular-items .popular-content span a:hover {
  color: #00356a;
}
.popular-hotel .popular-items .popular-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  margin-top: 10px;
}
.popular-hotel .popular-items .popular-content h4 a {
  color: #454545;
  transition: all 0.4s ease-in-out;
}
.popular-hotel .popular-items:hover .popular-thumb img {
  transform: scale(1.2);
}
.popular-hotel .popular-items:hover .popular-content a {
  color: #00356a;
}

@media screen and (max-width: 768px) {
  .popular-hotel .popular-items .popular-content span a {
    font-size: 14px;
  }
  .popular-hotel .popular-items .popular-content h4 {
    font-size: 18px;
  }
}
/*========== Popular Hotel End ==========*/
/*=============== Home Page Two End ===============*/
/*=============== Home Page Three Here ===============*/
/*========== Banner Scetion Two Start ==========*/
.banner-two.banner-style-three {
  background: url(../../assets/images/banner/banner3.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.banner-two.banner-style-three::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}
.banner-two.banner-style-three .banner-items {
  position: relative;
  background: none;
}
.banner-two.banner-style-three .banner-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
}
.banner-two.banner-style-three .banner-items .banner-content h6 {
  color: #fff;
}
.banner-two.banner-style-three .banner-items .banner-content h1 {
  color: #fff;
}
.banner-two.banner-style-three .banner-items .banner-content p {
  color: #fff;
}
.banner-two.banner-style-three .banner-items .banner-content .banner-button .btns {
  border: 1px solid #fff;
  background: transparent;
}
.banner-two.banner-style-three .banner-items .banner-content .banner-button .btns:hover {
  border: 1px solid #fff;
  background: #fff;
  color: #00356a;
}

/*========== Banner Scetion Two End ==========*/
/*=============== Booking Section Start ===============*/
.wrapper {
  overflow: hidden;
  background-color: #00356a;
}

.masthead {
  text-align: center;
}

.main {
  box-sizing: border-box;
  padding: 2rem;
  margin: 0 auto;
}

.foot {
  clear: both;
}

.foot p {
  text-align: center;
}

.formBox {
  padding-bottom: 1rem;
}

.buttons {
  padding-bottom: 1rem;
}

.buttons input {
  margin-top: 3rem;
  background-color: #ffffff;
  border: 2px solid #fff;
}

label {
  display: block;
  font-size: 1.3rem;
  color: #fff;
  fill: #fff;
}

input, select, textarea {
  padding: 0.4rem;
  width: 80%;
  font-size: 1rem;
  outline: none;
  border: 2px solid #fff;
}

@media screen and (min-width: 500px) {
  .formBox {
    width: 50%;
    float: left;
  }
  .col {
    width: 50%;
    float: left;
  }
  .buttons input {
    margin-top: 7rem;
  }
}
.booking-wrap {
  display: flex;
  width: 50%;
  justify-content: center;
}

@media screen and (min-width: 780px) {
  .formBox {
    width: 20%;
    float: left;
  }
  .buttons {
    clear: both;
  }
  .buttons input {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .booking-wrap {
    width: 100%;
  }
}
.formBox input{
	width:99%;
}
#btnSubmit {
    margin-top: 31px;
}
/*=============== Booking Section End ===============*/
/*========== Popular Tour Here ==========*/
.popular-tour {
  overflow: hidden;
}
.popular-tour .popular-tour-items {
  overflow: hidden;
}
.popular-tour .popular-tour-items .popular-thumb {
  position: relative;
}
.popular-tour .popular-tour-items .popular-thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.popular-tour .popular-tour-items .popular-thumb .price {
  position: absolute;
  top: 0;
  left: 0;
  background: #00356a;
  width: 100px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.popular-tour .popular-tour-items .popular-thumb .price a {
  color: #fff;
}
.popular-tour .popular-tour-items .popular-thumb .content {
  padding: 30px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.popular-tour .popular-tour-items .popular-thumb .content h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
.popular-tour .popular-tour-items .popular-thumb .content h4 a {
  color: #fff;
  transition: all 0.4s ease-in-out;
  font-size: 20px;
}
.popular-tour .popular-tour-items .popular-thumb .content .list {
  display: flex;
  margin: 10px 0px;
  color: #fff;
}
.popular-tour .popular-tour-items .popular-thumb .content .list li {
  margin-right: 10px;
}
.popular-tour .popular-tour-items .popular-thumb .content .list li i {
  margin-right: 3px;
}
.popular-tour .popular-tour-items:hover .popular-thumb img {
  transform: scale(1.3);
}
.popular-tour .popular-tour-items:hover .content h4 a {
  color: #00356a;
}

@media screen and (max-width: 768px) {
  .popular-tour .popular-tour-items .popular-thumb .content h4 {
    font-size: 18px;
  }
  .popular-tour .popular-tour-items .popular-thumb .content .list {
    font-size: 14px;
  }
}
/*========== Popular Tour End ==========*/
/*========== Video Scetion Here ==========*/
.video-section {
  overflow: hidden;
  background: url(../../assets/images/video/video-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.video-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}
.video-section .video-items {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}
.video-section .video-items .video-button {
  background-color: #00356a;
  display: inline-block;
  cursor: pointer;
  border-radius: 100%;
  font-size: 18px;
  line-height: 100px;
  width: 100px;
  height: 100px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.video-section .video-items .video-button i {
  color: #fff;
}
.video-section .video-items .video-content {
  position: relative;
}
.video-section .video-items .video-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 60px;
  margin-bottom: 10px;
}
.video-section .video-items .video-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .video-section .video-items .video-button {
    font-size: 14px;
    line-height: 80px;
    width: 80px;
    height: 80px;
  }
  .video-section .video-items .video-content h2 {
    font-size: 28px;
    line-height: 40px;
  }
}
/*========== Video Scetion End ==========*/
/*========== Team Scetion Here ==========*/
.team-section {
  overflow: hidden;
}
.team-section .team-items {
  border: 1px solid rgba(10, 151, 197, 0.13);
  transition: all 0.4s ease-in-out;
}
.team-section .team-items .team-thumb {
  overflow: hidden;
}
.team-section .team-items .team-thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.team-section .team-items .team-content {
  padding: 20px 10px;
  text-align: center;
}
.team-section .team-items .team-content h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-section .team-items .team-content h4 a {
  color: #454545;
  transition: all 0.4s ease-in-out;
}
.team-section .team-items .team-content p {
  font-size: 16px;
  color: #727272;
  font-weight: 500;
}
.team-section .team-items .team-content .icon-list {
  display: flex;
  justify-content: center;
}
.team-section .team-items .team-content .icon-list li {
  margin-right: 15px;
}
.team-section .team-items .team-content .icon-list li a i {
  font-size: 20px;
  color: #00356a;
}
.team-section .team-items:hover .team-content {
  box-shadow: 1px 4px 10px #b2eeef;
}
.team-section .team-items:hover .team-content h4 a {
  color: #00356a;
}
.team-section .team-items:hover .team-thumb img {
  transform: scale(1.3);
}

@media screen and (max-width: 768px) {
  .team-section .team-items .team-content h4 {
    font-size: 18px;
  }
  .team-section .team-items .team-content p {
    font-size: 14px;
  }
  .team-section .team-items .team-content .icon-list li a i {
    font-size: 18px;
    color: #00356a;
  }
}
/*========== Team Scetion End ==========*/
/*=============== Home Page Three End ===============*/
/*=============== About Page Here ===============*/
/*========== Banner Scetion Here ==========*/
.banner-two.style-about {
  background: url(../../assets/images/banner/banner4.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  height: 100%;
}
.banner-two.style-about .page-tittle {
  padding: 250px 0px;
  max-width: 685px;
  text-align: left;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
}
.banner-two.style-about .page-tittle .banner-tittle {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
}
.banner-two.style-about .page-tittle .left-content {
  display: flex;
  align-items: center;
}
.banner-two.style-about .page-tittle .left-content .home {
  font-size: 24px;
  font-weight: 500;
  margin-right: 20px;
  text-transform: capitalize;
  position: relative;
}
.banner-two.style-about .page-tittle .left-content .home a {
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.banner-two.style-about .page-tittle .left-content .home a:hover {
  color: #00356a;
}
.banner-two.style-about .page-tittle .left-content li {
  margin-right: 20px;
  text-transform: capitalize;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.banner-two.style-about .page-tittle .left-content li i {
  font-size: 16px;
}
.banner-two.style-about .page-tittle .left-content li a {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .banner-two.style-about .page-tittle {
    padding: 150px 0px;
  }
  .banner-two.style-about .page-tittle .banner-tittle {
    font-size: 60px;
  }
  .banner-two.style-about .page-tittle .left-content .home {
    font-size: 22px;
  }
  .banner-two.style-about .page-tittle .left-content a {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .banner-two.style-about .page-tittle {
    padding: 100px 0px;
  }
  .banner-two.style-about .page-tittle .banner-tittle {
    font-size: 42px;
    text-align: center;
  }
  .banner-two.style-about .page-tittle .left-content {
    justify-content: center;
  }
  .banner-two.style-about .page-tittle .left-content .home {
    font-size: 18px;
  }
  .banner-two.style-about .page-tittle .left-content a {
    font-size: 18px;
  }
}
/*========== Banner Scetion End ==========*/
/*=============== About Page End ===============*/
/*=============== Blog Page Here ===============*/
/*========== Blog Start ==========*/
.blog-page {
  overflow: hidden;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory {
  box-shadow: 0px 2px 8px rgba(202, 205, 219, 0.42);
  padding: 20px;
  margin-bottom: 40px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-title {
  margin-bottom: 15px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-title h4 {
  font-weight: 600;
  color: #454545;
  text-transform: capitalize;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li {
  padding-block: 10px;
  border-bottom: 1px solid rgba(236, 240, 243, 0.99);
  display: flex;
  justify-content: space-between;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li a {
  color: #727272;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  font-size: 16px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li span {
  color: #727272;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  font-size: 16px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li:hover a {
  color: #00356a;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li:hover span {
  color: #00356a;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li .content {
  width: calc(100% - 80px);
  padding-left: 15px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li .content a {
  transition: all 0.3s ease-in-out;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li .content a h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 1.125rem;
  font-weight: 600;
  color: #454545;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li .content a p {
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
  color: #727272;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li:hover a h6 {
  color: #00356a;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li {
  padding-block: 10px;
  display: flex;
  justify-content: space-between;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .content {
  width: calc(100% - 80px);
  padding-left: 15px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .content a {
  transition: all 0.3s ease-in-out;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .content a h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 1.125rem;
  font-weight: 600;
  color: #454545;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .content a p {
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
  color: #727272;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li:hover a h6 {
  color: #00356a;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-tag-body ul {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 10px;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-tag-body ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-tag-body ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #727272;
  display: block;
  border: 1px solid #ebebeb;
  padding: 10px 15px;
  margin-right: 5px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}
.blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-tag-body ul li a:hover {
  background: #00356a;
  border: 1px solid #00356a;
  color: #fff;
}
.blog-page .blog-inner-items {
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  border-radius: 5px;
  margin-bottom: 40px;
}
.blog-page .blog-inner-items .inner-thumb {
  overflow: hidden;
}
.blog-page .blog-inner-items .inner-thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.blog-page .blog-inner-items .inner-content {
  padding: 30px;
}
.blog-page .blog-inner-items .inner-content h4 a {
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 700;
  color: #454545;
  transition: all 0.4s ease-in-out;
}
.blog-page .blog-inner-items .inner-content p {
  color: #727272;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 15px;
}
.blog-page .blog-inner-items .inner-content .sub-comments {
  background: #00356a;
  padding: 30px 20px;
  text-align: center;
}
.blog-page .blog-inner-items .inner-content .sub-comments i {
  color: #fff;
  font-size: 50px;
}
.blog-page .blog-inner-items .inner-content .sub-comments p {
  color: #fff;
  font-weight: 500;
  line-height: 30px;
}
.blog-page .blog-inner-items .inner-content .comments-area {
  display: flex;
  margin: 15px 0px;
}
.blog-page .blog-inner-items .inner-content .comments-area li {
  font-size: 15px;
  color: #727272;
  font-weight: 500;
  margin-right: 10px;
  text-transform: capitalize;
}
.blog-page .blog-inner-items .inner-content .comments-area li i {
  margin-right: 8px;
}
.blog-page .blog-inner-items .inner-content .btns {
  display: inline-block;
  color: #454545;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
  border: 1px solid #00356a;
  padding: 10px 20px;
  margin-top: 10px;
}
.blog-page .blog-inner-items .inner-content .btns:hover {
  color: #fff;
  background: #00356a;
  border: 1px solid #00356a;
}
.blog-page .blog-inner-items:hover .inner-content h4 a {
  color: #00356a;
}
.blog-page .blog-inner-items:hover .inner-thumb img {
  transform: scale(1.3);
}
.blog-page .default-pagination {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
.blog-page .default-pagination .active a {
  background-color: #00356a;
  color: #fff;
}
.blog-page .default-pagination li {
  margin-right: 10px;
}
.blog-page .default-pagination li a {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 100%;
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  background-color: #fff;
  display: block;
  color: #727272;
  transition: all 0.4s ease-in-out;
}
.blog-page .default-pagination li a:hover {
  background-color: #00356a;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-title h4 {
    font-size: 18px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li a {
    font-size: 14px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li span {
    font-size: 14px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li .content a h6 {
    font-size: 16px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-body ul li .content a p {
    font-size: 14px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li {
    padding-block: 10px;
    display: flex;
    justify-content: space-between;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .content {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .content a {
    transition: all 0.3s ease-in-out;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .content a h6 {
    font-size: 18px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li .content a p {
    font-size: 14px;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-catagory-post-body ul li:hover a h6 {
    color: #00356a;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-tag-body ul {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 10px;
    justify-content: center;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-tag-body ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-tag-body ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #727272;
    display: block;
    border: 1px solid #ebebeb;
    padding: 10px 15px;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
  }
  .blog-page .blog-wrapper .sidebar .sidebar-catagory .sidebar-catagory-area .sidebar-tag-body ul li a:hover {
    background: #00356a;
    border: 1px solid #00356a;
    color: #fff;
  }
  .blog-page .blog-inner-items .inner-content h4 a {
    font-size: 24px;
    line-height: 35px;
  }
  .blog-page .blog-inner-items .inner-content p {
    font-size: 14px;
  }
  .blog-page .blog-inner-items .inner-content .sub-comments i {
    font-size: 36px;
  }
  .blog-page .blog-inner-items .inner-content .sub-comments p {
    font-size: 14px;
    line-height: 28px;
  }
  .blog-page .blog-inner-items .inner-content .comments-area {
    display: flex;
    margin: 15px 0px;
  }
  .blog-page .blog-inner-items .inner-content .comments-area li {
    font-size: 14px;
  }
  .blog-page .blog-inner-items .inner-content .btns {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .blog-page .blog-inner-items .inner-content h4 a {
    font-size: 18px;
    line-height: 30px;
  }
}
@media screen and (max-width: 376px) {
  .blog-page .blog-inner-items .inner-content .comments-area {
    flex-wrap: wrap;
  }
  .blog-page .blog-inner-items .inner-content .comments-area li {
    margin-bottom: 10px;
  }
}
/*========== Blog End ==========*/
/*========== Blog Single Start ==========*/
.blog-page {
  overflow: hidden;
}
.blog-page .admin-items {
  margin-top: 50px;
  padding: 30px 30px 30px 30px;
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
}
.blog-page .admin-items .admin-wrapper {
  display: flex;
  align-items: center;
}
.blog-page .admin-items .admin-wrapper .admin-left {
  margin-right: 20px;
}
.blog-page .admin-items .admin-wrapper .admin-left .admin-thump img {
  border-radius: 100%;
  width: 160px;
  height: 160px;
}
.blog-page .admin-items .admin-wrapper .admin-right .admin-content h5 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #00356a;
  margin-bottom: 10px;
}
.blog-page .admin-items .admin-wrapper .admin-right .admin-content p {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  margin-bottom: 20px;
  line-height: 30px;
}
.blog-page .admin-items .admin-wrapper .admin-right .admin-content a {
  margin-right: 15px;
}
.blog-page .admin-items .admin-wrapper .admin-right .admin-content a .fa-brands.fa-facebook-f {
  color: #4267B2;
  font-size: 20px;
}
.blog-page .admin-items .admin-wrapper .admin-right .admin-content a .fa-brands.fa-twitter {
  color: #4db2ec;
  font-size: 20px;
}
.blog-page .admin-items .admin-wrapper .admin-right .admin-content a .fa-brands.fa-linkedin-in {
  color: #0072b1;
  font-size: 20px;
}
.blog-page .admin-items .admin-wrapper .admin-right .admin-content a .fa-brands.fa-instagram {
  color: #e8505b;
  font-size: 20px;
}
.blog-page .admin-items-two {
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  margin-top: 30px;
}
.blog-page .admin-items-two .two-comment {
  border-bottom: 1px solid #f1f1f1;
}
.blog-page .admin-items-two .two-comment h3 {
  color: #00356a;
  text-transform: uppercase;
  font-weight: 600;
  padding: 30px 0px 30px 30px;
}
.blog-page .admin-items-two .admin-wrapper-two {
  padding: 30px 30px 30px 30px;
  display: flex;
  border-bottom: 1px solid #f1f1f1;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-left {
  margin-right: 20px;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-left .admin-thump img {
  border-radius: 100%;
  width: 110px;
  height: 110px;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content h5 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #00356a;
  margin-bottom: 10px;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content p {
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  margin-bottom: 20px;
  line-height: 30px;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content a {
  margin-right: 15px;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content a .fa-brands.fa-facebook-f {
  color: #4267B2;
  font-size: 20px;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content a .fa-brands.fa-twitter {
  color: #4db2ec;
  font-size: 20px;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content a .fa-brands.fa-linkedin-in {
  color: #0072b1;
  font-size: 20px;
}
.blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content a .fa-brands.fa-instagram {
  color: #e8505b;
  font-size: 20px;
}
.blog-page .admin-items-two .contact-items {
  padding: 30px 30px 30px 30px;
}
.blog-page .admin-items-two .contact-items .form-clt input {
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: none;
  padding: 14px 15px;
  border: 2px solid #ebebeb;
}
.blog-page .admin-items-two .contact-items .cmn--btn {
  border-radius: 5px;
  padding: 12px 32.5px;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  color: #454545;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid #00356a;
  background: #fff;
  position: relative;
  box-shadow: none;
  outline: none;
  overflow: hidden;
  letter-spacing: 2px;
  transition: all 0.4s ease-in-out;
}
.blog-page .admin-items-two .contact-items .cmn--btn:hover {
  color: #fff;
  background: #00356a;
  border: 1px solid #00356a;
}

@media screen and (max-width: 768px) {
  .blog-page .admin-items .admin-wrapper .admin-right .admin-content h5 {
    font-size: 18px;
  }
  .blog-page .admin-items .admin-wrapper .admin-right .admin-content p {
    font-size: 14px;
  }
  .blog-page .admin-items-two .two-comment h3 {
    font-size: 18px;
  }
  .blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content h5 {
    font-size: 18px;
  }
  .blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .blog-page .admin-items .admin-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .blog-page .admin-items .admin-wrapper .admin-left {
    margin-right: initial;
  }
  .blog-page .admin-items .admin-wrapper .admin-right {
    text-align: center;
    margin-top: 20px;
  }
  .blog-page .admin-items-two .admin-wrapper-two {
    flex-wrap: wrap;
    justify-content: center;
  }
  .blog-page .admin-items-two .admin-wrapper-two .admin-left {
    margin-right: initial;
  }
  .blog-page .admin-items-two .admin-wrapper-two .admin-right {
    margin-top: 20px;
  }
  .blog-page .admin-items-two .admin-wrapper-two .admin-right .admin-content {
    text-align: center;
  }
}
/*========== Blog Single End ==========*/
/*=============== Blog Page End ===============*/
/*=============== Contact Page Here ===============*/
.contact-info {
  overflow: hidden;
}
.contact-info .contact-info-items {
  text-align: center;
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  padding: 50px 30px;
  transition: all 0.4s ease-in-out;
}
.contact-info .contact-info-items i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: #00356a;
  font-size: calc(1.275rem + 0.3vw);
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.15);
  border-radius: 100%;
  text-align: center;
}
.contact-info .contact-info-items h5 {
  font-size: 20px;
  color: #454545;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
}
.contact-info .contact-info-items p {
  font-weight: 500;
  font-size: 16px;
  color: #727272;
  margin-top: 10px;
}
.contact-info .contact-info-items:hover {
  box-shadow: 0px 4px 24px 0px rgba(131, 194, 236, 0.25);
}
.contact-info .contact-right .reply-head {
  font-size: 32px;
  color: #454545;
  font-weight: 600;
  margin: 40px 0px;
}
.contact-info .contact-right .form-clt input {
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: none;
  padding: 14px 15px;
  border: 2px solid #ebebeb;
}
.contact-info .contact-right .cmn--btn {
  border-radius: 5px;
  padding: 12px 32.5px;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  color: #454545;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid #00356a;
  background: #fff;
  position: relative;
  box-shadow: none;
  outline: none;
  overflow: hidden;
  letter-spacing: 2px;
  transition: all 0.4s ease-in-out;
}
.contact-info .contact-right .cmn--btn:hover {
  color: #fff;
  background: #00356a;
  border: 1px solid #00356a;
}
.contact-info .googpemap {
  padding: 65px 20px 0;
}
.contact-info .googpemap iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .contact-info .googpemap {
    padding: 30px 0px 0;
  }
  .contact-info .googpemap iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact-info .contact-info-items h5 {
    font-size: 18px;
  }
  .contact-info .contact-info-items p {
    font-size: 14px;
  }
  .contact-info .contact-right .reply-head {
    font-size: 24px;
  }
  .contact-info .contact-right .cmn--btn {
    font-size: 14px;
  }
  .banner-section .banner-items .banner-content {
    top: 100px;
}
}
/*=============== Contact Page End ===============*/
/*=============== 404 Page Start ===============*/
.error-page {
  overflow: hidden;
}
.error-page .error-items .error-thumb {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.error-page .error-items .error-thumb img {
  width: 100%;
  height: 100%;
}
.error-page .error-items .error-button {
  text-align: center;
  margin-top: 30px;
}
.error-page .error-items .error-button .error-btn {
  padding: 15px 30px;
  background: #00356a;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
  letter-spacing: 2px;
  border: 1px solid #00356a;
}
.error-page .error-items .error-button .error-btn:hover {
  background: #fff;
  color: #00356a;
  border: 1px solid #00356a;
}

/*=============== 404 Page End ===============*/
/*========== Coming-section Here ==========*/
.comming-section {
  overflow: hidden;
  background: url(../../assets/images/comming-soon/coming-soon.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  height: 100vh;
}
.comming-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}
.comming-section .comming-time {
  position: relative;
  padding: 250px 0px;
}
.comming-section .comming-time .comming-tittle {
  text-align: center;
  margin-bottom: 20px;
}
.comming-section .comming-time .comming-tittle h1 {
  font-size: 65px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}
.comming-section .comming-time .comming-tittle p {
  color: #fff;
  font-weight: 500;
  line-height: 28px;
}
.comming-section .comming-time ul {
  display: flex;
  justify-content: center;
}
.comming-section .comming-time li {
  color: #fff;
  font-weight: 600;
  margin-right: 35px;
  display: inline-block;
  text-align: center;
}
.comming-section .comming-time li #day {
  color: #ff739c;
  font-size: 70px;
  font-weight: 800;
  display: block;
}
.comming-section .comming-time li #Hours {
  color: #d26dfb;
  font-size: 70px;
  font-weight: 800;
  display: block;
}
.comming-section .comming-time li #Minutes {
  color: #00c08c;
  font-size: 70px;
  font-weight: 800;
  display: block;
}
.comming-section .comming-time li #Seconds {
  color: #009cff;
  font-size: 70px;
  font-weight: 800;
  display: block;
}

@media screen and (max-width: 768px) {
  .comming-section .comming-time {
    padding: 150px 0px;
  }
  .comming-section .comming-time .comming-tittle h1 {
    font-size: 40px;
  }
  .comming-section .comming-time .comming-tittle p {
    font-size: 14px;
  }
  .comming-section .comming-time ul {
    display: flex;
    justify-content: center;
  }
  .comming-section .comming-time li #day {
    font-size: 50px;
  }
  .comming-section .comming-time li #Hours {
    font-size: 50px;
  }
  .comming-section .comming-time li #Minutes {
    font-size: 50px;
  }
  .comming-section .comming-time li #Seconds {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  .comming-section .comming-time ul {
    flex-wrap: wrap;
  }
}
/*========== Coming-section End ==========*/
/*========== Tour Details Here ==========*/
/*========== Tour Banner Here ==========*/
.banner-two.style-about.style-details {
  background: url(../../assets/images/tour/details/bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.banner-two.style-about.style-details .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: 3px 3px;
}

/*========== Tour Banner End ==========*/
/*========== Tour Info Here ==========*/
.tour-info {
  overflow: hidden;
}
.tour-info .tour-info-items {
  box-shadow: 0px 4px 24px 0px rgba(106, 105, 194, 0.25);
  padding: 30px;
}
.tour-info .tour-info-items .tour-info-tittle {
  margin-bottom: 30px;
}
.tour-info .tour-info-items .tour-info-tittle h3 {
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 700;
  color: #454545;
}
.tour-info .tour-info-items .tour-info-list {
  display: flex;
}
.tour-info .tour-info-items .tour-info-list .left {
  margin-right: 15px;
}
.tour-info .tour-info-items .tour-info-list .left i {
  font-size: 18px;
  color: #00356a;
}
.tour-info .tour-info-items .tour-info-list .right p {
  font-size: 18px;
  color: #727272;
  font-weight: 500;
  text-transform: capitalize;
}
.tour-info .tour-info-items .tour-info-list .default-btn {
  padding-inline: 40px;
  line-height: 56px;
  background: #00356a;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
  border: 1px solid #00356a;
}
.tour-info .tour-info-items .tour-info-list .default-btn:hover {
  background: #fff;
  border: 1px solid #00356a;
  color: #00356a;
}

@media screen and (max-width: 768px) {
  .tour-info .tour-info-items .tour-info-tittle h3 {
    font-size: 22px;
  }
  .tour-info .tour-info-items .tour-info-list .left i {
    font-size: 15px;
  }
  .tour-info .tour-info-items .tour-info-list .right p {
    font-size: 15px;
  }
  .tour-info .tour-info-items .tour-info-list .default-btn {
    font-size: 15px;
  }
}
/*========== Tour Info End ==========*/
/*========== Tour Info Detailas Here ==========*/
.blog-page .blog-wrapper .tour-details-items .tour-inner-details .tour-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #454545;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.blog-page .blog-wrapper .tour-details-items .tour-inner-details .tour-content p {
  color: #727272;
  font-weight: 500;
  line-height: 30px;
}
.blog-page .blog-wrapper .tour-details-items .tour-inner-details .tour-content .tour-content-info .tour-content-details ul li {
  padding-block: 10px;
}
.blog-page .blog-wrapper .tour-details-items .tour-inner-details .tour-content .tour-content-info .tour-content-details ul li i {
  color: #00356a;
  margin-right: 8px;
}
.blog-page .blog-wrapper .tour-details-items .tour-inner-details .tour-content .tour-content-info .tour-content-details ul .d-list i {
  color: #727272;
}
.blog-page .blog-wrapper .tour-details-items .tour-location {
  margin-top: 30px;
}
.blog-page .blog-wrapper .tour-details-items .tour-location .tour-contents {
  margin-bottom: 30px;
}
.blog-page .blog-wrapper .tour-details-items .tour-location .tour-contents h3 {
  font-size: 28px;
  font-weight: 700;
  color: #454545;
  text-transform: capitalize;
}
.blog-page .blog-wrapper .tour-details-items .tour-location .tour-location-details iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .blog-page .blog-wrapper .tour-details-items .tour-inner-details .tour-content h3 {
    font-size: 22px;
  }
  .blog-page .blog-wrapper .tour-details-items .tour-inner-details .tour-content p {
    font-size: 14px;
  }
  .blog-page .blog-wrapper .tour-details-items .tour-location .tour-contents h3 {
    font-size: 22px;
  }
}
/*========== Tour Info Detailas End ==========*/
/*========== Tour Banner Here ==========*/
.banner-two.style-about.style-details-one {
  background: url(../../assets/images/packges/details/bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.banner-two.style-about.style-details-one .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: 3px 3px;
}

/*========== Tour Banner End ==========*/
/*========== Tour Banner Here ==========*/
.banner-two.style-about.style-details-two {
  background: url(../../assets/images/hotel/details/bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.banner-two.style-about.style-details-two .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: 3px 3px;
}

/*========== Tour Banner End ==========*/
/*========== Tour Details End ==========*/
/*========== Home Page Four Here ==========*/
/*========== Banner Four Start ==========*/
.banner-two {
  overflow: hidden;
}
.banner-two .banner-items.style-four {
  background: url(../../assets/images/banner/banner3b.jpg) no-repeat center center;
}

/*========== Banner Four End ==========*/
/*========== About Four Start ==========*/
.about-section.style-four .about-content .counter-list {
  display: flex;
  align-items: center;
}
.about-section.style-four .about-content .counter-list .counter-up-items {
  margin-right: 20px;
}
.about-section.style-four .about-content .counter-list .counter-up-items .counterup-text span {
  font-size: 36px;
  color: #00356a;
  font-weight: 700;
}
.about-section.style-four .about-content .counter-list .counter-up-items .counterup-text p {
  color: #727272;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .about-section.style-four .about-content .counter-list .counter-up-items {
    margin-right: 20px;
  }
  .about-section.style-four .about-content .counter-list .counter-up-items .counterup-text span {
    font-size: 28px;
  }
  .about-section.style-four .about-content .counter-list .counter-up-items .counterup-text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .about-section.style-four .about-content .counter-list {
    flex-wrap: wrap;
  }
  .about-section.style-four .about-content .counter-list .counter-up-items {
    margin-right: 20px;
  }
}
/*========== About Four End ==========*/
/*========== Offer Four Start ==========*/
.offer-section.style-four .offer-items .offer-content {
  padding: 25px 20px;
}
.offer-section.style-four .offer-items .offer-content span a {
  font-size: 14px;
}
.offer-section.style-four .offer-items .offer-content h4 {
  font-size: 18px;
}
.offer-section.style-four .offer-items .offer-content .package-price {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .offer-section.style-four .offer-items .offer-content span a {
    font-size: 13px;
  }
  .offer-section.style-four .offer-items .offer-content h4 {
    font-size: 16px;
  }
  .offer-section.style-four .offer-items .offer-content .package-price {
    font-size: 13px;
  }
}
/*========== Offer Four End ==========*/
/*========== Photo Section Here ==========*/
.photo-section {
  overflow: hidden;
}
.photo-section .photo-items .photo-thumb img {
  width: 100%;
  height: 100%;
}

/*========== Photo Section End ==========*/
/*========== Testimonial Scetion Start ==========*/
.testimonial-section.style-four {
  overflow: hidden;
}
.testimonial-section.style-four .testimonial-items .testi-thump {
  width: 150px;
  height: 150px;
  text-align: center;
  margin: 0 auto;
}
.testimonial-section.style-four .testimonial-items .testi-thump img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.testimonial-section.style-four .testimonial-items .testi-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  margin-top: 20px;
}
.testimonial-section.style-four .testimonial-items .testi-content h4 {
  font-size: 20px;
  color: #454545;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.testimonial-section.style-four .testimonial-items .testi-content p {
  font-size: 16px;
  color: #727272;
  font-weight: 500;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  .testimonial-section.style-four .testimonial-items .testi-content h4 {
    font-size: 18px;
  }
  .testimonial-section.style-four .testimonial-items .testi-content p {
    font-size: 14px;
    line-height: 28px;
  }
}

.form-clt.form-clt-big textarea {
    border: 2px solid #ebebeb;
    width: 100%;
    border-radius: 4px;
}
.newsletter.comming-soon-design {
    background: transparent;
    max-width: 700px;
    margin: 0 auto;
}
.tour-image img {
    width: 100%;
}
.tour-info-list.btns .default-btn {
    background: #00356a;
    padding: 10px 20px;
    margin-top: 25px;
    display: inline-block;
    color: #fff;
    transition: all 0.4s ease-in-out;
    text-align: center;
    font-size: 20px;
}
.tour-info-list .default-btn:hover {
    background: #000;
}
/*========== Testimonial Scetion End ==========*/
/*========== Home Page Four End ==========*//*# sourceMappingURL=style.css.map */