/*
** This Theme was Desgined By
**@ Hossam Sadek
**
=========================================================
** CSS file Guide
=========================================================


** 1.General Settings
    1.1 body styling
    1.2 fonts styling
    1.3 color reference
    1.4 General Styling Classes

** // The Header : involved in every page ( 2 )

** 2.Header styling
    2.1 the header 
    
     
** // The Home Page 

** 3.home page sections styling
    3.1 the hero Section 
    3.2 the about section
    3.3 Packages section
    3.4 Contact us section
    3.5 Blog section

**4.Umra Category Page styling
   4.1 Umra Category Section
   4.2 blog page styling
    
**5. Umra Single post Page styling
   5.1 Umra single post section
   5.2 blog single post

**6. Contact Page & About Page styling
   6.1 Contact page


*/

/*
=========================================================
** 1. General setting
=========================================================

** 1.1 body styling =============
*/
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: "nunito-sans";
  background-color: var(--main-color);
}

/*
** 1.2 font styling ======================================
*/

/*

** FONTS USED IN THIS THEME
** headers : nunito
** body    : nunito-sans
*/

@font-face {
  font-family: "nunito";
  src: url("../fonts/Nunito.ttf");
  font-display: block;
}

@font-face {
  font-family: "nunito-sans";
  src: url("../fonts/NunitoSans.ttf");
  font-display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "nunito";
}
ul {
  padding: 0;
  margin: 0;
}
a:hover {
  text-decoration: none;
}

h1 {
  font-size: 64px;
  line-height: 96px;
}
h2 {
  font-size: 48px;
  line-height: 72px;
}
h3 {
  font-size: 32px;
  line-height: 48px;
}
h4 {
  font-size: 24px;
  line-height: 36px;
}
h5 {
  font-size: 18px;
  line-height: 27px;
}

/*
** 1.3 Color Reference ===================================== */
:root {
  --main-color: #f8f9fa;
  --second-main: #e9ecef;
  --main-dark: #212529;
  --main-yellow: #f9c80e;
  --second-yellow: #dbad06;
  --font-gray: #6c757d;
  --overlay: #495057;
}

/*
** 1.4 General Styling Classes ===================================== */
body header.spainsh,body footer.spainsh{
    display: none;
}


body.spainsh header.english,body.spainsh footer.english{
    display: none;
}
body.spainsh header.spainsh,body.spainsh footer.spainsh{
    display: block;
}
a {
  text-decoration: none;
}
body span-version{
    display: none;
}
body.spainsh span-version{
    display: block;
}
body.spainsh eng-version{
    display: none;
}
/*
=========================================================
** 2. Header styling
=========================================================

** 2.1 the header  ==============================
*/

