* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --theme-color1: #0b3b5e;
  --theme-color2: #ff6d2e;
  --theme-color3: #ebf1f5;
  --theme-color4: #7c858c;
  --bg-theme-color1: #0b3b5e;
  --bg-theme-color2: #ff6d2e;
  --bg-theme-color3: #ebf1f5;
  --bg-theme-color4: #7c858c;
  --border-theme-color1: #0b3b5e;
  --border-theme-color2: #ff6d2e;
  --border-theme-color3: #ebf1f5;
  --border-theme-color4: #7c858c;
}
ul {
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.primary-btn {
  position: relative;
  font-size: 13px;
  line-height: 25px;
  color: #ffffff;
  padding: 15px 40px;
  font-weight: 600;
  background: var(--bg-theme-color2);
  letter-spacing: 0.1em;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
  z-index: 1;
  border: none;
  transition: all 0.5s;
  border-radius: 0px;
}
.primary-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--bg-theme-color1);
  z-index: -1;
  transform: scale(0, 1);
  transform-origin: top right;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.primary-btn:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.primary-btn:hover {
  color: #ffffff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  border: none;
}
.sec-title {
  margin-bottom: 25px;
}
.sub-title {
  position: relative;
  display: block;
  font-size: 14px;
  color: var(--theme-color4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 10px;
  padding-top: 10px;
}
.sub-title::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 42px;
  background: var(--bg-theme-color2);
  content: "";
}
.sec-title h2 {
  position: relative;
  line-height: 1.2em;
  color: var(--theme-color1);
  font-size: 50px;
  font-weight: 700;
}
/* scroll-to-top  */

#scroll-to-top {
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 16px;
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

/* navbar  */
.navbar {
  z-index: 99999999999999999999999;
}
/* carousel  */
.carousel-bg {
  background: linear-gradient(rgba(51, 91, 131, 0.6), rgba(51, 91, 131, 0.6)),
    url("../assets/img/bg/bg-1.jpg");
  height: 100vh;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px;
  background-position: center;
  animation: carouselAnimation 10s infinite;
}
.carousel-caption {
  right: 0%;
  top: 20%;
  text-align: left;
}

.carousel-inner {
  text-align: left;
}
.carousel-content p {
  font-size: 18px;
  line-height: 36px;
}
@keyframes carouselAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* services section start  */
.service-section {
  position: relative;
  /* margin-top: -100px; */
  /* background: url("../assets/img/pattern-1.png"); */
  /* height: 668px; */
  /* background-repeat: no-repeat; */
  /* object-fit: cover; */
  height: 100%;
  background-color: var(--bg-theme-color1);
  width: 100%;
}

.service-section .card {
  position: relative;
  background: #ffffff;
  padding: 80px 20px 20px;
  text-align: center;
  transition: all 300ms ease;
  margin-top: -50px;
  transition: all 0.5s;
  z-index: 155;
}

.card-icon i {
  position: absolute;
  left: 50%;
  top: -55px;
  margin-left: -55px;
  height: 110px;
  width: 110px;
  background: var(--bg-theme-color2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  border-radius: 50%;
  transition: all 300ms ease;
  z-index: 1;
}

.service-section .card:hover .card-icon i {
  background: var(--bg-theme-color1);
}
.service-section .card .img-box {
  overflow: hidden;
  transition: 0.5s all;
}
.service-section .card img {
  transition: 0.5s all;
  object-fit: cover;
}
.service-section .card:hover {
  transform: translateY(-20px);
  box-shadow: 0 10px 20px rgb(0 0 0 / 40%);
}
.service-section .card img:hover {
  transform: scale(1, 1.5);
}
.service-section .card p {
  font-size: 16px;
  line-height: 32px;
  color: #7c858c;
  padding: 0 20px;
  margin-bottom: 20px;
}
.service-section .services-text p {
  font-size: 18px;
  color: #8fa1ae;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}
.service-section .services-text p strong {
  border-bottom: 2px solid var(--border-theme-color2);
}

/* about section start  */
.about-section {
  position: relative;
  padding: 120px 0 70px;
  padding-bottom: 50px;
}
.about-section .about-banner {
  background-image: url(../assets/img/about/about-1.jpg);
  background-position: center;
  background-size: cover;
  object-fit: cover;
  height: 90vh;
  position: relative;
}
.about-section .about-banner .about-expert-info {
  background: var(--bg-theme-color2);
  clip-path: polygon(0 0, 100% 14%, 100% 100%, 0% 100%);
  width: 200px;
  height: 150px;
  position: absolute;
  left: 0;
  top: 50px;
}
.about-section .about-banner .about-banner-img {
  background: #fff;
  position: absolute;
  left: 20px;
  bottom: -50px;
}
.about-section .about-banner .about-banner-img::after {
  content: "";
  position: absolute;
  background: #ff6d2e;
  height: 10px;
  width: 60%;
  right: -196px;
  bottom: 0px;
}
.about-section .about-banner .about-banner-img img {
  padding: 20px;
}
.about-section .about-content {
  position: relative;
  z-index: 9;
}
.about-section .about-content .about-info {
  position: absolute;
  background: #fff;
  top: 50px;
  left: -100px;
}
.about-section .about-info p {
  color: #7c858c;
}
.about-section .about-info .blockquote p {
  color: var(--theme-color2);
  padding-left: 20px;
  border-left: 5px solid var(--border-theme-color1);
}
.about-section .about-info .youtube-btn {
  position: relative;
}
.about-section .about-info ul li {
  color: var(--theme-color1);
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
}
.about-section .about-info ul li i {
  color: var(--theme-color2);
  font-size: 28px;
  line-height: 30px;
}
.about-section .about-info .youtube-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-theme-color2);
  height: 70px;
  background: #fff;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
}

.wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #fff;
  z-index: 999;
}

@keyframes waves {
  0% {
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #fff;
  opacity: 0;
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  animation: waves 3s ease-in-out infinite;
}
.wave-1 {
  animation-delay: 0s;
}
.wave-2 {
  animation-delay: 1s;
}
.wave-3 {
  animation-delay: 2s;
}
/* work section start  */
.work-area {
  position: relative;
  padding: 120px 0 70px;
}
.work-area .sub-title::before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 2px;
  width: 42px;
  background: var(--bg-theme-color2);
  content: "";
}
.work-block {
  position: relative;
  margin-bottom: 50px;
  margin-top: 50px;
  z-index: 1;
  text-align: center;
}

.work-card-icon {
  background: #fff;
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -50px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
  left: 50%;
  font-size: 54px;
  transition: all 300ms ease;
  margin-left: -50px;
  color: var(--bg-theme-color2);
  transition: all 0.5s;
}
.work-card-icon::after {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  content: "";
  transition: all 300ms ease;
}
.work-card-body {
  position: relative;
  background: var(--bg-theme-color3);
  padding: 85px 30px 30px;
  margin-bottom: 40px;
  transition: all 500ms ease;
}
.work-card-body::after {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--border-theme-color3);
  content: "";
  transition: all 300ms ease;
}
.work-block h4 {
  position: relative;
  color: var(--theme-color1);
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.work-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 600;
  background: var(--bg-theme-color1);
  letter-spacing: 0.05em;
  overflow: hidden;
  text-transform: uppercase;
}
.work-btn .count {
  position: relative;
  padding: 15px 10px;
  width: 55px;
}
.work-btn .count span {
  position: relative;
  color: #ffffff;
  z-index: 1;
}
.work-btn .count::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--bg-theme-color2);
  content: "";
  transition: all 500ms ease;
}
.work-btn .work-btn-title {
  display: inline-block;
  padding: 15px 35px;
  position: relative;
  z-index: 2;
  color: #fff;
  transition: all 0.5s;
}

.work-card:hover .work-card-icon {
  background: var(--bg-theme-color2);
  color: #fff;
}
.work-card:hover .work-card-icon::after {
  border-top: 10px solid var(--border-theme-color2);
}
.work-card:hover .work-card-body {
  background: var(--bg-theme-color1);
  color: rgb(211, 210, 210);
}
.work-card:hover .work-card-body h4 {
  color: #fff;
}
.work-card:hover .count::after {
  background: var(--bg-theme-color1);
}
.work-card:hover .work-btn-title {
  background: var(--bg-theme-color2);
  color: #fff;
}

/* fun fact section start  */
.fact-section {
  position: relative;
  padding: 120px 0 0;
}
.fact-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 120px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: center top;
  background: linear-gradient(rgba(51, 91, 131, 0.8), rgba(51, 91, 131, 0.8)),
    url(../assets/img/bg/1.png);
}

