::-webkit-scrollbar {
  width: 5px; /* width of vertical scrollbar */
  height: 5px; /* height of horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #f8b5a1; /* scrollbar track */
  /* border-radius: 10px; */
}

::-webkit-scrollbar-thumb {
  background: #f1663e;
  /* border-radius: 10px; */
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: DM;
  src: url(./fonts/DM_Sans/DMSans-VariableFont_opsz\wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: DM;
}

body {
  width: 100%;
  height: 100vh;
}
/* header section  */
nav {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 100000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35em 7em 1.35em 7.7em;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.nav .nav-link {
  color: #020842;
  font-weight: 500;
  transition: all 0.3s;
}
.draw-down {
  font-size: 11px;
  /* font-weight: 400; */
}
.nav .nav-icon {
  margin: 0 -5px;
  font-size: 20px;
  font-weight: 300;
}
.nav .nav-link:hover {
  color: #f16663;
}
.nav .nav-icon:hover {
  color: #020842;
}

/* header section end  */

/* hero section  */
.hero {
  width: 100%;
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3.4em 0 7.5em;
  background-image: url(./images/hero/hero-bg-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  box-sizing: border-box;
  /* scroll-margin-top: 100px; */
}
.hero-title {
  text-transform: capitalize;
  font-size: 70px;
  font-weight: 600;
  line-height: 125%;
  color: #020842;
}
.hero .hero-detail {
  max-width: 500px;
  margin-top: 20px;
  color: #687799;
}

/* heor shap aniamtion */
.hero-shap-2 {
  width: 6em;
  position: absolute;
  top: 6.5em;
  left: 10em;
  animation: moving 1.5s ease-in-out infinite alternate;
}
@keyframes moving {
  from {
    top: 6.5em;
  }
  to {
    top: 5em;
  }
}
/* heroshap 3 animation */
.hero-shap-3 {
  width: 6.5em;
  position: absolute;
  bottom: 7em;
  right: 9em;
  animation: shap2 1.5s ease-in-out infinite alternate;
}
@keyframes shap2 {
  from {
    bottom: 7em;
  }
  to {
    bottom: 8.5em;
  }
}

/* animation for boxes  */
.box-shape-1 {
  position: absolute;
  bottom: 8.5em;
  left: 42%;
  animation: box1 1.5s ease-in-out infinite alternate;
}
@keyframes box1 {
  from {
    bottom: 8.5em;
  }
  to {
    bottom: 10em;
  }
}
.box-shape-2 {
  /* width: 6em; */
  position: absolute;
  top: 12.6em;
  right: 3.5em;
  animation: box2 1.5s ease-in-out infinite alternate;
}
@keyframes box2 {
  from {
    right: 3.5em;
  }
  to {
    right: 2em;
  }
}

/* About section  */
.about {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 100px;
  background-color: #fbfbfc;
  scroll-margin-top: 30px;
}
.about-image-item {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 1em 1.5em;
}
.left-img {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.about-image > img {
  border-radius: 15px;
}
.counter-box {
  padding: 50px 40px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  border-radius: 8px;
  margin-top: 24px;
  min-width: 240px;
}
.count {
  font-size: 66px;
  font-weight: 700;
  color: #f1663e;
}
.counter-box p {
  font-size: 20px;
}
.about-image-2 {
  width: 280px;
  height: 500px;
  margin-top: 3em;
}
.about-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.about-content {
  display: flex;
  flex-direction: column;
  /* padding-right: 3em; */
}
.about-content .section-title .title-btn {
  font-size: 13px;
  font-weight: 600;
  color: #f1663e;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 30px;
  text-transform: capitalize;
  border-radius: 4px;
  background: rgba(241, 102, 62, 0.1);
  padding: 10px 14px;
  line-height: 1;
  display: inline-block;
}
.about-content .section-title .title-text {
  font-size: 44px;
  font-weight: 700;
  line-height: 57px;
  color: #020842;
}
.icon-items-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(35, 28, 37, 0.14);
}
.icon-items {
  display: flex;
  align-items: center;
  gap: 22px;
}
.icon-items h5 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: #020842;
}
.about-content p {
  font-weight: 400;
  line-height: 28px;
  color: #687799;
}
.about-content a {
  text-decoration: none;
  outline: 0 !important;
  cursor: pointer;
}

.about-content .about-us-button {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  margin-top: 40px;
}
.theme-btn {
  display: inline-block;
  vertical-align: middle;
  background-color: #f1663e;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding: 6px 6px 6px 32px;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 44px;
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  transition: all 0.4s;
}
.theme-btn:hover::before {
  height: 75px;
  padding: 7px;
  border-radius: 0 0 50% 50%;
}
.theme-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  background-color: hsl(234, 94%, 13%);
  height: 0;
  border: none;
  border-radius: 0 0 100% 100%;
  cursor: pointer;
  transition: 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.theme-btn span {
  position: relative;
  color: var(--white);
  z-index: 999;
  margin-right: 25px;
}
.theme-btn .fa-arrow-right {
  position: relative;
  color: #020842;
  z-index: 999;
  width: 43px;
  height: 43px;
  line-height: 43px;
  background-color: #fff;
  border-radius: 50%;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.client-info h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 175%;
}
/* about section styling end  */

/* services section  */
.service {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;
  scroll-margin-top: 30px;
}
.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -6px;
}
.section-title .sub-title {
  font-size: 13px;
  font-weight: 600;
  color: #f1663e;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 30px;
  text-transform: capitalize;
  border-radius: 4px;
  background: rgba(241, 102, 62, 0.1);
  padding: 10px 14px;
  line-height: 1;
  display: inline-block;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: #020842;
}
.services-cards .card {
  position: relative;
  margin-top: 30px;
  padding: 1em 2em;
  border-radius: 6px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}
.services-cards .card .card-body h3 > a {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
  color: #020842;
  text-decoration: none;
  margin: 35px 0 20px 0;
  transition: all 0.4s ease-in-out;
}
.services-cards .card .card-body ul {
  padding: 0;
  margin: 10px;
  transition: all 0.4s ease-in-out;
}
.services-cards .card .card-body ul li {
  font-size: 1em;
  font-weight: 500;
  line-height: 28px;
  color: #687799;
  margin-bottom: 35px;
  transition: all 0.4s ease-in-out;
}
.services-cards .link-btn {
  background-color: #e0f8f5;
  color: #f1663e;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
.services-cards .link-btn .fa-arrow-right {
  background-color: #e0f8f5;
  color: #f1663e;
  rotate: 320deg;
}
.services-cards .card:hover {
  background-image: url(./images/services/hover-bg.jpg);
  background-size: cover;
  color: white;
}
.services-cards .card:hover .card-body h3 > a,
.services-cards .card:hover .card-body ul li {
  color: white;
}

/* why choose us start  */
.choose-us-section {
  background-color: #f0fcfa;
  padding: 100px 0;
}
.choose-us-section .section-title h2 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  color: #020842;
}
.choose-us-section .choose-us-text {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #687799;
  margin-top: 20px;
  max-width: 500px;
  border-bottom: 1px solid rgba(35, 28, 37, 0.14);
  padding-bottom: 35px;
}
.choose-us-section .counter-area {
  display: flex;
  align-items: center;
  gap: 85px;
  margin-top: 27px;
}
.counter-area .counter-content h3 {
  color: #f1663e;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 122.727%;
  letter-spacing: -1.32px;
  margin-bottom: 8px;
}
.choose-us-content .counter-area .counter-content P {
  color: #687799;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}
.choose-us-info .choose-us-box-items {
  padding: 31px 20px 31px 37px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 6px;
  background: #ffffff;
  margin-bottom: 27px;
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
}

/* end  */

/* team section styling start  */
.team-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.team-wrapper-2 .team-thumb img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.team-wrapper-2 .team-content-area .team-content {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  color: #000000;
  transition: all 0.4s;
}
.team-wrapper-2 .team-content-area .team-content .fa-slash {
  transform: rotate(90deg);
}
/* .team-content-area .team-content:hover { */
/* } */
.team-content .team-items-1,
.team-items-1 a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  color: black;
}
.team-content .team-items-2 {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease-in-out;
  justify-content: space-between;
  width: 70%;
}
.team-content .team-items-2 .fa-slash {
  color: #687799;
}
.team-content .team-items-2 a {
  text-decoration: none;
  color: black;
}
.team-wrapper-2 .team-content-area .team-content:hover {
  background-color: #f1663e;
  border-radius: 5px;
}
.team-wrapper-2 .team-content-area .team-content:hover .team-items-1,
.team-wrapper-2 .team-content-area .team-content:hover .team-items-1 a,
.team-wrapper-2 .team-content-area .team-content:hover .team-items-2 .fa-solid,
.team-wrapper-2 .team-content-area .team-content:hover .team-items-2 a {
  color: white;
}

/* tour-section  */
.video-tour-section {
  position: relative;
  overflow: hidden;
  background-image: url(./images/video-tutor/videoTourThumb1_1.jpg);
  background-size: cover;
}
.video-tour-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 8, 66, 0.76);
  opacity: 0.75;
}
.video-tour-wrapper-1 {
  padding: 100px 0;
}
.video-tour-content-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  z-index: 1000;
}