header {
  position: relative;
  z-index: 20;
  padding: 1.5rem 3.5rem;
  border: 1px #aaa;
  border-top-width: 0;
  border-bottom-style: solid;
}
header.scrolled {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  border: none;
  width: 100%;
  background-color: var(--main-color);
}
body.customize-support header {
  top: 32px;
}
body.spainsh{
    display: block;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  /*
  background-color: hsl(0deg 0% 100% / 5%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  */
}
.logo-wrap a {
  font-size: 1.25rem;
}
.logo-wrap img {
  height: 3rem;
  width: auto;
}
.menu-wrap {
  width: fit-content;
}
.menu-wrap ul {
  display: inline-block;
  list-style: none;
}
.menu-wrap ul li {
  display: inline-block;
  margin: 0 1rem;
  font-size: 1.1rem;
}
.menu-wrap ul li a,
.menu-wrap a {
  color: var(--main-dark);
}
.menu-wrap ul li a:hover,
.menu-wrap a:hover {
  color: var(--main-yellow);
}
.language-btn {
  padding: 0.5rem 0.75rem;
  border-radius: 15px;
  cursor: pointer;
  background-color: var(--second-main);
}
.responsive-menu-btn {
  display: none;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  border: none;
  outline: none;
  color: var(--main-dark);
  background: var(--second-main);
}
.responsive-menu-btn .icon-tabler-x,
.responsive-menu-btn.active .icon-tabler-menu-2 {
  display: none;
}
.responsive-menu-btn.active .icon-tabler-x,
.responsive-menu-btn .icon-tabler-menu-2 {
  display: block;
}
.responsive-menu-btn svg {
  width: 2rem;
  height: 2rem;
}
.slideDown-menu-wrap {
  position: absolute;
  z-index: 20;
  top: 100%;
  width: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 3.5rem;
  background-color: var(--main-color);
}
.slideDown-menu-wrap ul {
  list-style: none;
  margin-bottom: 0.5rem;
}
.slideDown-menu-wrap ul li {
  margin: 0.25rem 0;
}
header nav.active .slideDown-menu-wrap {
  display: flex;
}
.slideDown-menu-wrap ul li a {
  color: var(--main-dark);
  transition: all 0.3s ease-in-out;
}
.slideDown-menu-wrap ul li a:hover {
  color: var(--main-yellow);
}
.language-btn-slide {
  background-color: none;
  color: var(--second-yellow);
}
/*
=========================================================
** 3. Home Page styling
=========================================================

** 3.1 the Hero Section  ==============================
*/
.hero-section {
  display: flex;
  height: calc(100vh - 78px);
}
body.customize-support .hero-section {
  height: calc(100vh - 110px);
}

.hero-content-wrap,
.img-effect-wrap {
  position: relative;
  width: 49.99%;
}
.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 3.5rem;
}
.hero-content h1 {
  color: var(--main-dark);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 3rem;
}
.hero-content a {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--main-dark);
  background-color: var(--main-yellow);
}
.hero-content a:hover {
  background-color: var(--second-yellow);
  transition: all 0.5s ease-in-out;
}

.img-effect-wrap img {
  z-index: 11;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-effect-wrap span {
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 60%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.88) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
/* 3.2 the about section -------------------------- */
.about-section {
  padding: 3.5rem;
  background-color: var(--second-main);
}

.about-article-wrap article {
  display: flex;
  justify-content: space-between;
}
.about-article-wrap article h2 {
  width: 29.999%;
  color: var(--main-dark);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2rem;
}
.about-article-wrap article .article-content {
  width: 66%;
}
.about-article-wrap article p {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--main-dark);
  margin-bottom: 1rem;
}
/*
.about-article-wrap article a {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--main-dark);
  background-color: var(--main-color);
}
.about-article-wrap article a:hover {
  background-color: var(--second-main);
  transition: all 0.5s ease-in-out;
}
*/
/* 3.3 Packages section -------------------------- */
.packages-section .row {
  padding: 1.5rem 2.75rem;
  background-color: var(--second-main);
}
.umra-card {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.umra-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
.umra-card-content {
  position: absolute;
  z-index: 8;
  bottom: 0;
  padding: 1rem;
  width: 100%;
  background-color: var(--main-color);
  border-bottom: 0.5rem solid var(--main-yellow);
}
.umra-card-content p {
  font-size: 1.25rem;
  color: var(--font-gray);
  margin: 0;
}
.umra-card-content .main span {
  display: inline-block;
  width: 100%;
  font-size: 2rem;
  color: var(--main-dark);
}
.main h4 a {
  font-size: 2rem;
  color: var(--main-dark);
}
.umra-wrap:hover .umra-card img {
  cursor: pointer;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.umra-card .secondary {
  display: none;
  height: 0;
  padding: 1rem 0;

  border-bottom: 1px solid #aaa;
  background-color: var(--main-color);
  transition: all 1s ease-in-out;
}
.umra-card .secondary svg {
  color: var(--font-gray);
}
.umra-wrap:hover .umra-card .secondary {
  height: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  transition: all 1s ease-in-out;
}
.more-flights {
  padding: 1.5rem 0.75rem;
  text-align: right;
}
.more-flights a {
  display: inline-block;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--main-dark);
  background-color: var(--main-yellow);
}
.more-flights a:hover {
  background-color: var(--second-yellow);
  transition: all 0.5s ease-in-out;
}
/* 3.4 Contact us section -------------------------- */
.contact-us {
  position: relative;
  padding: 1.5rem 0;
  height: 60vh;
  min-height: 460px;
}
.contact-us img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  isolation: isolate;
}