.fact-card {
  position: relative;
}
.fact-card:hover .fact-icon-card {
  transform: scale(0.8);
  background-color: var(--bg-theme-color3);
}
.fact-icon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 160px;
  width: 200px;
  background-color: #fff;
  border-top: 4px solid var(--border-theme-color2);
  transition: all 300ms ease;
  margin: 0 auto -60px;
  z-index: 1;
}
.fact-icon-card img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  padding: 30px;
}
.fact-card-body {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 60px 50px 36px;
  padding-right: 30px;
  border-top: 4px solid var(--border-theme-color2);
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}
.fact-card-body .cont-box {
  font-size: 60px;
  color: var(--theme-color1);
  font-weight: 700;
  line-height: 1em;
  margin-right: 20px;
  text-transform: uppercase;
}
.fact-card-body span {
  font-size: 60px;
  color: var(--theme-color1);
  font-weight: 700;
  line-height: 1em;
}
.fact-card-body h4 {
  display: inline-block;
  font-size: 16px;
  line-height: 25px;
  color: #7c858c;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
/* project section start  */
.project-area {
  position: relative;
  z-index: 1;
}
.project-area .sub-title::before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 2px;
  width: 42px;
  background: var(--bg-theme-color2);
  content: "";
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-block {
  position: relative;
}
.project-block .inner-box {
  position: relative;
  padding: 0 0px 30px;
}
.project-block .image-box {
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
}
.project-block .image {
  position: relative;
  margin-bottom: 0px;
}
.project-block .image::before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.project-block .image a {
  display: block;
  width: 100%;
}
.project-block .image img {
  width: 100%;
  transition: all 300ms ease;
}
.project-block .image img {
  width: 100%;
  transition: all 300ms ease;
}
.project-block .content-box {
  position: relative;
  margin-top: -50px;
  padding-left: 45px;
}
.project-block .content-box .inner {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  padding: 18px 50px 23px 30px;
}
.project-block .content-box .inner .title {
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--theme-color2);
}
.project-block .content-box .inner h4 {
  display: block;
  font-size: 20px;
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 5px;
}
.project-block .content-box .inner h4 a {
  color: var(--theme-color1);
  transition: all 300ms ease;
}
.project-block .content-box .inner .icon {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50px;
  color: #fff;
  font-size: 18px;
  background-color: var(--bg-theme-color1);
  transition: all 300ms ease;
}
.inner-box .content-box h4 a:hover {
  color: var(--bg-theme-color2);
}
.inner-box:hover .content-box .inner .icon {
  background-color: var(--bg-theme-color2);
}
/* team-section start  */
.team-section .card-title {
  color: var(--bg-theme-color1);
}
.team-section .designation {
  color: var(--bg-theme-color2);
  text-transform: uppercase;
}
.team-section .card-text {
  color: #7c858c;
}
.social-link li {
  display: inline-block;
}
.social-link li a {
  display: block;
  background: #07304d;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  color: var(--bg-theme-color3);
  transition: all 0.5s;
}
.social-link li a:hover {
  background: var(--bg-theme-color2);
}
/* faqs section start  */
.faqs {
  background: linear-gradient(
      rgba(234, 240, 244, 0.9),
      rgba(234, 240, 244, 0.9)
    ),
    url(../assets/img/1.png);
}
.faq-block {
  margin-bottom: 40px;
  position: relative;
}
.faq-block .faq-content {
  padding-left: 70px;
  position: relative;
}
.faq-block .faq-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  color: #fff;
  background-color: var(--bg-theme-color2);
  border-radius: 50%;
  font-size: 14px;
  transition: all 300ms ease;
}
.faq-block .faq-content h4 {
  font-size: 18px;
  line-height: 1.2em;
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-block .faq-content p {
  font-size: 16px;
  line-height: 30px;
  color: var(--theme-color4);
  width: 75%;
}
.faq-block:hover .faq-icon {
  background-color: var(--bg-theme-color1);
}
.accordion-button:not(.collapsed) {
  color: var(--bg-theme-color2);
}
.accordion-button {
  font-size: 18px;
  line-height: 25px;
  color: var(--theme-color1);
  font-weight: 700;
  transition: all 500ms ease;
  border-bottom: 1px solid var(--border-theme-color3);
}
.accordion-body {
  padding: 2rem 1rem;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #7c858c;
  margin-bottom: 0;
}
.accordion-button:not(.collapsed)::after {
  background: url(../assets/icons/minus-solid.svg);
  color: var(--bg-theme-color1);
}
.accordion-button::after {
  background: url(../assets/icons/plus-solid.svg);
  color: var(--bg-theme-color2);
}

/* quote section start  */
.quote {
  background: url(../assets/img/bg/3.jpg);
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.quote-form {
  position: relative;
  padding: 55px 60px 60px;
  background-color: #ffffff;
  overflow: hidden;
  max-width: 820px;
  margin-left: 20px;
}
.quote-form h4 {
  font-size: 20px;
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 30px;
}
.quote-form form label {
  font-size: 12px;
  line-height: 20px;
  color: var(--theme-color4);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.quote-form form select {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  font-size: 14px;
  color: var(--theme-color1);
  line-height: 30px;
  font-weight: 400;
  padding: 14px 20px;
  border: 1px solid #dfe8ee;
  color: #7c858c;
  transition: all 300ms ease;
}
/* .quote-form form select option{
 background: var(--bg-theme-color1);
} */

.quote-content {
  position: relative;
  max-width: 310px;
  padding-left: 60px;
  padding-top: 55px;
  padding-right: 40px;
}
.quote-youtube-btn {
  position: relative;
  padding: 50px 0px;
}
.quote-youtube-btn .wrapper {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 20%;
  transform: translate(-50%, -50%);
}
.quote-youtube-btn i {
  color: var(--bg-theme-color2);
}
.quote .logo-icon {
  display: block;
  margin-bottom: 10px;
}
.quote .logo-icon img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  width: auto;
}
.quote-content p {
  font-size: 14px;
  line-height: 26px;
  text-decoration: underline;
  color: #ffffff;
  opacity: 0.7;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.quote-content h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #ffffff;
}
/* client box  */
.client-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.client-box a {
  position: relative;
}
.client-box img {
  display: inline-block;
  max-width: 100%;
  width: auto;
  height: auto;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.client-box img:hover {
  opacity: 1;
}
/* call-to-action */
.call-to-action-box {
  background: var(--bg-theme-color2);
  position: relative;
}
.call-to-action-box::before {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -15px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  content: "";
}
.call-to-action-box h2 {
  font-size: 36px;
  line-height: 1.2em;
  color: var(--bg-theme-color3);
  font-weight: 700;
}
.call-to-action-box .primary-btn {
  background: var(--bg-theme-color1);
}
.call-to-action-box .primary-btn:before {
  background-color: var(--bg-theme-color3);
}
.call-to-action-box .primary-btn:hover {
  color: var(--bg-theme-color1);
}

/* big footer  */
.big-footer {
  background: linear-gradient(rgba(11, 59, 94, 0.9), rgba(11, 59, 94, 0.9)),
    url(../assets/img/bg/5.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 180px 0 70px;
  margin-top: -60px;
  object-fit: cover;
}
.big-footer img {
  width: auto;
  margin-bottom: 20px;
}
.big-footer p {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #8fa1ae;
  margin-bottom: 20px;
}
.footer-from .primary-btn {
  padding: 10px 20px;
  border: 1px solid var(--bg-theme-color2);
}

.footer-from .primary-btn:hover {
  border: 1px solid var(--bg-theme-color2);
}

.big-footer h5 {
  color: var(--bg-theme-color3);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.big-footer .user-link li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 14px;
}
.big-footer .user-link li a {
  position: relative;
  display: inline-block;
  transition: all 300ms ease;
  color: #8fa1ae;
}
.big-footer .user-link li a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--bg-theme-color2);
  content: "";
  transition: all 300ms ease;
}
.big-footer .user-link li a:hover {
  color: #ffffff;
}
.big-footer .user-link li a:hover::before {
  width: 100%;
}
.big-footer .contact-list {
  position: relative;
}
.big-footer .contact-list li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #8fa1ae;
  font-weight: 400;
  padding-left: 30px;
  margin-bottom: 20px;
}
.big-footer .contact-list li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  width: 20px;
  text-align: center;
  line-height: 25px;
  color: var(--theme-color2);
}
.big-footer .contact-list li strong {
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  font-weight: 700;
}
.big-footer .contact-list li a {
  color: #8fa1ae;
  transition: all 300ms ease;
}
.big-footer .contact-list li a:hover {
  color: var(--bg-theme-color3);
}
.footer-bottom {
  background: #07304d;
  padding: 35px 0px;
}
.footer-bottom .copyright-text p {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: #8fa1ae;
}
.footer-bottom .copyright-text a {
  transition: all 300ms ease;
  color: #8fa1ae;
}
.footer-bottom .copyright-text a:hover {
  color: var(--bg-theme-color3);
}
/* all pages banner  */