.section-title .sub-title.style-2 {
  background: #fefeff;
}
.video-tour-wrapper-1 .video-tour-content-info {
  justify-items: center;
}

.video-tour-wrapper-1 .video-tour-content-info .video-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.video-tour-wrapper-1 .video-tour-content-info .video-button .video-btn {
  background-color: #ffffff;
  color: #f1663e;
  display: inline-block;
  font-size: 18px;
  height: 63px;
  width: 63px;
  line-height: 63px;
  border-radius: 50%;
  text-align: center;
}

/* portfolio  */
.portfolio {
  padding: 100px 0;
}
.portfolio .section-title {
  position: sticky !important;
  top: 120px;
}
.portfolio .sub-title {
  background-color: #feefeb !important;
}
.portfolio .portfolio-text {
  font-weight: 400;
  line-height: 28px;
  color: #687799;
}
.portfolio .card-item {
  position: relative;
  width: 550px;
  height: 300px;
  margin-bottom: 20px;
  margin-left: 100px;
}
.portfolio .card-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.portfolio .card-text {
  position: absolute;
  bottom: 8%;
  left: 4%;
  padding: 25px 113px 27px 25px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
}
.portfolio .card-text span {
  display: inline-flex;
  padding: 8px 19px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background-color: #e0f8f5 !important;
  color: #f1663e;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
}
.portfolio .card-text h4 a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
  color: #020842;
  transition: color 0.3s ease-in-out;
}
.portfolio .card-text h4 a:hover {
  color: #f1663e;
}
.portfolio .arrow-button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.portfolio .arrow-button .post-box {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #f1663e;
  text-align: center;
  font-size: 20px;
  rotate: 320deg;
  transition: all 0.4s ease-in-out;
}
.portfolio .arrow-button .post-box:hover {
  background-color: #f1663e;
  color: #ffffff;
  rotate: 360deg;
}
.portfolio .arrow-button .post-box i {
  font-size: 20px;
  margin-left: 0;
}

