/*
Theme Name: Travel Theme V2
Theme URI: https://flightshelpcenter.com/
Description: Custom theme converted from static HTML.
Version: 1.0
*/
html{
margin-top:0px !important;
}
body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
}
h1 {
  font-size: 66px;
}
.top-section h1 span {
  font-size: 45px;
  color: #09afe5;
}
.banner h1 {
  background-image: url(images/text-bg.jpg);
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
section {
  position: relative;
  /*padding: 30px 0px;*/
}
.page-center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.top-section {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.card-wrap .post-card {
  flex: 0 0 32%;
}
/* header css */
.mobile-menu {
  display: none;
}
	@media(max-width:767px){
		.content-wrapper.border.p-4.rounded.shadow-sm .post-content {
    padding: 20px 0px;
}
		section.faq-section-wrap {
    padding: 20px 0 !important;
}
	}
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  width: 120px;
}
.logo img {
  width: 100%;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav a {
  text-decoration: none;
  color: #444;
  font-weight: 700;
  transition: color 0.3s;
}
.nav a:hover {
  color: #09afe5;
}
.cta-button {
  background-color: #09afe5;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}
.cta-button:hover {
  background-color: #09afe5;
}
.comment-author.vcard {
  width: 80px;
  height: 80px;
  display: inline-block;
}
@media (max-width: 768px) {
  nav.nav li a {
    color: #fff;
  }
  .mobile-menu {
    cursor: pointer;
  }
  .mb_menu .mobile-menu .mm2 {
    transform: translate(-2px, 2px) rotate(-45deg);
  }
  a.cta-button.mb:hover {
    background-color: #fff;
  }
  .mb_menu .mobile-menu .mm1 {
    transform: translate(2px, 4px) rotate(45deg);
    margin: 0;
  }

  .mb_menu .mobile-menu .mm3 {
    transform: rotate(45deg);
    margin: 0;
  }
  .nav {
    display: none;
  }
  .desktop {
    display: none;
  }
  .mobile-menu > div {
    height: 3px;
    width: 20px;
    background-color: currentcolor;
    margin: 3px;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  .mobile-menu > div.mm1 {
    width: 10px;
  }
  .mobile-menu > div.mm3 {
    width: 10px;
    right: -10px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    left: 0;
    top: 59px;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav ul {
    display: block;
  }
  nav.nav {
    position: absolute;
    top: 50px;
    left: 0%;
    width: 100%;
    text-align: center;
    background-color: #000;
    height: 100vh;
    justify-content: center;
  }
  nav.nav li {
    padding: 15px 0px;
  }
}
@media (min-width: 768px) {
  .mb {
    display: none;
  }
}

/* Footer css  */
.site-footer .copyright p {
  margin: 0px;
  padding: 20px 0px;
  text-align: center;
}

.site-footer .bottom-wrap {
  display: flex;
  gap: 30px;
  align-items: end;
}

.site-footer .newsletter-wrap form {
  padding: 0px;
  display: flex;
}

.site-footer .newsletter-wrap input[type="email"] {
  height: 48px;
  border: 0px;
  padding: 0px 20px;
  outline: none;
}

.site-footer .newsletter-wrap button {
  border: 0px;
  background-color: #09afe57d;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.site-footer .newsletter-wrap i.fa-regular.fa-paper-plane {
  font-size: 20px;
}
.site-footer section {
  padding: 0px;
}
section.footer-logo {
  flex: 25%;
}
.site-footer .copyright p {
  margin: 0px;
  padding: 20px 0px;
  text-align: center;
}
section.menu {
  flex: 22%;
}
section.address {
  flex: 25%;
}
.site-footer .inner-wrap {
  gap: 30px;
  align-items: flex-start;
}
section.menu h2 {
  margin-top: 0px;
}
section.address h2 {
  margin-top: 0px;
}
footer.site-footer {
  position: relative;
  background-color: #09afe512;
  padding: 60px 0px 0px;
}
.menu ul {
  padding: 0px;
  list-style: none;
}

.menu ul li {
  margin: 5px;
}

.menu ul li a {
  text-decoration: none;
  color: #000;
  position: relative;
}
.menu ul li a:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -3px;
  background-color: #09afe5;
  left: 0px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  transform: scale(0);
}
.menu ul li a:hover:after {
  transform: scale(1);
}
.support-btn img {
  width: 50px;
}
.social-media a {
  color: #000;
  text-decoration: none;
  font-size: 30px;
  margin-right: 6px;
}
.social-media a i::before {
  transition: all 0.4s ease-in-out;
  color: #09afe5;
}
.social-media a i:hover:before {
  color: #09afe5d1;
}
.desclaimer-wrap p {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .accordion-section a {
    font-size: 14px;
  }
  .blog-post .blog-post-inner .post-wrap {
    flex-wrap: wrap;
  }
  .blog-post .blog-post-inner .post-image {
    flex: 100% !important;
  }
  .top-section {
    width: 100%;
  }
  .site-footer .inner-wrap h4 {
    margin-bottom: 2px;
  }
  .inner-wrap section {
    flex: 40%;
  }
  .site-footer .bottom-wrap {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .site-footer .inner-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 567px) {
  .accordion-section {
    padding: 0px;
  }
  .newsletter-wrap {
    width: 100%;
  }
  .site-footer .newsletter-wrap form {
    width: 100%;
  }
  .site-footer .newsletter-wrap input[type="email"] {
    width: 100%;
  }
  .inner-wrap section {
    flex: 100%;
  }
  .page-inner {
    width: 100% !important;
  }
}

/* banner css */
.banner p {
  color: #fff;
}
section.banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #000;
  opacity: 0.5;
  z-index: 0;
}
.banner {
  padding: 60px 0px;
}
.banner span.increment,
.banner span.decrement {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 0px;
  justify-content: center;
  align-items: center;
  display: flex;
}
span.value {
  justify-content: center;
  align-items: center;
  display: flex;
  min-width: 15px;
  margin: 0px 5px;
}
span.increment {
  padding: 0px;
}
.container {
  background-color: #4b4b4b;
  max-width: 400px;
  width: 100%;
  border-radius: 6px;
  padding: 16px;
}
.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.vid-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1;
}

form {
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.trip-options {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}
.trip-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  color: #fff;
}
.input-group.return.hide {
  display: none;
}
.trip-options input[type="radio"] {
  accent-color: #09afe5; /* orange */
  cursor: pointer;
}
.trip-options label.disabled {
  color: #9ca3af;
  cursor: default;
}
.trip-options label.disabled input[type="radio"] {
  cursor: default;
}
.input-row {
  display: flex;
  border: 1px solid #d1d5db;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  background-color: white;
  position: relative;
}
.input-group {
  flex: 1;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
}
.input-group label {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 4px;
}
.input-group input[type="text"],
.input-group input[type="date"] {
  font-size: 14px;
  border: none;
  outline: none;
  color: black;
  width: 100%;
  background-color: white;
  cursor: text;
}
.input-group input[type="date"] {
  cursor: pointer;
}
.divider {
  background-color: #d1d5db;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #6b7280;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  user-select: none;
  padding: 5px;
  border: 1px solid;
  border-radius: 50%;
}
.travellers-cabin-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.divider i {
  transition: all 0.3s ease-in-out;
}
.divider.active i {
  transform: rotate(180deg);
}
.traveler {
  flex: 40%;
}

.cabin {
  flex: 40%;
}

.traveler > div {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cabin h4 {
  margin-top: 0px;
}
.traveler > div:first-child {
  margin-top: 0px;
}

.traveler > div:last-child {
  margin-bottom: 0px;
}
.input-row-bottom {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background-color: white;
  margin-top: -1px;
}
.input-group.border-right {
  border-right: 1px solid #d1d5db;
}
.travelers {
  background-color: white;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 12px;
  color: black;
  font-size: 14px;
}
.travelers label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
  display: block;
}
button.search-btn {
  margin-top: 12px;
  width: 100%;
  background-color: #09afe5;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}
button.search-btn:hover,
button.search-btn:focus {
  background-color: #09afe57a;
  outline: none;
}
.inner-wrap .left-section {
  flex: 35%;
}
@media (max-width: 480px) {
  .travelers {
    font-size: 10px;
  }
  .travellers-cabin-wrap {
    gap: 8px;
  }
  .travelers label span {
    font-size: 10px;
  }
  .container {
    max-width: 100%;
  }
  .input-row,
  .input-row-bottom {
    flex-direction: column;
  }
  .divider {
    position: relative;
    width: 30px;
    padding: 8px 0;
    color: #6b7280;
    font-size: 16px;
    cursor: default;
    left: 50%;
    transform: rotate(90deg);
  }
  .input-group.border-right {
    border-right: none;
    border-bottom: 1px solid #d1d5db;
  }
}

.banner .right-section {
  padding: 20px 0px;
  flex: 35%;
}
.travellers-cabin-wrap {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1000;
}
.travelers input[type="text"] {
  width: 100%;
  border: 0px;
  outline: none;
}
.travelers.open .travellers-cabin-wrap {
  display: flex;
}

.traveler div {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.decrement,
.increment {
  cursor: pointer;
  padding: 0 10px;
  user-select: none;
  font-weight: bold;
}
@media (max-width: 767px) {
  .mobile-menu {
    display: block;
  }
  .inner-wrap .left-section {
    flex: 100%;
  }
  .inner-wrap {
    flex-wrap: wrap;
  }
  div#lightgallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

#lightgallery {
  display: grid;
  gap: 16px;
  padding: 20px;
}
#lightgallery a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
#lightgallery a:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#lightgallery img {
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}
@media (min-width: 768px) {
  #lightgallery {
    grid-template-columns: repeat(3, 1fr);
  }
  a.img4 {
    grid-row-start: 3;
    grid-column-start: 2;
  }
  a.img1 {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }
  a.img3 {
    grid-row-start: 3;
  }
  a.img5 {
    grid-row: 2 / 4;
    grid-column: 3/4;
  }
  a.img7 {
    grid-column-start: 2;
  }
}

/* Faq Section  */

.accordion-section a {
  color: #000;
  text-decoration: none;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
}
.accordion-section-content {
  padding: 0px 10px;
}
section.faq {
  background-color: #edf5ff;
}
.accordion-section {
  margin: 10px 0px;
  border: 1px solid #000;
  padding: 10px;
}
.active span.minus {
  display: block;
}
span.minus {
  display: none;
}
.active span.plus {
  display: none;
}
a.accordion-section-title {
  gap: 20px;
}
/* offer-card */

.offer-card {
  position: relative;
  padding: 10px 20px;
  padding-left: 20px;
}
.bg3,
.bg2,
.bg1 {
  background-image: url("images/travel-destination2.jpg");
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border-radius: 12px;
  z-index: -1;
  background-size: cover;
}
.bg2 {
  background-image: url("images/travel-destination1.jpg");
}
.bg3 {
  background-image: url("images/travel-destination3.jpg");
}

.offer-card:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  top: 0px;
  left: 0px;
  border-radius: 12px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.offer-card:hover:before {
  opacity: 0.5;
}

.content {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.offer-card:hover .content {
  opacity: 1;
  transform: translate(0);
}

/* blog section  */
.primary-btn {
  margin-top: 30px;
}
.our-blog {
  background-color: #09afe51f;
}
.primary-btn {
  margin-top: 30px;
}
h3.title {
  margin-top: 0px;
  font-family: "open sans";
  font-weight: 600;
}
.post-details-description.toc-wrap h2 strong {
  font-weight: 500;
}
section.related-post {
  background-color: #09afe521;
}
.post-card {
  background-color: #edf5ff;
  padding-bottom: 15px;
  border-radius: 12px;
}
.btn a {
  padding: 5px 10px;
  border: 1px solid;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  font-family: "Open Sans";
}
.post-desc {
  padding: 10px 10px 0;
}

.btn {
  padding: 0px 10px 10px;
}
h3.title a {
  color: #000;
  text-decoration: none;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
ul.tags-wrap {
  padding: 0px;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
}

.tags-wrap a {
  border: 1px solid;
  padding: 2px 10px;
  border-radius: 4px;
  color: #000;
  text-decoration: none;
}
.blog-img {
  flex: 45%;
}

.blog-content {
  flex: 45%;
}

.our-blog .inner-wrap {
  align-items: flex-start;
}
@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
  .card-wrap {
    flex-wrap: wrap;
  }
  .card-wrap .post-card {
    flex: 45%;
  }
  h2 span,
  h2 {
    font-size: 30px !important;
  }
  .offer-card {
    flex: 1 0 40%;
  }
  .site-footer h2 {
    font-size: 25px !important;
  }
  .accordion-section a {
    font-size: 14px;
  }
  .blog-content,
  .blog-img {
    flex: 50%;
  }
}
@media (max-width: 567px) {
  .site-footer .inner-wrap {
    gap: 10px;
  }
  .card-wrap .post-card {
    flex: 1 0 100%;
  }
  .accordion-section {
    padding: 0px;
  }
  .accordion-section-content p {
    font-size: 12px;
  }
  div#lightgallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .post-card {
    flex: 100%;
  }
}

/* about us  */
.about-us-banner h1 span,
.about-us-our-story h2 span {
  color: #09afe5;
}
.about-us-our-story h2 span {
  font-size: 45px;
}
.about-us-our-story .left {
  flex: 50%;
}
.about-us-our-story .right {
  flex: 50%;
}
section.about-us-banner {
  padding: 60px 0px;
  background-image: url("images/travel-destination7.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.about-us-page h1 {
  margin: 0px;
  text-align: center;
}
section.about-us-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000050;
}
section.about-us-banner .bottom-content p {
  color: #fff;
}
.about-us-our-story .image img {
  border-radius: 0px;
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
}
.why-travel-with-us .inner-wrap {
  flex-wrap: wrap;
  padding-top: 30px;
  cursor: pointer;
}
.why-travel-with-us .travel-card {
  flex: 31%;
  position: relative;
}
.bg-img2,
.bg-img3,
.bg-img4,
.bg-img5,
.bg-img6,
.bg-img1 {
  background-image: url("images/travel-destination1.jpg");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 12px;
}
.bg-img6 {
  background-image: url("images/travel-destination2.jpg");
}
.bg-img5 {
  background-image: url("images/travel-destination3.jpg");
}
.bg-img4 {
  background-image: url("images/travel-destination4.jpg");
}
.bg-img2 {
  background-image: url("images/travel-destination5.jpg");
}
.bg-img3 {
  background-image: url("images/travel-destination6.jpg");
}
.travel-content {
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  padding: 0px 20px;
  opacity: 0;
  position: relative;
  color: #ffffff;
}
.travel-card:hover .travel-content {
  transform: translateY(0px);
  opacity: 1;
  z-index: 999;
}
.travel-card:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: #00000050;
  height: 100%;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}

.travel-card:hover:before {
  z-index: 1;
  transform: translateY(0);
  opacity: 1;
}
section.why-travel-with-us {
  background-color: #f0f8ff;
}

/* contact-us */
.connect-with-us .inner-wrapper {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  padding: 0 30px 30px;
}
.connect-with-us .top-section h2 span {
  color: #fff;
}
.connect-with-us .top-section h2 {
  margin-top: 0px;
  padding-top: 20px;
}
.text-center {
  text-align: center;
}
.mission-vision-section .top-section {
  padding: 30px 0px;
}
.connect-us-bg {
  position: absolute;
  background-image: url("images/travel-destination5.jpg");
  width: 100%;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  border-radius: 12px;
  z-index: -1;
  top: 0px;
  left: 0px;
}
.connect-with-us .bottom-section form {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
}
.connect-with-us .bottom-section form input {
  height: 30px;
  padding: 0px 9px;
  border-radius: 5px;
  border: 0px;
  outline: none;
}
nav.nav ul {
  padding: 0px;
}
.image-outer img {
  width: 100px;
  height: 100px;
}

.mission-vision-section .bottom-section .bottom-card {
  flex: 0 0 30%;
}
section.about-us-our-story {
  background-color: #e5e5e58a;
}
.image-outer {
  text-align: center;
}

.mission-vision-section .bottom-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* blog-post-page */

section.blog-post-banner h1 span {
  color: #09afe5;
}
section.blog-post-banner h1 {
  margin: 0;
}
.blog-post-banner {
  position: relative;
}
section.blog-post-banner:before {
  background-color: #00000099;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

section.blog-post-banner p {
  color: #fff;
}

.blog-post-banner a.cta-button {
  display: inline-block;
}
.blog-post-list-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
h3.post-title a {
  color: #000;
  text-decoration: none;
}
/* .blog-post-list-inner .post-image {
    height: 100%;
} */
.blog-post .blog-post-inner .post-wrap {
  display: flex;
  justify-content: space-between;
}
.blog-post .blog-post-inner .post-image {
  flex: 0 0 45%;
}
h3.post-title {
  margin-top: 0px;
  font-family: "open sans";
  font-weight: 400;
}
.table-of-content ul {
  padding: 0px;
  list-style: none;
}

.table-of-content ul li a {
  color: #000;
  text-decoration: none;
  margin-bottom: 8px;
  display: inline-block;
  font-family: "open sans";
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.table-of-content ul li a:hover {
  transform: translateY(-3px);
}

section.table-of-content {
  background-color: #80808029;
}
.post-top h2 span {
  font-size: 45px;
  color: #09afe5;
  font-family: "open sans";
  font-weight: 500;
}
.about-post {
  text-align: center;
}
.banner-img {
  height: 400px;
}
ul.social-wrap {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-wrap a i {
  font-size: 25px;
  width: 25px;
  height: 25px;
  display: inline-block;
  padding: 5px;
  background-color: #09afe5;
  border-radius: 12px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.social-wrap a i:hover {
  transform: translateY(-6px);
}
.auth-img {
  width: 100px;
  height: 100px;
  display: inline-block;
}
.post-auth {
  text-align: center;
}
.auth-img img {
  border-radius: 50%;
}
.post-content {
  padding: 20px;
}
.card-wrap {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
section.blog-toc-sec-2 {
  background-color: #ebebeb;
}

section.blog-toc-sec-4 {
  background-color: #ebebeb;
}
.page-inner h3 {
  font-family: "Open Sans";
  font-weight: 500;
}
.page-inner {
  width: 70%;
  margin: 0 auto;
}
.blog-post-list .post-wrap {
  flex: 0 0 32%;
  background-color: #e5e5e5;
  border-radius: 12px;
  height: 100%;
}
.latest-post-img img {
  height: 100px;
  object-fit: cover;
}
.author-img img {
  border-radius: 50%;
  object-fit: fill;
}
.latest-post-wrap {
  margin-bottom: 20px;
}
.toc-content {
  /*padding: 30px 0px;*/
  position: relative;
  display: flex;
  justify-content: center;
}
.toc-wrap {
  flex: 0 0 60%;
}
div#placeholder {
  display: block !important;
}
.title a {
  color: #000;
  text-decoration: none;
}
.comment-form-section input[type="submit"] {
  display: inline-block;
  width: 100px;
}
.form-inner form {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.form-inner form textarea {
  outline: none;
  padding: 15px;
}
.toc-content .page-center {
  flex: 0 0 15%;
  margin: 0px;
}
.blog-sidebar {
  position: sticky;
  top: 100px;
}
.blog-toc .page-inner {
  margin: unset;
}
:target::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -80px;
}
.author-wrap .by-line p.name {
  margin-bottom: 5px;
}

.author-wrap {
  display: flex;
  align-items: center;
}

.author-wrap .by-line p {
  margin-bottom: 0px;
  margin-top: 0px;
}

.author-img {
  margin-right: 10px;
  width: 80px;
  height: 80px;
}
.blog-post-banner {
  background-image: url("images/travel-blog.jpg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right;
  padding: 60px 0px;
}

.right-form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid #000;
  gap: 20px;
}
.input-wrap {
  flex: 46%;
  display: flex;
  flex-direction: column;
}
.right-form {
  flex: 0 0 47%;
}
.input-wrap label {
  margin-bottom: 10px;
  display: inline-block;
}
.input-wrap input {
  outline: none;
  height: 35px;
  padding: 0 10px;
}
.button-wrap {
  flex: 52%;
  display: flex;
  justify-content: space-between;
}
.contact-us h2 span {
  font-size: 45px;
  color: #09afe5;
}
.input-wrap textarea#message {
  outline: none;
  padding: 10px 10px;
}
.button-wrap .btn {
  padding: 0px;
}
.button-wrap .btn input {
  padding: 4px 15px;
  background-color: #09afe5;
  color: #fff;
  border: 1px solid #09afe5;
  cursor: pointer;
  border-radius: 3px;
}

/* contact us */

.contact-banner h1 span {
  color: #09afe5;
  font-size: 66px;
}
.options-wrap {
  display: flex;
  justify-content: space-between;
}

.options-wrap > div:not(:last-child) {
  padding: 0 20px;
  border-right: 1px solid;
}
.options-wrap > div {
  padding: 0 20px;
}
section.contact-options {
  padding-bottom: 0px;
  border-bottom: 1px solid;
  background-color: #e5e5e5;
}

.office ul {
  padding: 0px;
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 20px;
}

.office ul a {
  padding: 5px;
  background-color: #09afe5;
  border-radius: 6px;
  color: #fff;
}

.office ul a i {
  font-size: 16px;
}

.inquiries a,
.office a {
  padding: 5px 10px;
  border: 1px solid #09afe5;
  display: inline-block;
  border-radius: 4px;
  color: #fff;
  background-color: #09afe5;
  font-weight: 400;
  text-decoration: none;
}
section.contact-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000091;
}
.contact-banner {
  background-image: url(images/travel-blog.jpg);

  background-position: right;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 991px) {
  .toc-content {
    flex-wrap: wrap;
  }
  .toc-content > .page-center {
    flex: 1 0 50%;
  }
  .latest-post {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .latest-post > h3 {
    flex: 1 0 100%;
  }
  .latest-post-wrap {
    flex: 1 0 30%;
  }
  .toc-wrap {
    flex: 0 0 85%;
  }
  .options-wrap > div:not(:last-child) {
    padding: 0px;
    border-right: 0px;
  }
  .options-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
  .options-wrap > div {
    flex: 1 0 45%;
  }
  .office ul {
    justify-content: flex-start;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .blog-post-list .post-wrap {
    flex: 48%;
  }
  .blog-post-list-inner {
    column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .right-form {
    flex: 1;
  }
  .toc-content {
    padding: 0px 20px;
  }
  .why-travel-with-us .travel-card {
    flex: 45%;
  }
  .author-wrap {
    align-items: flex-start;
  }
  .blog-post .post-content {
    padding: 20px 0px;
  }
  .blog-post-list .post-wrap {
    flex: 100%;
  }
}
@media (max-width: 576px) {
  .connect-with-us .inner-wrapper {
    max-width: 100%;
  }
  .why-travel-with-us .travel-card {
    flex: 100%;
  }
  .latest-post-wrap {
    flex: 1 0 60%;
  }
  .options-wrap > div {
    flex: 1 0 60%;
  }
  .toc-wrap {
    flex: 1 0 85%;
  }
}