.contact-us .overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  /*background: #074f57;*/
  background-color: var(--overlay);
}
.contact-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 0 20%;
}
.contact-content h5 {
  padding: 1.5rem;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--main-color);
}
.contact-content p {
  font-size: 1.25rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}
.contact-content a {
  display: inline-block;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--main-dark);
  background-color: var(--main-yellow);
}
.contact-content a:hover {
  width: fit-content;
  background-color: var(--second-yellow);
  transition: all 0.5s ease-in-out;
}
/* 3.5 Blog section ------------------------ */
.blog-wrap .row {
  padding: 1.5rem 2.75rem;
}
.blog-wrap .row h3 {
  padding: 1.5rem 0;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.post-content img {
  width: 100%;
  height: 40vh;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.main-post span,
.normal-post-content span {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 1rem;
  margin: 0.75rem 0;
  border-radius: 0.375rem;
  color: var(--main-dark);
  background-color: var(--second-main);
}
.main-post span a,
.normal-post-content span a {
  color: var(--main-dark);
}
.main-post h4 {
  padding: 1rem 0;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--main-dark);
}
.main-post .post-link,
.normal-post-content .post-link {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--main-dark);
  color: var(--main-dark);
  background-color: var(--main-color);
}
.main-post .post-link:hover,
.normal-post-content .post-link:hover {
  color: var(--main-color);
  background-color: var(--main-dark);
  transition: all 0.5s ease-in-out;
}
.other-posts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.normal-post {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  grid-column-gap: 1.5rem;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-bottom: 30px;
  height: 33.33%;
}
.normal-post img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.normal-post-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.normal-post-content h5 {
  font-size: 1.1rem;
  color: var(--main-dark);
}
.more-blog-posts {
  padding: 1.5rem 0.75rem;
  text-align: right;
}
.more-blog-posts a {
  display: inline-block;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid var(--main-dark);
  color: var(--main-dark);
  background-color: var(--main-color);
}
.more-blog-posts a:hover {
  color: var(--main-color);
  background-color: var(--main-dark);
  transition: all 0.5s ease-in-out;
}

/*
=========================================================
** 4. Umra Category Page styling
=========================================================

** 4.1 Umra category intro Section  ==============================
*/
.category-intro {
  padding: 3.5rem;
  padding-top: 5rem;
}
.category-intro h1 {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--main-dark);
}
.category-intro p {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 100%;
}
.umra-category-packages .row {
  row-gap: 1.5rem;
}
/*4.2 blog page styling  ----------------------*/
.blog-posts-wrap {
  padding: 3.5rem;
}
.main-post-blog-wrap {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 4rem;
  display: grid;
}
.main-post-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-post-blog-content h2 {
  font-size: 3rem;
  line-height: 1.2;
}
.main-post-blog-content span a {
  color: var(--main-dark);
}
.main-post-blog-content .read-more,
.blog-normal-post-content .read-more {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--main-dark);
  color: var(--main-dark);
  background-color: var(--main-color);
}
.main-post-blog-content .read-more:hover,
.blog-normal-post-content .read-more:hover {
  color: var(--main-color);
  background-color: var(--main-dark);
  transition: all 0.5s ease-in-out;
}