/* testimantil section  */
.testimonial-section {
  padding: 100px 0;
  background-color: #fef1ee;
}

.testimonial-card {
  position: relative;
  padding: 45px 45px 45px 0;
  padding-left: 130px;
  border-radius: 12px;
  margin-left: 30px;
  background-color: #ffffff;
}
.testimonial-card .icon {
  position: absolute;
  border-radius: 50%;
  left: -30px;
  top: 35px;
}
.testimonial-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-card .star {
  color: #f1663e;
  margin-left: 13.5em;
  margin-bottom: 35px;
}
.testimonial-card .content > p {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  color: #687799;
}
.testimonial-card .client-info ul {
  list-style: none;
  padding-left: 0;
}
.testimonial-card .client-info ul li {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #525b5a;
}
.testimonial-card .client-info ul li > span {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #687799;
}

.testimonial-card .client-info-thumb {
  position: absolute;
  left: 8em;
  top: 40px;
}
.testimonial-card .client-info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* our FAQS  */
.FAQs {
  padding: 100px 0;
  background-color: #fefefe;
}
.FAQs .faqs-content p {
  color: #687799 !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
}
.theme-btn {
  display: inline-block;
  vertical-align: middle;
  background-color: #f1663e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  padding: 6px 6px 6px 32px;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 44px;
  line-height: 1;
}

.theme-btn span {
  position: relative;
  color: #ffffff;
  z-index: 999;
  margin-right: 25px;
}

@media (max-width: 575px) {
  .theme-btn span {
    margin-right: 15px;
  }
}
.faqs-content .faqs-button .contect-icon-box .contect-icon {
  background: #f1663e;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}
.faqs-content .contect-icon-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contect-content span {
  color: #687799;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.contect-content h3 {
  color: #020842;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.36px;
}
.accordion-item {
  width: 600px;
  border: 0;
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid rgba(2, 8, 66, 0.12);
  box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
  outline: none;
}
.accordion-item .accordion-header > .accordion-button {
  font-weight: 600;
  color: #020842;
  letter-spacing: -0.2px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: #ffffff;
  padding: 25px 30px;
  text-transform: capitalize;
  font-size: 20px;
  border-radius: 6px;
}
.accordion-item .accordion-collapse > .accordion-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding-right: 150px;
  padding-left: 30px;
  padding-top: 15px;
  color: #687799 !important;
  border-radius: 12px;
  background-color: #ffffff;
}