.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../assets/img/bg/1.png);
  height: 350px;
  width: 100%;
  margin-top: 60px;
  background-size: cover;
  background-position: top center;
  object-fit: cover;
  position: relative;
}

.banner .banner-info h1 {
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 17px;
}
.breadcrumb-item a {
  color: var(--bg-theme-color2);
}
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--bg-theme-color3);
}

/* -------------services pages -------------- */

.services-bg {
  background: transparent;
}
/* -------------contact pages -------------- */

.contact-details h2 {
  position: relative;
  line-height: 1.2em;
  font-size: 50px;
  font-weight: 700;
}
.contact-touch-list {
  position: relative;
}
.contact-touch-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0px;
}
.contact-touch-list li .icon {
  height: 80px;
  width: 80px;
  background-color: var(--theme-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.contact-touch-list li .icon i {
  color: var(--bg-theme-color3);
  font-size: 25px;
  transition: all 500ms ease;
}
.contact-touch-list li .text {
  margin-left: 30px;
}
.contact-touch-list li h6 {
  color: var(--bg-theme-color1);
  font-weight: bold;
}
.contact-touch-list li a {
  color: #8fa1ae;
  font-size: 18px;
  transition: all 300ms ease;
}
.contact-touch-list li:hover .icon {
  background: var(--bg-theme-color2);
}
 .location iframe{
  width: 100%;
  height: 500px;
 }