.blog-normal-post-img img {
  width: 100%;
  max-height: 30vh;
  object-fit: cover;
  object-position: center;
  margin-bottom: 2rem;
}
.blog-normal-post-content span a {
  display: block;
  color: var(--main-dark);
  margin-bottom: 1rem;
}
.blog-normal-post-content h3 {
  color: var(--main-dark);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/*
=========================================================
** 5. Umra Single post Page styling
=========================================================

** 5.1 Umra single intro Section  ==============================
*/
.umra-single-wrap .row {
  padding: 3.5rem 2.75rem;
}
/*
.umra-single-wrap .row .title-holder
{
  background-color: #e9ecef;
  opacity:200.2%;
  background-image:20% 20% radial-gradient(#495057 201% 35px, 20% transparent 201.% 35px), 20% radial-gradient(#495057 201% 35px, 20% #e9ecef 201% 35px);
  background-size:20% 54px 20% 54px;
  background-position:200% 200% ,27px 20% 27px;
}
*/
.umra-single-wrap h1 {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--main-dark);
}

.umra-single-wrap .row h2 {
  font-size: 1.75rem;
}
.travel-tirms p {
  line-height: 1.5;
  max-width: 100%;
  color: var(--overlay);
}
.travel-details ul li {
  list-style: none;
  margin-bottom: 1rem;
}

.travel-details li svg {
  height: 2rem;
  width: 2rem;
  margin-right: 0.5rem;
  color: var(--font-gray);
}

/* 5.2 blog single post ------------- */
.single-post-wrap {
  padding: 3.5rem;
  padding-top: 5rem;
}
.single-post-wrap span {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 1rem;
  margin: 0.75rem 0;
  border-radius: 0.375rem;
  color: var(--main-dark);
  background-color: var(--second-main);
}
.single-post-wrap span a {
  color: var(--main-dark);
}
.single-post-wrap .title-h {
  font-size: 4rem;
  line-height: 1.2;
  max-width: 60%;
  margin-bottom: 2rem;
}
.single-post-wrap .img-holder {
  height: 80vh;
}
.single-post-wrap .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.post-data-wrap {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 2rem;
}
.author-name {
  margin-right: 3rem;
}
.auhtor {
  display: flex;
  align-items: center;
}
.auhtor h5,
.publish-date h5 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.author p,
.publish-date p {
  font-size: 0.875rem;
  font-weight: 400;
}
.socail-wrap ul {
  list-style: none;
  margin-top: 1rem;
}
.socail-wrap ul li {
  display: inline-block;
  color: var(--main-dark);
  padding: 0.35rem;
}
.socail-wrap ul li a {
  color: var(--main-dark);
  width: 1.3rem;
  height: 1.3rem;
}
.socail-wrap a:hover {
  color: var(--second-yellow);
  transition: all 0.5s ease-in-out;
}
.post-content p {
  font-size: 1rem;
  line-height: 1.5;
}
.post-content .row {
  justify-content: center;
}
.post-content-col {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 48rem;
}