/* blog section styling staryt  */
.blog {
  width: 100%;
  padding: 100px 0;
  background-color: #fef1ee;
}
.blog .section-title p {
  font-size: 1em;
  font-weight: 400;
  line-height: 28px;
  color: #687799;
}
.news-card-items .news-thumb {
  position: relative;
}
.news-card-items .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.news-card-items .news-thumb .number {
  position: absolute;
  bottom: -8px;
  right: -1px;
  display: grid;
  color: #f1663e;
  width: 78px;
  height: 78px;
  line-height: 1;
  text-align: center;
  background-color: #ffffff;
  padding: 12px 14px;
  font-size: 24px;
  font-weight: 800;
  border-radius: 12px 0;
}
.news-card-items .news-content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(100, 105, 112, 0.13);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.news-card-items .news-content .post-meta li {
  font-size: 15px;
  font-weight: 400;
  color: #687799;
  display: flex;
  align-items: center;
}
.news-card-items .news-content .post-meta {
  position: relative;
  margin: 20px 0 20px -25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.news-card-items .news-content .post-meta li {
  padding-right: 30px;
}
.news-card-items .news-content .post-meta li:first-child {
  border-right: 1px solid;
  /* padding: 10px 30px 10px 0; */
}
.news-card-items .news-content .post-meta li i {
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
  margin-right: 5px;
  color: #f1663e;
}
.news-card-items .news-content h3 a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  line-height: 155%;
  text-decoration: none;
  outline: 0 !important;
  cursor: pointer;
  color: #020842;
  transition: all 0.4s ease-in-out;
}
.news-card-items .news-content h3 a:hover {
  color: #f1663e;
}
.news-card-items .news-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #687799;
}
.news-card-items .link-btn {
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
  color: #f1663e;
}
.news-card-items .link-btn .fa-arrow-right {
  transform: rotate(-20deg);
  transition: all 0.3s;
}
.news-card-items .link-btn:hover .fa-arrow-right {
  transform: rotate(0deg);
}

/* footer section styling start  */
.secondary-footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url(./images/footer/bg-1.jpg);
  background-size: cover;
  padding: 100px 0 0 0;
}
.secondary-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 8, 66, 0.93);
  /* opacity: 0.75; */
}
.theme-btn {
  display: inline-block;
  text-decoration: none;
}
.secondary-footer .section-links {
  z-index: 10;
}
.secondary-footer .section-links ul {
  list-style: none;
  margin-left: -30px;
  margin-top: 30px;
}
.secondary-footer .section-links ul li {
  margin-bottom: 8px;
}
.secondary-footer .section-links ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: white;
  transition: all 0.4s;
}
.secondary-footer .section-links ul li a:hover {
  color: #f1663e;
  padding-left: 10px;
}
.secondary-footer .section-links .news-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
}
.secondary-footer .section-links img {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}
.secondary-footer .section-links .news-item ul {
  margin-top: 0;
}
.secondary-footer .section-links .news-item ul li a {
  padding-left: 0;
}
.footer-second {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #14194f;
  padding: 40px 50px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* position: relative; */
  margin: 50px 0;
}
.footer-second .image img {
  width: 100%;
  height: 100%;
}
.footer-second .contact-info-items {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 10px;
}
.footer-second .contact-info-items .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  border: 1.8px solid rgba(255, 255, 255, 0.13);
  text-align: center;
  color: #ffffff;
}
.contact-info-items .content h6 {
  font-weight: 700;
  color: #ffffff;
}
.contact-info-items .content p {
  color: #f1663e;
  margin-bottom: 5px;
}
.footer-bottom {
  padding: 20px 0;
  background: #14194f;
  position: relative;
}
.footer-bottom .footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}
.footer-bottom .social-icon i {
  color: #ffffff;
}
/* ===================== */
/* Responsive Design */
/* ===================== */

/* Large Tablets (max-width: 1200px) */
@media (max-width: 1200px) {
  .nav-bar {
    padding: 1em 4em;
  }

  .hero-title {
    font-size: 55px;
  }

  .hero {
    padding: 0 2em;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .nav {
    gap: 1em;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3em 2em;
  }

  .hero-details {
    margin-bottom: 2em;
  }

  .hero-title {
    font-size: 45px;
  }

  .hero .hero-detail {
    margin: 1em auto;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .nav-bar {
    padding: 1em 2em;
  }

  .nav {
    display: none; /* hide default nav */
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1em;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-bar .nav-item {
    margin: 0.5em 0;
  }

  /* show menu icon */
  .nav .nav-icon:last-child {
    display: block;
  }

  .hero-title {
    font-size: 35px;
    line-height: 1.2;
  }

  .hero .hero-detail {
    font-size: 15px;
    max-width: 90%;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero {
    width: 100%;
    display: flex;
    justify-content: left;
    text-align: left;
  }
  .hero-title {
    /* width: 80%; */
    font-size: 28px;
  }

  .hero .hero-detail {
    width: 100%;
    margin-left: -3px;
    font-size: 14px;
  }
  .hero-mage {
    padding: 0;
    margin: 0;
  }
  .hero-image > img {
    padding: 0;
    margin-bottom: -45px;
  }
  .nav-bar {
    padding: 1em;
  }
  .hero-shap,
  .box-shap {
    display: none;
  }
}