/*5.3 Umra single package style -------------------*/
.single-package-wrap {
  display: flex;
  padding: 5rem 3.5rem;
}
.single-package-wrap .package-name-wrap {
  width: 30%;
}
.package-name-wrap h1 {
  font-size: 6rem;
  margin-bottom: 1.5rem;
  max-width: 50%;
  line-height: 1.2;
}
.package-name-wrap p {
  max-width: 70%;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--font-gray);
}
.package-img-wrap {
  width: 69.99%;
}
.package-img-wrap img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: center;
}
.package-details {
  padding: 3.5rem 0;
  background-color: var(--second-main);
}
.package-details h2 {
  margin-bottom: 3.5rem;
  font-size: 4rem;
  line-height: 1.2;
}
.route-wrap {
  position: relative;
  height: 40vh;
  min-height: 460px;
}
.route-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-one {
  z-index: 2;
}
.img-two {
  z-index: 1;
}
.route-wrap .overlay-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  mix-blend-mode: multiply;
  /*background: #074f57;*/
  background-color: var(--font-gray);
}
.route-wrap .route-wrap-content {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.route-wrap-content h3 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--main-color);
}
.route-wrap-content h3 svg {
  width: 4rem;
  height: 4rem;
}
.route-wrap-content p {
  font-size: 1.5rem;
  color: var(--main-color);
  text-align: center;
}
.trip-dates-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1rem;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding: 1rem;
  height: 40vh;
  min-height: 460px;
}
.time-depart,
.time-return,
.durtaion {
  background-color: var(--main-dark);
  color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.time-depart svg,
.time-return svg,
.durtaion svg {
  width: 20%;
  height: 20%;
}
.time-return svg {
  transform: rotateY(180deg);
}
.detail-info {
  text-align: center;
}
.detail-info p {
  font-size: 1.2rem;
}
.package-post-content-row {
  justify-content: center;
}
.package-post-content {
  max-width: 50vw;
  padding: 3.5rem 0;
}
.package-prices-container {
  padding: 3.5rem 0;
  background-color: var(--second-main);
}
.package-prices-inner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-auto-columns: 2fr;
  align-items: stretch;
  grid-row-gap: 2rem;
  padding: 2rem;
}
.price-card {
  height: calc(25vw - 1rem);
  background-color: var(--main-color);
}
.icon-price-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80%;
}
.price-card svg {
  height: 50%;
  width: 50%;
  color: var(--main-dark);
}
.price-value {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20%;
  background-color: var(--main-dark);
}
.price-card p {
  font-size: 1.75rem;
  line-height: 1.5;
  text-align: center;
  color: var(--main-color);
}
.book-btn button {
  display: inline-block;
  width: 40%;
  padding: 0.75rem 1.5rem;
  text-align: center;
  border: none;
  font-size: 2rem;
  cursor: default;
  border-radius: 0.5rem;
  color: var(--main-dark);
  background-color: var(--main-color);
}

.wpcf7 {
  display: flex;
  justify-content: center;
}
.wpcf7-form {
  width: 40%;
  padding: 3rem 0;
}
.wpcf7-form label {
  width: 100%;
}
.wpcf7-form input {
  padding: 0.5rem;
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--font-gray);
}
.wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 0.5rem 1.25rem;
  text-align: center;
  border: none;
  font-size: 2rem;
  border-radius: 0.5rem;
  color: var(--main-dark);
  background-color: var(--main-yellow);
}
.wpcf7-form .wpcf7-submit:hover {
  background-color: var(--second-yellow);
  transition: all 0.4s ease-in-out;
}
/*
=========================================================
** 6. Contact Page & About Page styling
=========================================================

** 6.1 Contact Page  ==============================
*/
.contact-wrap {
  display: flex;
}
.company-info-wrap {
  max-width: 50%;
  padding: 5rem 0 3.5rem 3.5rem;
}
.company-info-wrap img {
  width: 5rem;
  height: 5rem;
}
.company-info-wrap h1 {
  font-size: 3rem;
  line-height: 1;
  margin: 1.5rem 0;
}
.company-info-wrap p {
  color: var(--font-gray);
}
.company-info-wrap span {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.company-info-wrap span svg {
  width: 2rem;
  height: 2rem;
}
.company-info-wrap ul {
  list-style: none;
  display: flex;
  padding: 1rem 0;
}
.company-info-wrap ul li {
  display: inline-block;
  height: 3rem;
  width: 3rem;
  margin: 0 0.5rem;
}
.company-info-wrap ul li:nth-child(1) {
  margin: 0 0.5rem 0 0;
}
.company-info-wrap ul li a {
  display: block;
  height: 100%;
}
.company-info-wrap ul li a svg {
  display: block;
  height: 100%;
  width: auto;
  color: var(--main-dark);
}
.company-info-wrap ul li a svg:hover {
  color: var(--main-yellow);
  transition: all 0.5s ease-in-out;
}
.contact-from-wrap {
  display: flex;
  justify-content: center;
  width: 50%;
  background-color: var(--second-main);
}
.contact-from-wrap .wpcf7-form {
  padding-top: 5rem;
  width: 100%;
}
.contact-from-wrap .wpcf7-form textarea {
  padding: 0.5rem;
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--font-gray);
}
/*
=========================================================
** .. The footer styling
=========================================================

** ..1 the big wrapper and the image  ==============================
*/
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50vh;
  min-height: 460px;
  padding: 1.5rem 3.5rem;
  background-color: var(--main-color);
}
.upper-part {
  height: 60%;
}
.upper-part .row,
.first-col,
.second-col {
  height: 100%;
}
.first-col {
  display: flex;
  align-items: center;
  padding-left: 0;
}
.first-col a {
  display: block;
  width: 30%;
}
.first-col a img {
  width: 100%;
}
.first-col p {
  width: 70%;
  font-size: 1rem;
  color: var(--main-dark);
}
.second-col {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 0;
}
.second-col ul {
  height: 40%;
  padding: 0;
  margin: 0;
  text-align: right;
}
.second-col ul li {
  display: inline-block;
  height: 100%;
  padding: 1rem;
}
.second-col ul li a {
  display: block;
  height: 100%;
}
.second-col ul li a svg {
  display: block;
  height: 100%;
  width: auto;
  color: var(--main-dark);
}
.second-col ul li a svg:hover {
  color: var(--main-yellow);
  transition: all 0.5s ease-in-out;
}
.lower-part {
  border-top: 1px solid var(--font-gray);
  text-align: center;
}
.lower-part h6 {
  padding: 2rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--main-dark);
}
.lower-part a {
  color: var(--main-dark);
}
.lower-part a:hover {
  color: var(--second-yellow);
}
/* ===================================== Responsive Setup ============================*/
@media only screen and (max-width: 1025px) {
  /* header */
  .menu-wrap > ul,
  .menu-wrap a {
    display: none;
  }
  .responsive-menu-btn {
    display: block;
  }
  /* Home page */
  .hero-section h1 {
    font-size: 3rem;
  }
  .hero-content {
    padding: 3rem 1rem 3rem 3.5rem;
  }
  .about-article-wrap article h2 {
    font-size: 2rem;
  }
  .about-article-wrap article p {
    font-size: 1rem;
  }
  .umra-card {
    height: 60vh;
  }
  .umra-card-content {
    padding: 0.5rem;
  }
  .main h4 a {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .umra-card-content .main p {
    font-size: 1rem;
  }
  .umra-card-content .main span {
    font-size: 1.25rem;
  }
  .more-flights a {
    font-size: 1.25rem;
  }
  .blog-wrap .row h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
  }
  .post-content img {
    min-height: 240px;
  }
  .normal-post {
    grid-column-gap: 0.5rem;
  }
  .normal-post img {
    object-position: center;
    object-fit: cover;
  }
  .normal-post-content span {
    margin: 0.25rem 0;
  }
  .more-blog-posts a {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .contact-content h5 {
    font-size: 2.5rem;
  }
  .contact-content p {
    font-size: 1rem;
  }
  /*
  Contact Page
  */
  .company-info-wrap h1{
      font-size: 2.5rem;
  }

  /* footer */
  .first-col a {
    width: 30%;
    min-width: none;
  }
  .first-col p {
    width: 70%;
  }
}
@media only screen and (max-width: 993px) {
  /*
  **1- 1.2 fonts styling 
  */
  h1 {
    font-size: 48px;
    line-height: 72px;
  }
  h2 {
    font-size: 40px;
    line-height: 60px;
  }
  h3 {
    font-size: 32px;
    line-height: 48px;
  }
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
  h5 {
    font-size: 18px;
    line-height: 27px;
  }
  /* Header */
  header nav {
    align-items: center;
  }
  header,
  .slideDown-menu-wrap {
    padding: 1.5rem 2.5rem;
  }
  /* Home page */
  .hero-content {
    padding: 3rem 1rem 3rem 2.5rem;
  }
  .about-section {
    padding: 2.5rem;
  }
  .packages-section .row,
  .blog-wrap .row {
    padding: 1.5rem 1.75rem;
  }
  .contact-content {
    padding: 0 15%;
  }
  /* Contact Page */
  .company-info-wrap{
      padding: 5rem 0 2.5rem 2.5rem;
  }

  /* Footer */
  footer {
    padding: 1.5rem 2.5rem;
    min-height: 0;
  }
}

@media only screen and (max-width: 769px) {
  /*
  **1- 1.2 fonts styling 
  */
  h1 {
    font-size: 40px;
    line-height: 60px;
  }
  h2 {
    font-size: 36px;
    line-height: 44px;
  }
  h3 {
    font-size: 28px;
    line-height: 42px;
  }
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
  h5 {
    font-size: 18px;
    line-height: 27px;
  }
  /* header */
  header,
  .slideDown-menu-wrap {
    padding: 1.5rem;
  }
  /* Home page */
  .hero-content-wrap {
    width: 0;
  }
  .img-effect-wrap {
    width: 100%;
  }
  .hero-content {
    z-index: 15;
    padding: 1.5rem;
    width: 80vw;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    color: var(--main-color);
  }
  .about-section {
    padding: 2.5rem 1.5rem;
  }
  .about-article-wrap article p {
    margin-bottom: 0.5rem;
  }
  .main h4 a {
    font-size: 1.25rem;
  }
  .umra-card-content .main span {
    font-size: 1rem;
  }
  .more-flights {
    text-align: center;
  }
  .packages-section .row,
  .blog-wrap .row {
    padding: 1.5rem 0.75rem;
  }
  .blog-wrap .row h3 {
    font-size: 2rem;
  }
  .post-content {
    margin-bottom: 2rem;
  }
  .post-content p {
    width: 80%;
  }
  .normal-post {
    grid-column-gap: 1rem;
  }
  .contact-wrap{
      flex-direction: column;
  }
  .company-info-wrap{
      padding: 5rem 3.5rem;
      max-width: 100%;
      width: 100%;
  }
  .contact-from-wrap{
      width: 100%;
  }
  .contact-content {
    padding: 0 10%;
  }
  .normal-post-content h5 {
    margin-bottom: 0.75rem;
  }
  .contact-content h5 
  /* Contact page */
  .company-info-wrap{
      max-width: 100%;
  }
  .company-info-wrap p{
      max-width:80%;
  }
  /* footer */
  footer {
    padding: 1.5rem;
    height: auto;
  }
  footer .second-col {
    justify-content: center;
  }
  .second-col ul{
      display: flex;
  }
  .second-col ul li a svg {
    width: 2rem;
    height: 2rem;
  }
  .lower-part h6 {
    padding: 0;
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 561px) {
  /* body */
  body {
    font-size: 14px;
  }
  /* Header */
  header {
    padding: 1rem;
  }
  /* Home page */
  .hero-content {
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content a {
    padding: 0.5rem 1rem;
  }
  .about-section {
    padding: 2rem 1rem;
  }
  .about-article-wrap article h2 {
    font-size: 1.75rem;
  }
  .about-article-wrap article p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .packages-section .row,
  .blog-wrap .row {
    padding: 1rem 0.25rem;
  }
  .umra-card {
    height: 50vh;
  }
  .more-flights a {
    padding: 0.5rem 1rem;
  }
  .blog-wrap .row h3 {
    font-size: 1.75rem;
    padding: 0.5rem 0;
  }
  .main-post span,
  .normal-post-content span {
    margin: 0.5rem 0 0.25rem 0;
  }
  .main-post h4 {
    font-size: 1.25rem;
  }
  .post-content p {
    font-size: 0.875rem;
  }
  .main-post span,
  .normal-post-content span {
    border-radius: 0.256rem;
  }
  .main-post .post-link,
  .normal-post-content .post-link {
    border-radius: 0.256rem;
    padding: 0.125rem 0.5rem;
  }
  .more-blog-posts a {
    font-size: 0.875rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
  }
  .contact-content h5{
    font-size: 1.75rem;
  }
  .contact-content{
    padding: 0 1rem;
  }
  /* Contact Page */
  .company-info-wrap {
    max-width: 100%;
    padding: 5rem 1.5rem 1.5rem 1.5rem;
}
  /* footer */
  footer {
    padding: 1rem;
  }
  .first-col p{
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 360px) {
    
}
